Agent skill
agent-evaluator
Deterministic custom subagent selection helper. Use when you need a reproducible, auditable decision on which custom subagents to activate for a user query (runs scripts/agent_evaluator.py).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/devops/agent-evaluator-arisng-github-copilot-fc-3bb1e894
SKILL.md
Agent Evaluator
Evaluate a user query against the workspace's available subagents and return a JSON decision payload (activated/required/suggested agents and scoring).
Mechanism
Run the evaluator script (located in scripts folder relative this skill file) with the user query as an argument.:
python scripts/agent_evaluator.py "YOUR_QUERY_HERE"
Optional: include a contextual file path as the second argument:
python scripts/agent_evaluator.py "YOUR_QUERY_HERE" "path/to/file.ext"
Output
- Writes a JSON object to stdout.
- Key fields include:
activated_agentsrequired_agentssuggested_agentsevaluations(per-agent score + reasoning)
Examples
Evaluate a query:
python scripts/agent_evaluator.py "Please help refine our custom instruction file"
Evaluate a query with file context:
python scripts/agent_evaluator.py "Update this instruction" "instructions/agent-forced-eval.instructions.md"
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?