#tools
15 notes
- Jul 15, 2026
gistpreview.github.io renders any GitHub Gist as a live HTML page. Pass the gist ID as a query param (
?<gist_id>) and it fetches via GitHub API +document.write(). Entire thing is 2 files (index.html + main.js), no build step, trivially self-hostable. Useful for quick HTML/CSS demos without spinning up CodePen or deploying anything. - Jul 15, 2026
SecretSpec declares secrets once in
secretspec.toml(names + descriptions, never values) and resolves them from any of 11 backends: keyring, 1Password, Vault, AWS, GCP, .env. Same command everywhere:secretspec run --profile production -- npm start. Per-secret fallback chains (providers = ["vault", "keyring", "env"]) and aref = { item, field }form points at a secret you already have elsewhere, no renaming. Sharpest bit: agents get held to a stricter bar by default.require_reason = "agents"forcessecretspec run --reason "..."before an AI agent can read a secret, appended to a local audit log; humans running interactively are unaffected. Rust core, SDKs for Python/Go/Node/Ruby/PHP/Haskell. Worth piloting on a project drowning in.envsprawl. - Jul 13, 2026
Recordly does video recording, screenshots, and demo editing in one open-source Electron app. Not in Homebrew core, but easy to ship via a personal tap:
brew install --cask theskumar/tap/recordly. Replacing my previous screenshot/recording workflow with this as the single default (see Default Apps 2025). - Jun 15, 2026
Moshi is the best SSH client I've found for iPhone — connects to your laptop's tmux sessions over Mosh, making it rock-solid on mobile networks with roaming support. Perfect for an agent view on the go; I use it to monitor and interact with running pi/Claude sessions from my iPhone without losing the session on network switches.
- Jun 8, 2026
faberic is a crowd-sourced collection of prompts bundeled with a cli to use them via piped interfaces.
- May 9, 2026
colbymchenry/codegraph: Pre-indexed code knowledge graph for Claude Code — fewer tokens, fewer tool calls, 100% local
- Apr 12, 2026
codespelunker is a CLI code search tool that understands code structure and ranks results by relevance. No indexing required with CLI, TUI, MCP and HTTP support.
- Apr 4, 2026
mise let's you manage dependencies at OS level and project level. Thinking to manage my dev machine. The hard part is documenting what I have installed.
- Mar 21, 2026
mooris a better replacement for less and bat as PAGER. - Feb 20, 2026
brew install git-trimgit-trim - A dedicated binary for safely deleting merged branches. Handles edge cases better than bash one-liners, including squash-merged branches. # - Feb 19, 2026
slingdata-io/sling-cli is a promising tool move/sync data between databases and files, esp. helpful for local testing, ci/cd while able to do stage/sql based transformations.
- Jan 11, 2026
Puzer published a github recommendor that uses semantic embedding from user's github stars all client side, I found some great recommendations which I plan to use:
- pamburus/hl: A fast and powerful log viewer and processor that converts JSON logs or logfmt logs into a clear human-readable format. (⭐2657)
- samwho/spacer: CLI tool to insert spacers when command output stops (⭐1663)
- darrenburns/posting: The modern API client that lives in your terminal. (⭐11134)
- plutov/oq: Terminal OpenAPI Spec viewer (⭐943)
- wey-gu/py-pglite: PGlite wrapper in Python for testing. Test your app with Postgres just as lite as SQLite. (⭐577)
- Jan 7, 2026
Text based diagramming tools:
- yuzutech/kroki: self-hosted solution for unified interface to buch of diagramming tools, including mermaid, d2, etc.! (⭐3875)
- d2 provides a clean syntax and output as well.
- Dec 22, 2025
npx -y npm-check-updatestells you the latest versions of yourpackage.json, ignoring pinned versions. - Dec 20, 2025
New tools:
- gh-actions-lockfile to generate and verify lockfiles for gh-actions
- Proxyman is more user-friendly http debugging proxy than Charles Proxy on MacOS