🛠️ All DevTools
Showing 1141–1160 of 4311 tools
Last Updated
April 24, 2026 at 04:00 PM
Claude Code daily benchmarks for degradation tracking
Hacker News (score: 505)[Other] Claude Code daily benchmarks for degradation tracking
OverseeX
Product Hunt[Monitoring/Observability] Stop Testing AI Agents Manually Ship AI agents confidently. The complete testing and monitoring platform for AI agents. Debug, trace, and optimize your LLM applications with real-time observability, multi-agent coordination intelligence, and automated regression detection.
Hot Dev
Product Hunt[DevOps] Backend Workflows for the AI Age Building modern backend systems often means wrestling with complex orchestration, scattered logging, poor observability, opaque AI integrations, and difficult developer/devops experiences. Hot Dev is designed to solve these problems! Write event-driven workflows, watch them run in real-time, ship to production with one command.
EasyBuild
Product Hunt[API/SDK] Ship backend APIs without running servers EasyBuild is the developer-first execution gateway for the modern web. Execute third-party API calls server-side from your frontend. Type-safe, secure, and ready in minutes. Build secure APIs without managing backend infrastructure.
MoonshotAI/kimi-cli
GitHub Trending[CLI Tool] Kimi Code CLI is your next CLI agent.
Render Mermaid diagrams as SVGs or ASCII art
Hacker News (score: 73)[Other] Render Mermaid diagrams as SVGs or ASCII art
Mermaid ASCII: Render Mermaid diagrams in your terminal
Hacker News (score: 377)[Other] Mermaid ASCII: Render Mermaid diagrams in your terminal <a href="https://github.com/AlexanderGrooff/mermaid-ascii" rel="nofollow">https://github.com/AlexanderGrooff/mermaid-ascii</a>
pg_tracing: Distributed Tracing for PostgreSQL
Hacker News (score: 40)[Other] pg_tracing: Distributed Tracing for PostgreSQL
Show HN: Cursor for Userscripts
Show HN (score: 55)[Other] Show HN: Cursor for Userscripts I’ve been experimenting with embedding an Claude Code/Cursor-style coding agent directly into the browser.<p>At a high level, the agent generates and maintains userscripts and CSS that are re-applied on page load. Rather than just editing DOM via JS in console the agent is treating the page, and the DOM as a file.<p>The models are often trained in RL sandboxes with full access to the filesystem and bash, so they are really good at using it. So to make the agent behave well, I've simulated this environment.<p>The whole state of a page and scripts is implemented as a virtual filesystem hacked on top of browser.local storage. URL is mapped to directories, and the agent starts inside this directory. It has the tools to read/edit files, grep around and a fake bash command that is just used for running scripts and executing JS code.<p>I've tested only with Opus 4.5 so far, and it works pretty reliably. The state of the file system can be synced to the real filesystem, although because Firefox doesn't support Filesystem API, you need to manually import the fs contents first.<p>This agent is <i>really</i> useful for extracting things to CSV, but it's also can be used for fun.<p>Demo: <a href="https://x.com/ichebykin/status/2015686974439608607" rel="nofollow">https://x.com/ichebykin/status/2015686974439608607</a>
Show HN: A MitM proxy to see what your LLM tools are sending
Show HN (score: 210)[Other] Show HN: A MitM proxy to see what your LLM tools are sending I built this out of curiosity about what Claude Code was actually sending to the API. Turns out, watching your tokens tick up in real-time is oddly satisfying.<p>Sherlock sits between your LLM tools and the API, showing you every request with a live dashboard, and auto-saved copies of every prompt as markdown and json.
Mousefood – Build embedded terminal UIs for microcontrollers
Hacker News (score: 55)[Other] Mousefood – Build embedded terminal UIs for microcontrollers
Oban, the job processing framework from Elixir, has come to Python
Hacker News (score: 87)[Other] Oban, the job processing framework from Elixir, has come to Python
Show HN: Config manager for Claude Code (and others) – rules, MCPs, permissions
Show HN (score: 10)[Other] Show HN: Config manager for Claude Code (and others) – rules, MCPs, permissions I use Claude Code across multiple projects with different conventions and some shared repos just as it so happens to be the real world. Managing the config files (.claude/rules/, mcps.json, settings.json) by hand got tedious, so I built a local web UI for it.<p>This one started out as claude-config but migrated to coder-config as I'm adding others (Gemini, AG, Codex, etc).<p>Main features: - Visual editor for rules, permissions, and MCP servers - Project registry to switch between codebases - "Workstreams" to group related repos (frontend + API + shared libs) with shared context - Auto-load workstreams on cd to included folders - Also supports Gemini CLI and Codex CLI<p>Install: npm install -g coder-config coder-config ui # UI at http://localhost:3333 coder-config ui install # optionally, autostart on MacOS<p>It can also be installed as a PWA and live in your taskbar.<p>Open source, runs locally, no account needed. Feedback and contributions welcome!<p>Sorry, haven't had any chance to test on other OSes (linux/windows)
Show HN: Sandbox Agent SDK – unified API for automating coding agents
Show HN (score: 18)[API/SDK] Show HN: Sandbox Agent SDK – unified API for automating coding agents We’ve been working with automating coding agents in sandboxes as of late. It’s bewildering how poorly standardized and difficult to use each agent varies between each other.<p>We open-sourced the Sandbox Agent SDK based on tools we built internally to solve 3 problems:<p>1. Universal agent API: interact with any coding agent using the same API<p>2. Running agents inside the sandbox: Agent Sandbox provides a Rust binary that serves the universal agent API over HTTP, instead of having to futz with undocumented interfaces<p>3. Universal session schema: persisting sessions is always problematic, since we don’t want the source of truth for the conversation to live inside the container in a schema we don’t control<p>Agent Sandbox SDK has:<p>- Any coding agent: Universal API to interact with all agents with full feature coverage<p>- Server or SDK mode: Run as an HTTP server or with the TypeScript SDK<p>- Universal session schema: Universal schema to store agent transcripts<p>- Supports your sandbox provider: Daytona, E2B, Vercel Sandboxes, and more<p>- Lightweight, portable Rust binary: Install anywhere with 1 curl command<p>- OpenAPI spec: Well documented and easy to integrate<p>We will be adding much more in the coming weeks – would love to hear any feedback or questions.
Show HN: I built a small browser engine from scratch in C++
Hacker News (score: 96)[Other] Show HN: I built a small browser engine from scratch in C++ Hi HN! Korean high school senior here, about to start CS in college.<p>I built a browser engine from scratch in C++ to understand how browsers work. First time using C++, 8 weeks of development, lots of debugging—but it works!<p>Features:<p>- HTML parsing with error correction<p>- CSS cascade and inheritance<p>- Block/inline layout engine<p>- Async image loading + caching<p>- Link navigation + history<p>Hardest parts:<p>- String parsing(html, css)<p>- Rendering<p>- Image Caching & Layout Reflowing<p>What I learned (beyond code):<p>- Systematic debugging is crucial<p>- Ship with known bugs rather than chase perfection<p>- The Power of "Why?"<p>~3,000 lines of C++17/Qt6. Would love feedback on code architecture and C++ best practices!<p>GitHub: <a href="https://github.com/beginner-jhj/mini_browser" rel="nofollow">https://github.com/beginner-jhj/mini_browser</a>
Show HN: An extensible pub/sub messaging server for edge applications
Show HN (score: 7)[Other] Show HN: An extensible pub/sub messaging server for edge applications hi there! i’ve been working on a project called Narwhal, and I wanted to share it with the community to get some valuable feedback.<p>what is it? Narwhal is a lightweight Pub/Sub server and protocol designed specifically for edge applications. while there are great tools out there like NATS or MQTT, i wanted to build something that prioritizes customization and extensibility. my goal was to create a system where developers can easily adapt the routing logic or message handling pipeline to fit specific edge use cases, without fighting the server's defaults.<p>why Rust? i chose Rust because i needed a low memory footprint to run efficiently on edge devices (like Raspberry Pis or small gateways), and also because I have a personal vendetta against Garbage Collection pauses. :)<p>current status: it is currently in Alpha. it works for basic pub/sub patterns, but I’d like to start working on persistence support soon (so messages survive restarts or network partitions).<p>i’d love for you to take a look at the code! i’m particularly interested in all kind of feedback regarding any improvements i may have overlooked.
Show HN: PNANA - A TUI Text Editor
Show HN (score: 5)[CLI Tool] Show HN: PNANA - A TUI Text Editor I’d like to share PNANA , a lightweight TUI editor built with C++ and FTXUI that I’ve been building for personal use and now open-sourced. It’s a minimal, fast terminal-based editor focused on simple coding and editing workflows—no bloated features, just the core functionality for terminal-centric use cases.<p><a href="https://github.com/Cyxuan0311/PNANA" rel="nofollow">https://github.com/Cyxuan0311/PNANA</a><p>Key pragmatic features<p>Lightweight C++ core with FTXUI for smooth TUI rendering, fast startup and low resource usage<p>Basic but solid editing capabilities (syntax highlighting, line numbering, basic navigation)<p>Simple build process with minimal dependencies, easy to compile and run on Linux/macOS terminals<p>Early LSP integration support for basic code completion (still polishing, but functional for common languages)<p>It’s very much an early-stage project—I built it to scratch my own itch for a minimal, self-built TUI editor and learn C++/FTXUI along the way. There are definitely rough edges (e.g., some LSP kinks, limited customization), and it’s not meant to replace mature editors like Vim/Nano—just a small open-source project for folks who like minimal terminal tools or want to learn TUI development with C++.<p>Any feedback, bug reports, or tiny suggestions are super welcome. I’m slowly iterating on it and would love to learn from the HN community’s insights. Thanks for taking a look!
[Other] Show HN: SHDL – A minimal hardware description language built from logic gates Hi, everyone!<p>I built SHDL (Simple Hardware Description Language) as an experiment in stripping hardware description down to its absolute fundamentals.<p>In SHDL, there are no arithmetic operators, no implicit bit widths, and no high-level constructs. You build everything explicitly from logic gates and wires, and then compose larger components hierarchically. The goal is not synthesis or performance, but understanding: what digital systems actually look like when abstractions are removed.<p>SHDL is accompanied by PySHDL, a Python interface that lets you load circuits, poke inputs, step the simulation, and observe outputs. Under the hood, SHDL compiles circuits to C for fast execution, but the language itself remains intentionally small and transparent.<p>This is not meant to replace Verilog or VHDL. It’s aimed at: - learning digital logic from first principles - experimenting with HDL and language design - teaching or visualizing how complex hardware emerges from simple gates.<p>I would especially appreciate feedback on: - the language design choices - what feels unnecessarily restrictive vs. educationally valuable - whether this kind of “anti-abstraction” HDL is useful to you.<p>Repo: <a href="https://github.com/rafa-rrayes/SHDL" rel="nofollow">https://github.com/rafa-rrayes/SHDL</a><p>Python package: PySHDL on PyPI<p>To make this concrete, here are a few small working examples written in SHDL:<p>1. Full Adder<p>component FullAdder(A, B, Cin) -> (Sum, Cout) {<p><pre><code> x1: XOR; a1: AND; x2: XOR; a2: AND; o1: OR; connect { A -> x1.A; B -> x1.B; A -> a1.A; B -> a1.B; x1.O -> x2.A; Cin -> x2.B; x1.O -> a2.A; Cin -> a2.B; a1.O -> o1.A; a2.O -> o1.B; x2.O -> Sum; o1.O -> Cout; }</code></pre> }<p>2. 16 bit register<p># clk must be high for two cycles to store a value<p>component Register16(In[16], clk) -> (Out[16]) {<p><pre><code> >i[16]{ a1{i}: AND; a2{i}: AND; not1{i}: NOT; nor1{i}: NOR; nor2{i}: NOR; } connect { >i[16]{ # Capture on clk In[{i}] -> a1{i}.A; In[{i}] -> not1{i}.A; not1{i}.O -> a2{i}.A; clk -> a1{i}.B; clk -> a2{i}.B; a1{i}.O -> nor1{i}.A; a2{i}.O -> nor2{i}.A; nor1{i}.O -> nor2{i}.B; nor2{i}.O -> nor1{i}.B; nor2{i}.O -> Out[{i}]; } }</code></pre> }<p>3. 16-bit Ripple-Carry Adder<p>use fullAdder::{FullAdder};<p>component Adder16(A[16], B[16], Cin) -> (Sum[16], Cout) {<p><pre><code> >i[16]{ fa{i}: FullAdder; } connect { A[1] -> fa1.A; B[1] -> fa1.B; Cin -> fa1.Cin; fa1.Sum -> Sum[1]; >i[2,16]{ A[{i}] -> fa{i}.A; B[{i}] -> fa{i}.B; fa{i-1}.Cout -> fa{i}.Cin; fa{i}.Sum -> Sum[{i}]; } fa16.Cout -> Cout; } }</code></pre>
kubernetes/ingress-nginx
GitHub Trending[DevOps] Ingress NGINX Controller for Kubernetes
Serverless backend hosting without idle costs – open-source
Hacker News (score: 15)[Other] Serverless backend hosting without idle costs – open-source