复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-agents-38fc171da556 ,按照其中的说明把「eval」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Run the PluginEval quality evaluation on a plugin or skill directory.
/eval — evaluate at standard depth (static + LLM judge) /eval --depth quick — static analysis only (instant)
cd "${CLAUDE_PLUGIN_ROOT}"
uv run plugin-eval score {argument} --depth quick --output json
Parse the JSON output to get composite.score, composite.dimensions, and layers[0].anti_patterns.
Dispatch the eval-judge agent with the skill path:
Evaluate the skill at: {resolved_path} Read the SKILL.md file and any references/ files, then score it on all 4 dimensions. Return your scores as JSON.
The judge returns scores for: triggering_accuracy, orchestration_fitness, output_quality, scope_calibration.
If quick depth: Report the Layer 1 results directly from the CLI output.
If standard depth: Blend Layer 1 and Layer 2 scores.
For each dimension, use these blend weights (Static:Judge):
Dimension weights: triggering(0.25), orchestration(0.20), output(0.15), scope(0.12), disclosure(0.10), efficiency(0.06), robustness(0.05), structural(0.03), code_quality(0.02), coherence(0.02)
Final = sum(weight * blended_score) * 100 * anti_pattern_penalty
## Overall Score: {score}/100 {badge}
## Layer Breakdown
| Layer | Score |
|-------|-------|
## Dimension Scores
| Dimension | Weight | Score | Grade |
|-----------|--------|-------|-------|
## Anti-Patterns Detected
## Recommendations
Badge thresholds: Platinum(90+), Gold(80+), Silver(70+), Bronze(60+)