🏃 Keep Up
← All topics
Tooling 27 items

Everything Tooling

📝 Blog 1w ago

Reverse-Engineering Is Cheap Now

Short but sharply-framed observation: coding agents have flipped the ROI calculus for reverse-engineering undocumented home-device APIs. The psychological cost of "throwaway code" collapses when generation and re-generation are nearly free, making previously uneconomic automation projects viable. Compact thesis relevant to anyone thinking about the long tail of AI-enabled software work.

📝 Blog 1w ago

Claude Code Uses Bun Written in Rust Now

Willison investigates claims from Jarred Sumner's "Rewriting Bun in Rust" post and confirms via `strings` inspection that Claude Code v2.1.181+ ships Bun v1.4.0 (unreleased on GitHub at time of writing), with 563 Rust source filenames embedded. 10% Linux startup improvement — quiet production deployment across millions of devices. Useful concrete artifact for tracking how coding agents are being optimized at the runtime layer.

🐙 GitHub 2w ago

recensa: Self-Hosted Web Viewer for Claude Code Session Transcripts

Recensa is a self-hosted viewer for Claude Code session transcripts: read, search, replay, and audit every session you've ever run. With Claude Code use exploding in production workflows, the absence of native session history tooling has been a recurring complaint. This fills the gap — 60 stars quickly, reflecting real practitioner need for auditability and replay when running long agentic coding sessions.

✍️ Will Larson 2w ago

Generated and suppressed demand

Larson extends his four-stage team model (falling behind → treading water → repaying debt → innovating) with a fifth dynamic: suppressed demand. Teams that recover and start shipping well often get hit by a surge of previously invisible requests, sending them back to "falling behind" even after doing everything right. The post uses a concrete example from his Customer Operations Engineering team and draws an analogy to latent incidents draining in reliability programs. Practically, the implication is that wide-interface teams (developer experience, customer ops) should plan to cycle through the recovery model multiple times, not just once.

🟧 Hacker News 3w ago
⭐ Editor's Pick

Frugon: Find which LLM calls a cheaper model could handle (local, MIT)

Show HN project appearing on the HN front page this week: Frugon is a local, MIT-licensed tool that analyzes LLM call logs and identifies which requests could have been handled by a cheaper or smaller model. Directly addresses the cost-routing problem that practitioners face when running mixed-model production workloads — complements the broader trend of tiered model families (GPT-5.6 Sol/Terra/Luna) by providing observability on where you're over-spending on capability.

🐙 GitHub 3w ago
⭐ Editor's Pick

Pilotfish: multi-model orchestration layer for Claude Code (frontier plans, cheap models execute)

307-star GitHub project implementing a tiered orchestration layer on top of Claude Code: a frontier model (e.g., Claude Opus) handles planning and task decomposition, while cheaper models handle execution steps, with a verification guard that checks quality before accepting outputs. One-prompt install. The pattern directly mirrors what OpenAI is productizing with GPT-5.6 Sol/Terra/Luna tiering, but as an open-source wrapper for practitioners using Claude Code today.

🔶 Anthropic Jul 1

Claude Managed Agents: self-hosted sandboxes, MCP tunnels research preview, and AWS platform parity

The Claude developer platform ships several infrastructure features this period. Self-hosted sandboxes allow operators to run Claude Managed Agents tool-execution in their own infrastructure instead of Anthropic's. MCP tunnels enter research preview for connecting to MCP servers inside private networks. Claude Platform on AWS now includes Managed Agents webhooks, multi-agent orchestration, and self-hosted sandboxes with IAM auth. Large tool outputs exceeding 100K tokens spill to sandbox files automatically; the web search tool gains richer SEC filing data. Cache diagnostics enter public beta via a `diagnostics.previous_message_id` parameter.

🦜 LangChain Jun 24

Why the Frontier Ecosystem must be Open — Matei Zaharia and Reynold Xin, Databricks

Double interview with Databricks cofounders Matei Zaharia and Reynold Xin at the Data + AI Summit 2026. Unpacks Omnigent (open-source meta-harness sitting above Claude Code, Codex, Cursor, and Pi to unify agent sessions, security policies, and spend controls), LTAP (Lake Transactional/Analytical Processing — writing Postgres data in Parquet to the object store, enabling zero-pipeline analytics alongside OLTP), and the Dream Engine (a ground-up database engine trained on quadrillions of query traces). Matei frames agent security as requiring stateful/contextual policies rather than yes/no tool permissions. Databricks is now running 50–60M VMs/day and processing exabytes before breakfast.

🤗 HF Blog Jun 17

Agentic Resource Discovery (ARD): open standard for runtime agent capability search

Hugging Face launched its reference implementation of the Agentic Resource Discovery (ARD) spec — a draft open standard developed with contributors from Microsoft, Google, GoDaddy, and others — which defines how agents find MCP tools, skills, and other agents across federated registries at runtime instead of requiring pre-installation. The HF Discover Tool exposes thousands of Hub Spaces, MCP servers, and Agent Skills through a REST API (`POST /search`) and MCP endpoint, serving results as typed catalog entries (`application/ai-skill`, `application/mcp-server+json`). The spec uses a static `ai-catalog.json` manifest at a well-known URL plus a dynamic search API, and HF CLI ships a `hf discover search` command out-of-the-box.

🐙 GitHub Jun 17

AgentScan: One-command scanner for exposed MCP servers, A2A Agent Cards, and open LLM APIs

AgentScan is a network reconnaissance tool specifically for the AI protocol surface: discovers publicly exposed MCP servers, A2A Agent Cards, and open LLM API endpoints in one command. As MCP and Agent-to-Agent protocols proliferate in production deployments, this is the kind of tool security teams need for attack surface enumeration. Directly relevant to the fake AI agent skill supply chain story (26,000 agents reached) circulating in security news that same week.

🟧 Hacker News Jun 17

HN "Ask: What are you working on?" (June 2026) — practitioners describe Claude Code quota workarounds and agentic SQL canvas

The June 2026 HN "What are you working on?" thread surfaces two practitioner signals worth tracking: (1) a developer building a tool to auto-resume Claude Code sessions when quota resets — "I hate waking up and typing 'please continue'" — indicating rate-limit management as a real pain point at scale; (2) kavla.dev demoing an agent-powered SQL canvas where all agent actions are visible and auditable, with the developer noting the canvas's visibility makes agent auditing "relatively easy," directly addressing the oversight problem the Faros report quantifies.

✍️ Will Larson Jun 15
⭐ Editor's Pick

Revised Rules of Engineering Leadership

Will Larson documents five revised rules for engineering leadership in an AI-tool-augmented hypergrowth context, grounded in a year of concrete experiments at Imprint. Key claims: (1) complex migrations can now be driven by a single engineer in ~10% of the former time; (2) 1st-pass code is cheap but working code still depends on your development harness; (3) the base case of most processes should now be optimized for autonomous agent execution; (4) durable, high-ownership teams matter more than ever because domain context is the scarce resource; (5) fast, binding decision-making is a prerequisite to actually capturing the pace benefit. Includes detailed project examples: 200–400 deploys/week (up from 6), 100% Claude Code/Cursor adoption in two months without mandate, mono-repo migration done by one engineer.

🐙 GitHub Jun 11
⭐ Editor's Pick

omnigent-ai/omnigent — Meta-harness to orchestrate Claude Code, Codex, Cursor, and custom agents without rewrites

Omnigent positions itself as an interoperability layer above individual coding-agent harnesses: swap between Claude Code, Codex, Cursor, or custom agents without rewriting orchestration logic, with policy enforcement and sandboxing built in. At 6,964 stars it's the highest-signal multi-agent framework candidate in the briefing. The value proposition sharpens as teams start mixing models (e.g. GPT-5.6 Sol for planning, Luna for execution) rather than committing to a single provider.

🟧 Hacker News Apr 22

Parallel agents in Zed

Zed editor adds support for running multiple AI agents in parallel within the same workspace, allowing concurrent agentic tasks on different parts of a codebase. No content snippet is available, but the feature extends Zed's existing AI coding capabilities to multi-agent workflows. Relevant for teams evaluating editor-native agent orchestration versus external tooling.

📑 arXiv Apr 22

Automatic Ontology Construction Using LLMs as an External Layer of Memory, Verification, and Planning for Hybrid Intelligent Systems

Proposes a hybrid architecture where LLMs are augmented with an automatically constructed RDF/OWL ontology as an external memory layer, replacing or supplementing vector-based RAG with a structured knowledge graph. The pipeline performs entity recognition, relation extraction, triple generation, and SHACL/OWL validation from heterogeneous sources, enabling persistent and verifiable reasoning. The key distinction from standard RAG is that retrieved context is semantically structured and constraint-validated rather than embedding-similarity ranked.

📑 arXiv Apr 22

Learning to Evolve: A Self-Improving Framework for Multi-Agent Systems via Textual Parameter Graph Optimization

Textual Parameter Graph Optimization (TPGO) models a multi-agent system as a graph of optimizable nodes (agents, tools, workflows) and derives structured natural-language "textual gradients" from execution traces to guide iterative optimization. Critically, the optimizer itself learns from accumulated optimization history, making the framework self-improving rather than static. This addresses the lack of structural awareness and adaptability in flat prompt-tuning approaches to MAS optimization.

💬 Reddit Apr 21

I built a /graphify skill for Claude Code that maps your entire codebase into a knowledge graph, 71x fewer tokens, way less hallucination (32k stars, 250k downloads)

Graphify is a Claude Code skill that builds a queryable knowledge graph of a codebase using tree-sitter ASTs across 25 languages, then writes a GRAPH_REPORT.md for Claude to read instead of raw files — reporting 71.5x token reduction per query. The tool also does semantic extraction over docs, PDFs, images, and audio (via Whisper) and detects cross-file dependency communities. 32k GitHub stars and 250k PyPI downloads suggest real adoption; the token reduction claim warrants independent benchmarking.

🤗 Hugging Face Apr 20

Claude Code Architecture Analysis: Five Values, Thirteen Design Principles (HuggingFace Trending, April 2026)

Two related papers: the first is a large-scale empirical study of 2,303 agent context files from 1,925 GitHub repos, characterizing how these 'READMEs for agents' evolve like configuration code across 16 instruction types. The second analyzes Claude Code's architecture, mapping five human values through thirteen design principles to concrete implementation choices including a core while-loop. Both reflect growing interest in formalizing agentic software engineering practices.

📝 Blog Apr 18
⭐ Editor's Pick

My Workflow for Understanding LLM Architectures

Raschka documents a three-step process for reverse-engineering open-weight model architectures: start with the technical report, cross-reference the HuggingFace config, then validate against the transformers reference implementation. The core argument is that working code is a more reliable source of truth than under-specified papers. Practical guidance for engineers who want to understand architectural nuances firsthand.

🐙 GitHub Apr 16

TheArcForge/UniClaude: Claude Code, natively inside Unity Editor. A dockable chat window with full project awareness, 60+ MCP tools, and zero alt-tabbing.

UniClaude embeds Claude Code directly into the Unity Editor as a dockable chat window, giving it full project awareness and access to 60+ MCP tools without leaving the editor. Targets the context-switching friction that plagues game dev AI workflows. Essentially a Unity-native MCP client wired to Claude.

🟢 OpenAI Apr 16
⭐ Editor's Pick

OpenAI Agents SDK next evolution: native sandbox execution, model-native harness, configurable memory

OpenAI's Agents SDK gained native sandbox execution and a model-native harness (April 16) for secure, long-running file/tool agents, plus configurable memory and sandbox-aware orchestration. Version 0.4 (April 5) added MCP tool-use and streaming agent handoffs, making SDK-built agents first-class MCP consumers alongside Claude and Cursor. The combined updates meaningfully close the gap between the SDK and production-grade agent frameworks.

📝 Blog Apr 4

Components of a Coding Agent

Raschka breaks down the practical anatomy of a coding agent into three components: tool use (file I/O, shell, search), memory (in-context vs. external), and repository-level context management. Written as a grounding companion to his LLM architecture series, it maps abstract agent design concepts onto how systems like Claude Code and Codex actually operate.