Compare commits

...
Author SHA1 Message Date
müde
26298470a5 model: "haiku" shorthand 2026-05-15 14:44:25 +02:00
müde
ae4a3f1b77 drop in-code todo comment (lives in CLAUDE.md) 2026-05-15 14:44:11 +02:00
2 changed files with 9 additions and 4 deletions

View file

@ -0,0 +1,8 @@
{
"permissions": {
"allow": [
"Bash(git add *)",
"Bash(git commit *)"
]
}
}

View file

@ -178,13 +178,10 @@ async fn invoke_claude(prompt: &str, mcp_config: &Path) -> Result<String> {
// plus the hyperhive MCP surface so there's no permission prompt
// mid-turn. A finer-grained allow-list system for Bash command
// patterns is on the backlog (PLAN.md polish).
// Hard-coded to Haiku 4.5 for now to keep cost predictable while we
// iterate. TODO: make this overridable per-agent — op via dashboard,
// manager via `request_apply_commit` setting on the agent's flake.
let out = Command::new("claude")
.arg("--print")
.arg("--model")
.arg("claude-haiku-4-5-20251001")
.arg("haiku")
.arg("--mcp-config")
.arg(mcp_config)
.arg("--tools")