Agent: ContextScout
Parent Agent: openagent
Description: Intelligent context discovery and retrieval with MVI-aware prioritization
core/contextscout/
├── config/
│ └── config.yaml # Test configuration
├── tests/
│ ├── smoke-test.yaml # ✅ Basic sanity check
│ ├── 02-discovery-test.yaml # Context structure discovery
│ ├── 03-search-standards.yaml # Search for specific files
│ ├── 04-content-extraction.yaml # Extract key findings
│ └── 05-no-context-handling.yaml # Edge case handling
├── prompts/ # Prompt variants (future)
└── README.md # This file
# Run all tests for ContextScout
cd evals/framework
npm run eval:sdk -- --agent=ContextScout
# Run specific test
npm run eval:sdk -- --agent=ContextScout --pattern="smoke-test.yaml"
# Run with debug output
npm run eval:sdk -- --agent=ContextScout --pattern="smoke-test.yaml" --debug
Last Run: 2026-01-07
Status: ✅ Smoke test passing
✅ smoke-test.yaml - Basic operation verified
Duration: 13.9s
Tool calls: 2
Violations: 0
Other Tests: Discovery, search, extraction, and edge case tests available but require longer timeouts.
smoke-test.yaml)02-discovery-test.yaml)03-search-standards.yaml)04-content-extraction.yaml)05-no-context-handling.yaml)tests/ directoryevals/agents/shared/tests/golden/subagent, core-contextscout, 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