You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an Agent Client Protocol runtime backed by @agentclientprotocol/sdk, including custom command and registry-based agent resolution. Thread ACP options through CLI, action, schedule, extraction repair, synthesis, fix-quality, and JSON repair paths so runtime=acp keeps model-backed execution on ACP. Document the new config and add coverage for runtime registration, config resolution, structured helper calls, and usage aggregation.
Co-Authored-By: Claude Sonnet <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: packages/docs/src/pages/config.astro
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -223,6 +223,27 @@ model = "claude-opus-4-5"`}
223
223
<p><strong>Model precedence:</strong> trigger > skill > defaults > CLI flag (<code>-m</code>) > env var (<code>WARDEN_MODEL</code>). Most specific wins.</p>
224
224
<p><strong>Synthesis fallback:</strong> <code>defaults.synthesis.model</code> falls back to <code>defaults.auxiliary.model</code> when not set.</p>
225
225
226
+
<h3>Agent Client Protocol runtime</h3>
227
+
228
+
<p>Set <code>defaults.runtime</code> to <code>acp</code> to run hunk analysis through an ACP-compatible agent instead of Claude Code SDK. Use a custom command or a registry agent id.</p>
229
+
230
+
<TerminalshowCopy={true}>
231
+
<Code
232
+
code={`[defaults]
233
+
runtime = "acp"
234
+
235
+
[defaults.agent.acp]
236
+
command = "atlas alta agent run"
237
+
238
+
# Or resolve an agent from the ACP registry:
239
+
# registryId = "amp-acp"`}
240
+
lang="toml"
241
+
theme="vitesse-black"
242
+
/>
243
+
</Terminal>
244
+
245
+
<p>Registry agents are resolved from <code>https://cdn.agentclientprotocol.com/registry/v1/latest/registry.json</code> by default. Analysis, extraction repair, consolidation, and fix-quality helper calls use the selected ACP agent.</p>
246
+
226
247
<h2id="chunking">Chunking</h2>
227
248
228
249
<p>Control how files are split for analysis. By default, Warden analyzes each hunk separately.</p>
0 commit comments