Skip to content
Blog

Thinking about AI infrastructure

Identity, governance, observability, and what it takes to ship autonomous software at scale.

Featured

Tutorial

A fleet of coding agents with budget caps

Run N coding agents in parallel as one governed fleet. Each gets its own checkout, a dollar cap, a turn limit, and a tool allowlist, and you get back one cost table.

Jul 2, 2026 · 39 min

Tutorial

Agents that debug agents

A workflow fails at 2am. Instead of a human paging through logs, an operator agent fetches the failed DAG, diagnoses the root cause, and drafts a fix behind an approval gate while you sleep.

Jul 2, 2026 · 36 min

Tutorial

The deployment that promotes itself

A self-tuning rollout deploys a new agent version at a small traffic weight, then an operator agent polls per-version failure rates and shifts weight itself, promoting on wins and rolling back on regressions.

Jul 2, 2026 · 30 min

Tutorial

Claude Code as a function

Call a multi-turn coding agent like Claude Code from your backend with a dollar budget cap, a turn limit, restricted tools, and typed output.

Jul 2, 2026 · 21 min

Tutorial

Build your own personal assistant

A reasoner with per-chat memory that reaches your other agents, plus a 70-line Telegram bridge you own. Text your personal stack from your phone.

Jul 2, 2026 · 27 min

Tutorial

Human approval gates in 20 lines

Suspend a running agent on a low-confidence decision, notify a reviewer, and resume exactly where it stopped. The wait state lives in the control plane, so it survives restarts.

Jul 2, 2026 · 30 min

Tutorial

Simulate a market with 200 agents

A market simulation where 200 trader reasoners read a shared order book from global memory, decide with a cheap model, and post orders back every round, while an orchestrator fans them out and code clears the price, all watchable live in the dashboard DAG.

Jul 2, 2026 · 33 min

Tutorial

The agent that finds its own tools

A reasoner that calls app.ai(tools="discover") sees every capability registered on the mesh at call time and invokes what it needs, so deploying a new agent tonight makes it callable by tomorrow with zero redeploys.

Jul 2, 2026 · 30 min

Tutorial

How we ran a 250-agent security audit for 90 cents

A full security audit that runs 166 to 255 agent calls and confirms 28 exploitable findings costs between 18 and 90 cents, because each call is small, routed to the right model, and capped.

Jul 2, 2026 · 24 min

Tutorial

Approve your agents from your phone

Notify yourself when an agent pauses, then approve or reject it with one tap from a lock screen. A five-line notify plus a twenty-line signed handler turns any pause into a phone gate.

Jul 2, 2026 · 36 min

Tutorial

An agent that ships new versions of itself

A self-improvement loop where a production agent records its own failures to memory, an improver agent reads them and writes a revised prompt, and that prompt ships as a new version the self-tuning rollout then canaries behind a human gate.

Jul 2, 2026 · 33 min

Tutorial

Pipelines that build themselves

An intake reasoner reads the input, decides which analysis dimensions it actually needs, then the orchestrator spawns exactly those specialists with prompts written at runtime, so the pipeline shape is a trace of what happened rather than a graph declared upfront.

Jul 2, 2026 · 30 min

Tutorial

A nightly maintenance fleet for your repos

One scheduled reasoner that clones your repos at 3am, runs a budget-capped coding agent on each, and leaves a morning summary and a stack of ready PRs behind an approval gate.

Jul 2, 2026 · 39 min

Tutorial

Thinking in reasoners

The capstone mental model for the personal stack. Five habits that turn a pile of prompts into a system, each shown as a small before and after, with the one table you need for deciding between app.ai and app.harness.

Jul 2, 2026 · 24 min

Tutorial

Fan out 1,000 parallel agents from one request

A recursive reasoner that decomposes a question and calls itself in parallel through the control plane, depth-capped, with queueing and tracing handled for you.

Jul 2, 2026 · 18 min

Tutorial

From LangGraph prototype to production

The mechanical path from a LangGraph StateGraph that works in a notebook to reasoners other services can call, retry, and run for 40 minutes.

Jul 2, 2026 · 24 min

Tutorial

One control plane for XGBoost and agents

Wrap a trained XGBoost model as a skill, serve 95% of traffic in milliseconds, and cascade the low-confidence remainder to a reasoner. Same tracing, same DAG, one ops story.

Jul 2, 2026 · 27 min

Tutorial

Your personal control plane

Run AgentField in local mode on your own laptop or homelab, register one agent, and call it over HTTP. This is the substrate the rest of the personal stack builds on.

Jul 2, 2026 · 24 min

Tutorial

Add an agent mesh to your existing FastAPI or Next.js app

Deploy a reasoning agent as a sidecar service and call it over REST from the app you already have. No framework adoption, no rewrite.

Jul 2, 2026 · 27 min

Tutorial

Agents that wake up when data changes

Declare @app.memory.on_change("order_*") and a handler fires whenever a matching key changes, written by any agent, in any scope. No cron, no broker, no consumer groups.

Jul 2, 2026 · 33 min

Tutorial

Agents that run for three days

Fire an agent with one POST, close the connection, and get a signed webhook when it finishes hours or days later, backed by a durable PostgreSQL queue with retries.

Jul 2, 2026 · 30 min

Capabilities You Do Not Own

Twenty years of integration have run on copying data across a boundary. Agentic consumers make that trade worse. Agentic Resource Discovery is the visible half of the response. The runtime layer that has to sit beneath it is the harder half, and data platforms are the most natural place to see it land.

Jun 19, 2026 · 21 min

An Engineer's Guide to Harness Orchestration

Why orchestration changes when the unit decides for itself. The harness is a fundamentally new kind of computational object, defined by agency, embodiment, and persistence in one primitive. Part 1: The Black Box.

Apr 29, 2026 · 21 min

What is harness orchestration?

What changes when the atomic unit of intelligence is no longer an API call, or no longer a single LLM call. From invoking one model to orchestrating teams of autonomous harnesses like Claude Code, Cursor, Codex, Gemini, and the systems built above them.

Apr 23, 2026 · 18 min

Beyond Vibe Coding: How We Ship Production Code with 200 Autonomous Agents

What we learned orchestrating 200+ Claude Code instances on a shared codebase: two LLM primitives, three nested failure loops, and checkpoint-based execution.

Mar 18, 2026 · 42 min

What Breaks When AI Makes a Trillion Decisions

The world makes hundreds of billions of API calls every day. Each call carries a decision. Most of these decisions are hardcoded into configuration files and compiled binaries. But that's starting to change, and the infrastructure isn't ready.

Feb 10, 2026 · 30 min

A Useful Way to Think About Where AI Fits in Software

The speed at which agent-style systems have moved from research to daily use has been remarkable, even as their impact inside real business environments remains uneven. A clearer split begins to appear when you look at where intelligence sits in the architecture.

Jan 27, 2026 · 21 min

The AI Agent Accountability Gap

Why AI backends need tooling we haven't built yet. When a returns agent approved a $12,000 refund it shouldn't have, nothing looked wrong. The logs showed no errors, every validation check passed. The problem was that no one could explain why it made that call.

Jan 9, 2026 · 18 min

The Move from Monolithic AI to Modular Systems

What a documentation chatbot taught us about building AI features that scale. When web applications hit complexity, we extracted microservices. The same evolution is happening with AI.

Dec 11, 2024 · 36 min

IAM for AI Backends

How DIDs and Verifiable Credentials enable trust for AI agents

Dec 5, 2024 · 27 min

The AI Backend

Five years from now, every serious software company will have an AI backend - a reasoning layer that sits alongside their services, making decisions that used to be hardcoded.

Dec 4, 2024 · 15 min

Blog — AgentField