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 查看