Agent: CoderAgent
Parent Agent: opencoder
Description: Executes focused coding subtasks in sequence
code/coder-agent/
├── config/
│ └── config.yaml # Test configuration
├── tests/
│ └── smoke-test.yaml # Basic sanity check
├── prompts/ # Prompt variants (future)
└── README.md # This file
Tests the subagent directly (forces mode: primary):
# Using npm
npm run eval:sdk -- --subagent=code-coder-agent
# Using Makefile
make test-subagent SUBAGENT=code-coder-agent
# Verbose output
npm run eval:sdk -- --subagent=code-coder-agent --verbose
Tests via parent agent (real-world usage):
# Using npm
npm run eval:sdk -- --subagent=code-coder-agent --delegate
# Using Makefile
make test-subagent-delegate SUBAGENT=code-coder-agent
tests/ directoryevals/agents/shared/tests/golden/subagent, code-coder-agent, suite nameThe prompts/ directory is reserved for model-specific prompt variants:
gpt.md - GPT-optimized promptsgemini.md - Gemini-optimized promptsllama.md - Llama-optimized promptsStatus: 🚧 Not yet implemented