Agent: PatternAnalyst
Parent Agent: opencoder
Description: Finds similar implementations across the codebase
code/codebase-pattern-analyst/
├── 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-codebase-pattern-analyst
# Using Makefile
make test-subagent SUBAGENT=code-codebase-pattern-analyst
# Verbose output
npm run eval:sdk -- --subagent=code-codebase-pattern-analyst --verbose
Tests via parent agent (real-world usage):
# Using npm
npm run eval:sdk -- --subagent=code-codebase-pattern-analyst --delegate
# Using Makefile
make test-subagent-delegate SUBAGENT=code-codebase-pattern-analyst
tests/ directoryevals/agents/shared/tests/golden/subagent, code-codebase-pattern-analyst, 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