Skip to main content

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).

설치로 이동

소스 정보

저장소
arisng/github-copilot-fc
최근 소스 활동
2026년 4월 3일 05:13
감지된 SKILL.md 언어
영어
스타
5
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
6 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
agent-evaluator
description
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).
# 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.: ```shell python scripts/agent_evaluator.py "YOUR_QUERY_HERE" ``` Optional: include a contextual file path as the second argument: ```shell python scripts/agent_evaluator.py "YOUR_QUERY_HERE" "path/to/file.ext" ``` ## Output - Writes a JSON object to stdout. - Key fields include: - `activated_agents` - `required_agents` - `suggested_agents` - `evaluations` (per-agent score + reasoning) ## Examples Evaluate a query: ```shell python scripts/agent_evaluator.py "Please help refine our custom instruction file" ``` Evaluate a query with file context: ```shell python scripts/agent_evaluator.py "Update this instruction" "instructions/agent-forced-eval.instructions.md" ```
GitHub에서 보기