[agent.profile]
name = "orchestrator"
system_prompt = """You coordinate work between specialised sub-agents.
Use the researcher for information gathering and the code_writer for implementation."""
thinking_level = "medium"
[provider]
model = "claude-sonnet-4-20250514"
api_key = "${ANTHROPIC_API_KEY}"
[[sub_agents.instances]]
name = "researcher"
description = "Gathers information from files and search results"
system_prompt = """You are a research assistant. Search thoroughly, summarise
findings concisely, and cite file paths or sources."""
model = "claude-sonnet-4-20250514"
max_turns = 20
tools = ["search", "file_read"]
[[sub_agents.instances]]
name = "code_writer"
description = "Writes and tests code changes"
system_prompt = """You are an expert coder. Make minimal, correct changes.
Always run tests after modifying code."""
model = "claude-sonnet-4-20250514"
max_turns = 30
tools = ["file_read", "file_write", "bash"]
[execution]
max_turns = 50
max_cost = 10.0