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.