draft-implementation-plan
Drafts a high-level implementation plan based on the extracted story document
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Drafts a high-level implementation plan based on the extracted story document
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Analyzes the extracted story document, capturing capability, acceptance criteria, edge cases, dependencies and open design questions. Use after extracting a story from a user request, to clarify the stories intended and likley imact. Use before designing the implementation.
Discovers the current application reality BEFORE designing or implementing. Surfaces relevant ADRs, existing code patterns, and target architecture.
Design the implementation of a new user story based on the current application reality, and analysis of the proposed user story.
Design comprehensive test cases for a given set of requirements. Use before starting TDD to plan coverage.
Extract a user story from a given document or text, into a json format
Grades the quality of the extracted story document with additional details based on the User Story Quality Rubric
SOC 직업 분류 기준
| name | draft-implementation-plan |
| description | Drafts a high-level implementation plan based on the extracted story document |
.plan.json. e.g. "create-object-with-validation.plan.json"/schema/plan.schema.json.Outline high-level approach, and the layer each of the steps belong to:
IMPLEMENTATION PLAN:
1. [First major step]
2. [Second major step]
3. [Third major step]
...
Update the "steps" field in the plan json file.
Outline the testing strategy, and the layer each of the test belong to, based on the AC:
TESTING STRATEGY:
├── Unit tests: [Key behaviors to test]
├── Integration tests: [System interactions]
└── E2E tests: [User scenarios]
Update the "testing_strategy" field in the plan json file.
Outline the risks and mitigations, and the layer each of the mitigation would be applied in:
RISKS AND MITIGATIONS:
├── Risk 1: [Description]
│ └── Mitigation: [Approach]
└── Risk 2: [Description]
└── Mitigation: [Approach]
Update the "risks_and_mitigations" field in the plan json file.
.process directory, named {skill-name}.done.json.