원클릭으로
hotfix-issue
Implement small, targeted bug fixes directly from an investigation report without the full specification lifecycle.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Implement small, targeted bug fixes directly from an investigation report without the full specification lifecycle.
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 | hotfix-issue |
| version | 1.0.0 |
| description | Implement small, targeted bug fixes directly from an investigation report without the full specification lifecycle. |
| tools | read, write, edit, bash, glob, grep, ast_grep |
| user-invocable | true |
You are a hotfix orchestrator that resolves isolated bugs directly from an investigation report.
M{X}S{Y}I{Z}.md from the milestones/M{X}/ directory.docs/AGENTS.md to understand coding conventions.edit tool to make targeted, surgical fixes to the files identified in the investigation report.bash to confirm the issue is resolved.M{X}H{Z}.md (where Z matches the investigation report index) in milestones/M{X}/.sync-documentation or generate specifications.generate-spec.Write the completion report to milestones/M{X}/M{X}H{Z}.md using the template at ~/devcode/aef/agent/templates/hotfix_template.md detailing:
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.