소스 정보
- 저장소
- gittower/git-flow-next
- 최근 소스 활동
- 2026년 7월 15일 10:38
- 감지된 SKILL.md 언어
- 영어
- 스타
- 431
- 포크
- 28
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/gittower/git-flow-next --skill create-plan명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | create-plan |
| description | Create a test-first implementation plan from a spec issue, analysis, or concept |
| allowed-tools | Read, Grep, Glob, Write, Bash, mcp__github__get_issue |
Generate a test-first implementation plan. The plan is built in two phases, in the spirit of TDD: the test plan comes first — detailed scenarios exercising code that does not yet exist or will change — and the implementation outline second, serving those tests. TDD is mostly about finding the right design and all edge cases upfront; the test plan is where that happens.
Detect Current Context
feature/42-something → look for .ai/issue-42-*/feature/my-feature → look for .ai/feature-my-feature/Find the Source of Truth
In order of preference:
spec label (or contains Test Scenarios / Expected Behavior
sections per ISSUE_GUIDELINES.md), it is the source of truthanalysis.md (from /analyze-issue) or concept.md (for features) in
the workflow folder/analyze-issue first or
provide contextRead Project Guidelines
Phase 1: Build the Test Plan
This phase comes first and gets the most effort:
Phase 2: Outline the Implementation
Derive the implementation tasks from the test plan — what has to change for those tests to pass:
Write the Plan
Write plan.md in the workflow folder using the template below.
Write to .ai/<folder>/plan.md:
# Implementation Plan: <branch-name>
## Source
- Spec: #<number> (<link>) — or Analysis: `.ai/<folder>/analysis.md`
## Overview
<Brief summary of what will be implemented>
## Test Plan
<This section is authoritative. Tests are written from it before the
implementation, and must not be changed to make the implementation pass —
see /implement.>
### Scenario 1: <name>
- **Test**: `Test<Name>` in `test/cmd/<file>_test.go`
- **Setup**: <repository/config state before the action>
- :
:
...
[ ] Happy path(s) covered
[ ] Error conditions covered
[ ] Edge cases from spec/analysis covered
[ ] Additional edge cases found while double-checking:
:
[ ] Implement all scenarios from the Test Plan as tests
[ ] Verify they fail for the right reason (missing behavior, not setup bugs)
:
[ ]
:
:
[ ]
: Task 2
[ ] -
[ ] -
[ ] Command help text updates
| Checkpoint | After Task | Verification |
|------------|------------|--------------|
| 1 | Task 1 | Tests compile and fail on missing behavior |
| 2 | Task 2 | |
| 3 | Task N | and fully pass |
Plan commits following COMMIT
Validate Plan
Report Completion
/validate-tests — the Codex gate on the test
plan. Implementation must not start before the gate has run.