🛠️ Hacker News Tools
Showing 1941–1960 of 4425 tools from Hacker News
Last Updated
July 28, 2026 at 04:34 AM
Zindex – Diagram Infrastructure for Agents
Hacker News (score: 42)[Other] Zindex – Diagram Infrastructure for Agents
[CLI Tool] Show HN: FMQL – graph query and bulk-edit CLI for Markdown and YAML frontmatter
ChatGPT Images 2.0
Hacker News (score: 1000)[Other] ChatGPT Images 2.0 Livestream: <a href="https://openai.com/live/" rel="nofollow">https://openai.com/live/</a><p>System card: <a href="https://deploymentsafety.openai.com/chatgpt-images-2-0/chatgpt-images-2-0.pdf" rel="nofollow">https://deploymentsafety.openai.com/chatgpt-images-2-0/chatg...</a>
Show HN: Hydra – Never stop coding when your AI CLI hits a rate limit
Show HN (score: 5)[CLI Tool] Show HN: Hydra – Never stop coding when your AI CLI hits a rate limit I built Hydra because I kept losing my flow when Claude Code hit usage limits mid-task. I would copy context, open another tool, and then re-explain everything. This would be super annoying for me.<p>Hydra wraps your AI coding CLIs (Claude Code, Codex, OpenCode, Pi, or any terminal-based tool) in a single command. It monitors terminal output for rate limit patterns, and when one provider runs out, you switch to another with one keypress. Your conversation history, git diff, and recent commits are automatically copied to your clipboard so you can paste and keep going.<p>The fallback chain is configurable. Mine goes Claude Code → OpenCode (free Gemini) → Codex → Pi (free Gemini). The free tiers alone give you ~3000 requests/day, so even after burning through paid limits you can keep working.<p>Key details: Full PTY passthrough you see the exact same TUI as running the CLI directly hydra switch from another terminal signals ALL running sessions (rate limits are account-wide) Context extraction parses Claude Code's JSONL session files for real conversation history, not just recent output Any CLI that runs in a terminal works as a provider Single Go binary, ~200 lines of core logic<p><a href="https://github.com/saadnvd1/hydra" rel="nofollow">https://github.com/saadnvd1/hydra</a><p>Nothing amazing, but wanted to share with others in case it's useful. Feel free to modify it as you see fit.
The Vercel breach: OAuth attack exposes risk in platform environment variables
Hacker News (score: 144)[Other] The Vercel breach: OAuth attack exposes risk in platform environment variables <i>Vercel April 2026 security incident</i> - <a href="https://news.ycombinator.com/item?id=47824463">https://news.ycombinator.com/item?id=47824463</a> - April 2026 (485 comments)<p><i>A Roblox cheat and one AI tool brought down Vercel's platform</i> - <a href="https://news.ycombinator.com/item?id=47844431">https://news.ycombinator.com/item?id=47844431</a> - April 2026 (145 comments)
Show HN: Daemons – we pivoted from building agents to cleaning up after them
Hacker News (score: 39)[Other] Show HN: Daemons – we pivoted from building agents to cleaning up after them For almost two years, we've been developing Charlie, a coding agent that is autonomous, cloud-based, and focused primarily on TypeScript development. During that time, the explosion in growth and development of LLMs and agents has surpassed even our initially very bullish prognosis. When we started Charlie, we were one of the only teams we knew fully relying on agents to build all of our code. We all know how that has gone — the world has caught up, but working with agents hasn't been all kittens and rainbows, especially for fast moving teams.<p>The one thing we've noticed over the last 3 months is that the more you use agents, the more work they create. Dozens of pull requests means older code gets out of date quickly. Documentation drifts. Dependencies become stale. Developers are so focused on pushing out new code that this crucial work falls through the cracks. That's why we pivoted away from agents and invented what we think is the necessary next step for AI powered software development.<p>Today, we're introducing Daemons: a new product category built for teams dealing with operational drag from agent-created output. Named after the familiar background processes from Linux, Daemons are added to your codebase by adding an .md file to your repo, and run in a set-it-and-forget-it way that will make your lives easier and accelerate any project. For teams that use Claude, Codex, Cursor, Cline, or any other agent, we think you'll really enjoy what Daemons bring to the table.
CrabTrap: An LLM-as-a-judge HTTP proxy to secure agents in production
Hacker News (score: 53)[Other] CrabTrap: An LLM-as-a-judge HTTP proxy to secure agents in production <a href="https://www.brex.com/journal/building-crabtrap-open-source" rel="nofollow">https://www.brex.com/journal/building-crabtrap-open-source</a>
Show HN: GoModel – an open-source AI gateway in Go; 44x lighter than LiteLLM
Hacker News (score: 35)[API/SDK] Show HN: GoModel – an open-source AI gateway in Go; 44x lighter than LiteLLM Hi, I’m Jakub, a solo founder based in Warsaw.<p>I’ve been building GoModel since December with a couple of contributors. It's an open-source AI gateway that sits between your app and model providers like OpenAI, Anthropic or others.<p>I built it for my startup to solve a few problems:<p><pre><code> - track AI usage and cost per client or team - switch models without changing app code - debug request flows more easily - reduce AI spendings with exact and semantic caching </code></pre> How is it different?<p><pre><code> - ~17MB docker image - LiteLLM's image is more than 44x bigger ("docker.litellm.ai/berriai/litellm:latest" ~ 746 MB on amd64) - request workflow is visible and easy to inspect - config is environment-variable-first by default </code></pre> I'm posting now partly because of the recent LiteLLM supply-chain attack. Their team handled it impressively well, but some people are looking at alternatives anyway, and GoModel is one.<p>Website: <a href="https://gomodel.enterpilot.io" rel="nofollow">https://gomodel.enterpilot.io</a><p>Any feedback is appreciated.
Show HN: VidStudio, a browser based video editor that doesn't upload your files
Hacker News (score: 258)[Other] Show HN: VidStudio, a browser based video editor that doesn't upload your files Hi HN, I built VidStudio, a privacy focused video editor that runs in the browser. I tried to keep it as frictionless as possible, so there are no accounts and no uploads. Everything is persisted on your machine.<p>Some of the features: multi-track timeline, frame accurate seek, MP4 export, audio, video, image, and text tracks, and a WebGL backed canvas where available. It also works on mobile.<p>Under the hood, WebCodecs handles frame decode for timeline playback and scrubbing, which is what makes seeking responsive since decode runs on the hardware decoder when the browser supports it. FFmpeg compiled to WebAssembly handles final encode, format conversion, and anything WebCodecs does not cover. Rendering goes through Pixi.js on a WebGL canvas, with a software fallback when WebGL is not available. Projects live in IndexedDB and the heavy work runs in Web Workers so the UI stays responsive during exports.<p>Happy to answer technical questions about the tradeoffs involved in keeping the whole pipeline client-side. Any feedback welcome.<p>Link: <a href="https://vidstudio.app/video-editor" rel="nofollow">https://vidstudio.app/video-editor</a>
A type-safe, realtime collaborative Graph Database in a CRDT
Hacker News (score: 25)[Database] A type-safe, realtime collaborative Graph Database in a CRDT
Your hex editor should color-code bytes
Hacker News (score: 151)[Other] Your hex editor should color-code bytes
Show HN: WeTransfer Alternative for Developers
Show HN (score: 24)[Other] Show HN: WeTransfer Alternative for Developers
Anthropic says OpenClaw-style Claude CLI usage is allowed again
Hacker News (score: 443)[Other] Anthropic says OpenClaw-style Claude CLI usage is allowed again
Show HN: Palmier – bridge your AI agents and your phone
Show HN (score: 5)[Other] Show HN: Palmier – bridge your AI agents and your phone Hi HN — I built Palmier.<p>Palmier bridges your AI agents and your phone.<p>It does two things:<p>1. It lets you use your phone to directly control AI agents running on your computer, from anywhere.<p>2. It gives your AI agents access to your phone, wherever you are — including things like push notifications, SMS, calendar, contacts, sending email, creating calendar events, location, and more.<p>A few details:<p>* Supports 15+ agent CLIs<p>* Supports Linux, Windows, and macOS<p>* What runs on your computer and your phone is fully open source<p>* Works out of the box — no need to set up GCP or API keys just to let agents use phone capabilities<p>* Your phone can act as an agent remote: start tasks, check progress, review results, and respond to requests while away from your desk<p>* Your phone can also act as an agent tool: agents can reach into phone capabilities directly when needed<p>* Optional MCP server: if you want, Palmier exposes an MCP endpoint so your agent can access phone capabilities as native MCP tools. This is optional — you can also use Palmier directly from the phone app/PWA, with those capabilities already built in<p>* Still in alpha stage, with bugs. Opinions and bug reports very welcome<p>The basic idea is that AI agents become much more useful if they can both:<p>* interact with the device you actually carry around all day<p>* be controlled when you are away from your computer<p>Palmier is my attempt at that bridge.<p>It already works with agent CLIs like Claude Code, Gemini CLI, Codex CLI, Cursor CLI, OpenClaw, and others. You can run tasks on demand, on a schedule, or in response to events.<p>Would especially love feedback on:<p>* whether this feels genuinely useful<p>* which phone capabilities are most valuable<p>* which agent CLIs I should support next<p>* what feels broken, awkward, or confusing<p>Site: <a href="https://www.palmier.me" rel="nofollow">https://www.palmier.me</a><p>Github:<p>* <a href="https://github.com/caihongxu/palmier" rel="nofollow">https://github.com/caihongxu/palmier</a><p>* <a href="https://github.com/caihongxu/palmier-android" rel="nofollow">https://github.com/caihongxu/palmier-android</a><p>Happy to answer questions.
How to make a fast dynamic language interpreter
Hacker News (score: 148)[Other] How to make a fast dynamic language interpreter
Show HN: MCPfinder – An MCP server that finds and installs other MCP servers
Show HN (score: 5)[Other] Show HN: MCPfinder – An MCP server that finds and installs other MCP servers I’ve been building and using agents heavily lately. The Model Context Protocol ecosystem is growing insanely fast, but discovering and configuring new tools is still highly manual. Every time I needed to connect an agent to a new service, I had to browse registries, figure out the transport type, identify required env vars, and manually update "mcp.json" files.<p>So I built MCPfinder. It aggregates servers from the official MCP registry, Glama, and Smithery (around 25,000 combined entries) into a deduplicated, ranked catalog.<p>But the real twist is the DX: MCPfinder is itself an MCP server :D<p>You only install it once as your "base capability" via standard stdio: npx -y @mcpfinder/server<p>From then on, when you tell your AI, "I need to query my PostgreSQL database," the magic happens autonomously.<p>It's completely free, AGPL-3.0 licensed, and built purely to optimize AI-tool surface discovery.<p>I'd love to hear your thoughts, feedback, or edge cases where JSON generation for specific platforms is acting up.
Show HN: Holos – QEMU/KVM with a compose-style YAML, GPUs and health checks
Hacker News (score: 20)[DevOps] Show HN: Holos – QEMU/KVM with a compose-style YAML, GPUs and health checks I got tired of libvirt XML and Vagrant's Ruby/reload dance for single-host VM stacks, so I built a compose-style runtime directly on QEMU/KVM.<p>What's there: GPU passthrough as a first-class primitive (VFIO, OVMF, per-instance EFI vars), healthchecks that gate depends_on over SSH, socket-multicast L2 between VMs with no root and no bridge config, cloud-init wired through the YAML, Dockerfile support for provisioning.<p>What it's not: Kubernetes. No clustering, no live migration, no control plane. Single host. Prototype, but I'm running it on real hardware. Curious what breaks for people.
Verus is a tool for verifying the correctness of code written in Rust
Hacker News (score: 29)[Other] Verus is a tool for verifying the correctness of code written in Rust
Show HN: Git Push No-Mistakes
Show HN (score: 7)[DevOps] Show HN: Git Push No-Mistakes no-mistakes is how I kill AI slop. It puts a local git proxy in front of my real remote. I push to no-mistakes instead of origin, and it spins up a disposable worktree, runs my coding agent as a validation pipeline, forwards upstream only after every check passes, opens a clean PR automatically, and babysits CI pipeline for me.
Kimi vendor verifier – verify accuracy of inference providers
Hacker News (score: 142)[Other] Kimi vendor verifier – verify accuracy of inference providers