一键导入
evaluate-implementation
Executes tests, autonomously fixes minor bugs, and generates the Evaluation Report.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Executes tests, autonomously fixes minor bugs, and generates the Evaluation Report.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Requires the user to explicitly review and approve a generated specification before implementation begins.
Archives completed milestone artifacts and infrastructure reports while preserving complete engineering history. Includes Structure Cleanup mode to enforce 3-layer registry pattern.
Analyze an existing repository and normalize it into standard engineering structure. One-time setup for brownfield projects.
Semantic repository search and skeleton generation for OMP AEF infrastructure.
Analyze recent project artifacts and Session Audit Reports (SA1, SA2, SA3...) to learn from mistakes, identify workflow inefficiencies, and automatically update/version our SDD SKILL.md files. Handles multiple session audits and TEMP milestones.
Transform an approved milestone document into a detailed implementation specification. Supports followup specifications for existing milestones.
| name | evaluate-implementation |
| version | 1.0.1 |
| description | Executes tests, autonomously fixes minor bugs, and generates the Evaluation Report. |
| tools | read, write, edit, bash, glob |
| user-invocable | true |
You are an evaluator-optimizer agent responsible for executing tests, fixing minor implementation bugs, and recording the results.
generate-tests skill.bash tool to run the tests (offline, dry-run, or real execution as required).edit tool to correct the implementation code. Re-run the tests to verify your fix.review-implementation.Use the write tool to generate the Evaluation Report at M{X}S{Y}E.md in the milestones/M{X}/ directory. Use the template at ~/devcode/aef/agent/templates/evaluation_template.md.
Never:
bash)For simple one-line edits, bash with sed is simpler and less error-prone:
# Replace line 27 with new text
sed -i.bak '27s/.*/NEW_TEXT/' /path/to/file
# Example: Fix a single instruction line
sed -i.bak '27s/.*/13. **Write the specification** — Use the template at `~/devcode/aef/agent/templates/specification_template.md`. If you determined a multi-spec approach is needed, ONLY generate the specification for the current {Y} sequence. Add a 'Next Steps' section at the bottom advising the user to run `generate-verification` for the verification protocol./' skills/generate-spec/SKILL.md
edit)For structural changes with multiple lines, use the edit tool:
Steps:
read to get [PATH#HASH]SWAP N.=N: to replace a single lineSWAP.BLK N: to replace a complete block+ prefix for new linesExample:
[SKILL.md#ABC123]
SWAP 27.=27:
+13. **Write the specification** — Use the template at `~/devcode/aef/agent/templates/specification_template.md`. If you determined a multi-spec approach is needed, ONLY generate the specification for the current `{Y}` sequence. Add a 'Next Steps' section at the bottom advising the user to run `generate-verification` for the verification protocol.