@simplysm/sd-claude 13.0.88 → 13.0.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -154,6 +154,6 @@ argument-hint: "<spec/audit 파일 경로 [R번호]> 또는 <간단한 요구사
|
|
|
154
154
|
- 사용자에게 직접 문서를 확인할 것을 권장
|
|
155
155
|
- 다음 단계 안내:
|
|
156
156
|
```
|
|
157
|
-
/sd-plan-dev
|
|
158
|
-
/sd-plan-dev --worktree # 별도 worktree에서 격리 실행
|
|
157
|
+
/sd-plan-dev {plan경로}
|
|
158
|
+
/sd-plan-dev {plan경로} --worktree # 별도 worktree에서 격리 실행
|
|
159
159
|
```
|
|
@@ -61,7 +61,7 @@ plan에서 작업 목록을 파악하고 스케줄링을 결정한다.
|
|
|
61
61
|
|
|
62
62
|
## 3. TDD 사이클 실행
|
|
63
63
|
|
|
64
|
-
|
|
64
|
+
2단계에서 결정한 스케줄링에 따라 **모든 작업**에 대해 아래 TDD 사이클을 수행한다.
|
|
65
65
|
|
|
66
66
|
### RED Phase: 실패하는 테스트 작성 및 실행
|
|
67
67
|
|
|
@@ -101,6 +101,10 @@ TDD 사이클(RED → GREEN → Refactor) 완료 후 1회 commit한다.
|
|
|
101
101
|
- 작업 하나 = commit 하나
|
|
102
102
|
- `--worktree` 사용 여부와 관계없이 동일하게 적용한다
|
|
103
103
|
|
|
104
|
+
### 다음 작업 전이
|
|
105
|
+
|
|
106
|
+
Commit 완료 후, 스케줄링에 따라 남은 작업이 있으면 해당 작업의 TDD 사이클(RED → GREEN → Refactor → Commit)을 반복한다. 모든 작업이 완료되면 5단계로 진행한다.
|
|
107
|
+
|
|
104
108
|
## 4. worktree merge (`--worktree` 활성 시)
|
|
105
109
|
|
|
106
110
|
worktree subagent 완료 후 반환된 branch를 순차적으로 merge한다.
|
|
@@ -203,5 +203,9 @@ argument-hint: "<topic> 또는 <spec 경로 R번호> 또는 <R번호>"
|
|
|
203
203
|
문서 작성이 완료되면 다음을 출력한다:
|
|
204
204
|
- 완성된 문서의 파일 경로
|
|
205
205
|
- 사용자에게 직접 문서를 확인할 것을 권장
|
|
206
|
-
-
|
|
207
|
-
|
|
206
|
+
- 다음 단계 안내:
|
|
207
|
+
```
|
|
208
|
+
/sd-plan {spec경로} # 구현계획 수립
|
|
209
|
+
/sd-plan {spec경로} R1 # 특정 R항목만 구현계획 수립
|
|
210
|
+
/sd-spec {spec경로} R1 # 특정 R항목을 상세 spec으로 분리
|
|
211
|
+
```
|