Artificer Digital The Artificer's Grimoire
· Updated

Artificer's Grimoire — Edition 2 · March 10, 2026

ai-governance context-engineering coding-agents agent-security harness-engineering

Artificer’s Grimoire — Edition 2 · March 10, 2026

See Since publication: Amazon publicly disputed the reported sign-off mandate two days after this edition published.

Agent governance stopped being theoretical this week. Amazon mandated senior engineer sign-off on AI-assisted changes after production outages, a prompt injection attack exposed Cline’s release pipeline through its own AI issue triage, and every major vendor shipped automated code review in near-simultaneous convergence. Meanwhile, Cursor’s cloud-agents pivot rewrites the competitive map for autonomous coding.


Must Read

Amazon Mandates Human Sign-off on AI-Assisted Code After Outages

Source: Ars Technica / Financial Times · 2026-03-10 Tags: agent-governance, human-in-the-loop, production, enterprise

Amazon held a mandatory engineering meeting following AI-related production outages and now requires senior engineers to approve all AI-assisted code changes before deployment. 457 HN points, 400+ comments — this hit a nerve.

Why it matters: This is the strongest production signal yet that human-in-the-loop is operationally critical at scale, not a nice-to-have. For anyone building agent infrastructure, the governance layer is the product, not overhead. Checkpoint and approval patterns are validated here. The open question is how to make human oversight fast enough that developers don’t route around it.


Clinejection: Prompt Injection Exposes a Production Release Pipeline

Source: Simon Willison · 2026-03-06 Tags: agent-security, prompt-injection, supply-chain, governance

Security researcher Adnan Khan demonstrated a prompt injection attack against a mirror of Cline’s GitHub repository via AI-powered issue triage (original writeup). A malicious issue title tricked Claude (running via claude-code-action with broad tool permissions) into executing arbitrary npm install commands — a path to compromising production releases through preinstall scripts. The path was not hypothetical: after Cline failed to act on the disclosure promptly, a different actor used the technique against Cline itself and published an unauthorized cline@2.3.0 release (since retracted) that added an OpenClaw install.

Why it matters: This is the canonical example of why agent permission models matter. Cline gave an AI agent Bash, Read, and Write access on untrusted input (issue titles from any user). The attack exploited exactly the kind of unreviewed autonomy that Amazon is now locking down. If you’re running agents in CI/CD pipelines, audit your permission boundaries today. Agents that process external input must never have write access to production artifacts.


Cursor’s Third Era: Cloud Agents and a $29.3B Valuation

Source: Latent Space · 2026-03-06 Tags: competitor, coding-agents, cloud-agents, acquisitions

Cursor ($29.3B valuation and $1B+ ARR, per November’s round coverage) acquired Graphite and Autotab, announcing that Cloud Agents has overtaken the VSCode fork as its primary use case. Also launched Automations — agents triggered by codebase changes, Slack messages, or timers.

Why it matters: The competitive map shifted. Cursor isn’t an IDE anymore; it’s an agent platform. The Automations feature (event-triggered background agents) is the pattern anyone building in the agent orchestration space should be watching most closely — it’s the difference between “developer uses agent” and “agent runs continuously as infrastructure.” Cloud-first agent execution also eliminates the local compute bottleneck that throttles parallel agent workloads.


Convergent Evolution: Everyone Ships Automated Code Review

Source: Anthropic / Google · 2026-03-10 Tags: code-review, agent-governance, Claude-Code, Gemini-CLI

Anthropic launched Claude Code Review (parallel agents per PR, $15-25/review, Teams/Enterprise preview). Weeks earlier, Google shipped Conductor’s Automated Reviews for Gemini CLI — checking implementations against plans, enforcing style guides, flagging security risks. GitHub is already at 60 million Copilot code reviews.

Why it matters: Three vendors independently converging on the same feature — Anthropic and Google launching within a month of each other, GitHub already at scale — is the market revealing what’s needed. Automated review is the governance layer that makes agent-generated code shippable. In agent infrastructure, the value sits in verifying code, not generating it. If you’re building agent tooling, review-as-a-service deserves first-class treatment, not an afterthought.


Context Engineering Becomes a Discipline

Source: arXiv: Vishnyakova / arXiv: Bui (OPENDEV) · 2026-03-10 / 2026-03-05 Tags: context-engineering, architecture, terminal-agents, multi-agent

Two papers crystallize context engineering as an engineering discipline. Vishnyakova proposes five quality criteria (relevance, sufficiency, isolation, economy, provenance) and frames context as the agent’s operating system. Bui presents OPENDEV, a CLI coding agent with dual-agent architecture, lazy tool discovery, and adaptive context compaction — with concrete performance data.

Why it matters: “Context is the new code” has been a slogan. These papers make it operational. The five-criteria framework gives us a vocabulary for evaluating context quality in production. OPENDEV’s adaptive compaction and cross-session memory patterns are directly relevant to anyone architecting multi-step agent pipelines. The dual-agent split (planner vs executor) keeps showing up as the winning pattern.


Worth Scanning


New Tools & Repos

  • mcp2cli — Python · CLI wrapper for MCP servers with on-demand tool discovery and 96-99% tool-schema token savings
  • autoresearch — Python · 630 lines — Karpathy’s minimalist autonomous ML experiment runner. Shopify CEO got 19% model improvement.
  • 1Code — TypeScript · GUI orchestration for multiple Claude Code / Codex instances with git worktree isolation
  • DeerFlow 2.0 — Python · 25K stars — ByteDance’s MIT-licensed agent runtime with sub-agents, sandbox, memory, and context compaction
  • OPENDEV — Python — Open-source CLI coding agent with dual-agent architecture, lazy tool discovery, and adaptive context compaction (see Papers)

Papers


Ecosystem Watch

  • Cursor — $29.3B valuation and $1B+ ARR, per November’s round coverage. Cloud Agents is now the primary product, not the VSCode fork. Acquired Graphite (PR tooling) and Autotab (browser automation). Launched Automations for event-triggered agents.
  • OpenAI GPT-5.4 — New API models (gpt-5.4, gpt-5.4-pro). 1M token context. Beats GPT-5.3-Codex on SWE-Bench Pro but trails it on Terminal-Bench 2.0. Focus on knowledge work (spreadsheets: 87.3% vs 68.4% for GPT-5.2). Codex for Open Source matches Anthropic’s free tier for OSS maintainers.
  • Apple Xcode 26.3 — Agentic coding support with Claude Agent and OpenAI Codex. Apple entering the agent IDE space validates the paradigm across all major platforms.
  • Anthropic — $19B ARR. Claude Code Review in research preview. Claude Sonnet 4.6’s 1M token context window still in beta.
  • Google — Conductor Automated Reviews for Gemini CLI. Developer Knowledge MCP Server. ADK integrations ecosystem expanding. Gemini CLI hooks (v0.26.0+) mirror Claude Code’s hooks pattern.
  • LangGraph 1.1.0 — Type-safe streaming (v2 format), subgraph replay fixes. Incremental but meaningful for production orchestration.

The Long View

The Week Agent Governance Became Infrastructure

Three things happened this week that, taken together, mark a phase transition. Amazon mandated human approval for AI-assisted code after real production outages. A security researcher demonstrated a prompt injection attack against a major open-source project’s release pipeline — a chain a separate attacker then actually exploited to publish a rogue release. And three competing vendors — Anthropic, Google, and GitHub — converged on automated code review: Anthropic launched this week, Google shipped weeks earlier, and GitHub marked 60 million Copilot reviews.

The pattern is clear: the industry has moved past “can agents write code?” and arrived at “how do we safely ship agent-written code?” This is a maturity signal. The generating phase is commoditized. The verification, governance, and human-in-the-loop phase is where value accrues.

For practitioners building agent infrastructure, the implications are concrete. The Cline attack shows what happens when an agent processes untrusted input with broad tool access: permission models are mandatory. Amazon’s outages show what happens without human checkpoints. And automated review is table stakes for any agent system that touches production.

The “harness engineering” terminology gaining traction (LangChain’s piece, Latent Space’s debate) captures this perfectly. The model is the easy part. The harness — the governance, the verification, the context management, the permission boundaries — is the actual product. Build your agents accordingly.


Since publication

  • 2026-08-18 — On March 12, 2026 — two days after this edition published — Amazon publicly disputed the Financial Times reporting this edition’s lead story summarizes, calling the claimed new AI-approval requirements “false” and stating that only one of the incidents involved AI-assisted tooling and none involved AI-written code. The lead story reflects the FT and Ars Technica reporting available on the March 10 dateline; the dispute over what Amazon actually mandated remains unresolved in public reporting.

The Artificer’s Grimoire — weekly intelligence on harness engineering for agentic systems — a practitioner’s field guide, by Tim Schiller (Artificer Digital).