一键导入
evaluate-tool
Evaluate an AI tool, skill, or plugin against the catalog and dev loop quality signals before adopting it
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Evaluate an AI tool, skill, or plugin against the catalog and dev loop quality signals before adopting it
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Find tools that probably belong in CATALOG.md but aren't there, via referenced-but-not-catalogued detection + a foundational-tools checklist. Use to audit the catalog for missing heavyweight tools. Triggers - "find catalog gaps", "what's missing from the catalog", "audit catalog completeness".
Add a tool to CATALOG.md + COMPARISON.md and propagate all counts, then sync and audit. Use when adding a single catalogued tool by its GitHub slug. Triggers - "add X to the catalog", "catalog this repo", "/add-catalog-entry owner/repo".
Bootstrap the recommended AI workflow in any repo — checks what's installed, creates CLAUDE.md with quality rules, and identifies gaps
Bootstrap the recommended AI workflow in any repo — checks what's installed, creates CLAUDE.md with quality rules, and identifies gaps
Audit your current AI tool setup against the recommended dev loop workflow and identify gaps
Audit your current AI tool setup against the recommended dev loop workflow and identify gaps
| name | evaluate-tool |
| description | Evaluate an AI tool, skill, or plugin against the catalog and dev loop quality signals before adopting it |
Evaluate a new AI tool before adding it to your workflow. Prevents tool sprawl by checking for overlap and assessing fit against the five quality signals.
/evaluate-tool <repo-url-or-name>
Fetch the repo description and README:
gh api repos/{owner}/{repo} --jq '.description'
gh api repos/{owner}/{repo}/readme --jq '.content' | base64 -d | head -100
Determine:
Read the catalog at ${CLAUDE_PLUGIN_ROOT}/docs/CATALOG.md and find entries in the same category. For each overlapping tool:
Read ${CLAUDE_PLUGIN_ROOT}/docs/WORKFLOW.md. Determine:
Check: does the user's current setup already have strong coverage for this stage and signal? Adding a third code review tool when Review is already well-covered is lower value than filling a gap in Verify or Integrate.
Output a structured evaluation:
## Tool Evaluation: {name}
**What it does:** {one-liner}
**Problem it solves:** {pain point}
**Type:** {type}
**Category:** {category}
**Dev loop stage:** {stage}
**Quality signals:** {signals}
### Overlap Analysis
{list overlapping tools from catalog, with comparison}
### Recommendation
- **ADOPT** — fills a gap in the current workflow
- **REPLACE {x}** — better than current tool for this problem
- **SKIP** — overlaps with {x} which is already in the workflow
- **DEFER** — relevant but current setup has higher-priority gaps elsewhere
### Catalog Entry (if adopting)
{pre-filled table row for CATALOG.md}
If the recommendation is ADOPT or REPLACE, offer to add the entry to ${CLAUDE_PLUGIN_ROOT}/docs/CATALOG.md and update ${CLAUDE_PLUGIN_ROOT}/docs/WORKFLOW.md.