Agent: BuildAgent
Parent Agent: opencoder
Description: Type checking and build validation specialist
code/build-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-build-agent
# Using Makefile
make test-subagent SUBAGENT=code-build-agent
# Verbose output
npm run eval:sdk -- --subagent=code-build-agent --verbose
Tests via parent agent (real-world usage):
# Using npm
npm run eval:sdk -- --subagent=code-build-agent --delegate
# Using Makefile
make test-subagent-delegate SUBAGENT=code-build-agent
tests/ directoryevals/agents/shared/tests/golden/subagent, code-build-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