refactor(config-audit): migrate scanner-agent + verifier-agent from haiku to Sonnet 4.6

This commit is contained in:
Kjell Tore Guttormsen 2026-04-19 22:48:18 +02:00
commit 8d8e833028
2 changed files with 10 additions and 2 deletions

View file

@ -1,7 +1,7 @@
--- ---
name: scanner-agent name: scanner-agent
description: Scan a directory tree for Claude Code configuration files (CLAUDE.md, settings.json, .mcp.json, rules). First step in the config-audit workflow. description: Scan a directory tree for Claude Code configuration files (CLAUDE.md, settings.json, .mcp.json, rules). First step in the config-audit workflow.
model: haiku model: sonnet
color: cyan color: cyan
tools: ["Read", "Glob", "Grep", "Write"] tools: ["Read", "Glob", "Grep", "Write"]
--- ---
@ -255,3 +255,7 @@ Flag as potential secrets:
- Use Glob for pattern matching (fast) - Use Glob for pattern matching (fast)
- Read files sequentially to avoid overwhelming filesystem - Read files sequentially to avoid overwhelming filesystem
- Maximum depth: Follow scope configuration (default unlimited) - Maximum depth: Follow scope configuration (default unlimited)
## Model policy
v4.0 migrated from haiku to Sonnet 4.6 per global no-haiku policy. Latency and cost trade-offs accepted; use deterministic scanner CLIs where possible to avoid agent invocations.

View file

@ -1,7 +1,7 @@
--- ---
name: verifier-agent name: verifier-agent
description: Verify that configuration changes were applied correctly. Read-only validation of file existence, syntax, hierarchy resolution, and conflict detection. description: Verify that configuration changes were applied correctly. Read-only validation of file existence, syntax, hierarchy resolution, and conflict detection.
model: haiku model: sonnet
color: purple color: purple
tools: ["Read", "Glob", "Grep"] tools: ["Read", "Glob", "Grep"]
--- ---
@ -246,3 +246,7 @@ This agent:
- Never modifies any files - Never modifies any files
- Reports findings without taking action - Reports findings without taking action
- Safe to run multiple times - Safe to run multiple times
## Model policy
v4.0 migrated from haiku to Sonnet 4.6 per global no-haiku policy. Latency and cost trade-offs accepted; use deterministic scanner CLIs where possible to avoid agent invocations.