|
|
3 months ago | |
|---|---|---|
| .. | ||
| config | 3 months ago | |
| prompts | 3 months ago | |
| tests | 3 months ago | |
| README.md | 3 months ago | |
Agent: subagents/utils/image-specialist
Parent Agent: openagent
Description: Image editing and analysis using Gemini AI tools
utils/image-specialist/
├── 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=utils-image-specialist
# Using Makefile
make test-subagent SUBAGENT=utils-image-specialist
# Verbose output
npm run eval:sdk -- --subagent=utils-image-specialist --verbose
Tests via parent agent (real-world usage):
# Using npm
npm run eval:sdk -- --subagent=utils-image-specialist --delegate
# Using Makefile
make test-subagent-delegate SUBAGENT=utils-image-specialist
tests/ directoryevals/agents/shared/tests/golden/subagent, utils-image-specialist, 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