lee-spec-kit 0.6.22 → 0.6.24
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.
- package/README.en.md +9 -1
- package/README.md +9 -1
- package/dist/index.js +519 -103
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/en/common/agents/skills/create-pr.md +4 -3
- package/templates/en/common/features/README.md +2 -1
- package/templates/en/common/features/feature-base/tasks.md +5 -2
- package/templates/ko/common/agents/skills/create-pr.md +4 -3
- package/templates/ko/common/features/README.md +2 -1
- package/templates/ko/common/features/feature-base/tasks.md +5 -2
package/package.json
CHANGED
|
@@ -22,9 +22,10 @@ Always run this checklist in Pre-PR review. Treat it as the minimum baseline, th
|
|
|
22
22
|
2. Inspect regression, exception handling, critical/security risks, side effects, user flow impact, and release readiness.
|
|
23
23
|
3. Check maintainability: split oversized functions/files when needed, reuse/integrate existing code where appropriate, and remove obsolete code.
|
|
24
24
|
4. Run related test/verification commands (or explicitly record why they were not run).
|
|
25
|
-
5.
|
|
26
|
-
6.
|
|
27
|
-
7.
|
|
25
|
+
5. Run `npx lee-spec-kit pre-pr-review <feature-ref>` to generate review evidence and sync `Pre-PR Findings/Evidence/Decision`.
|
|
26
|
+
6. `Pre-PR Evidence` should point to a real existing path. (default: `workflow.prePrReview.evidenceMode=path_required`)
|
|
27
|
+
7. `Pre-PR Decision` must use `decision: approve|changes_requested|blocked ...` (or `결정: ...`).
|
|
28
|
+
8. Ensure the final decision is `approve` before moving to PR creation.
|
|
28
29
|
|
|
29
30
|
---
|
|
30
31
|
|
|
@@ -69,8 +69,9 @@ npx lee-spec-kit status --write
|
|
|
69
69
|
| PR doc status | `Status` in `pr.md` | `Draft` \| `Ready` |
|
|
70
70
|
| PR review status | `PR Status` in `tasks.md` | `Review` \| `Approved` |
|
|
71
71
|
| Pre-PR review status | `Pre-PR Review` in `tasks.md` | `Pending` \| `Done` |
|
|
72
|
+
| Pre-PR review findings | `Pre-PR Findings` in `tasks.md` | `major=<n>, minor=<n>` |
|
|
72
73
|
| Pre-PR review evidence | `Pre-PR Evidence` in `tasks.md` | evidence link/log/doc path |
|
|
73
|
-
| Pre-PR review decision | `Pre-PR Decision` in `tasks.md` | `decision:
|
|
74
|
+
| Pre-PR review decision | `Pre-PR Decision` in `tasks.md` | `decision: approve\|changes_requested\|blocked ...` |
|
|
74
75
|
| PR review evidence | `PR Review Evidence` in `tasks.md` | evidence link/log/doc path |
|
|
75
76
|
| PR review decision | `PR Review Decision` in `tasks.md` | `decision: ...` (or `결정: ...`) |
|
|
76
77
|
|
|
@@ -24,10 +24,13 @@
|
|
|
24
24
|
- **Pre-PR Review**: -
|
|
25
25
|
- Values: Pending | Done
|
|
26
26
|
- Mark `Done` after pre-PR review is completed
|
|
27
|
+
- **Pre-PR Findings**: -
|
|
28
|
+
- Format: `major=<n>, minor=<n>`
|
|
27
29
|
- **Pre-PR Evidence**: -
|
|
28
|
-
- Example: review
|
|
30
|
+
- Example: review report doc path (must exist)
|
|
29
31
|
- **Pre-PR Decision**: -
|
|
30
|
-
-
|
|
32
|
+
- Format: `decision: approve|changes_requested|blocked ...` (or `결정: ...`)
|
|
33
|
+
- PR creation requires final decision `approve`
|
|
31
34
|
- Follow `agents/skills/create-pr.md` (`Pre-PR Baseline Checklist`) as the default baseline
|
|
32
35
|
- **PR Review Evidence**: -
|
|
33
36
|
- Example: resolved/aligned comment link, verification log, or docs path
|
|
@@ -22,9 +22,10 @@ Pre-PR 리뷰에서 항상 수행하는 최소 기준입니다. 가능한 경우
|
|
|
22
22
|
2. 회귀/예외 처리, 크리티컬·보안 리스크, 사이드 이펙트, 사용자 흐름 영향, 배포 준비도를 점검합니다.
|
|
23
23
|
3. 유지보수성을 점검합니다: 큰 함수/파일은 필요 시 분리하고, 기존 코드 재사용·통합 가능성을 확인하며, 불필요해진 코드를 정리합니다.
|
|
24
24
|
4. 관련 테스트/검증 명령을 실행합니다. 실행하지 못했다면 사유를 명시합니다.
|
|
25
|
-
5. `
|
|
26
|
-
6. `PR 전 리뷰
|
|
27
|
-
7.
|
|
25
|
+
5. `npx lee-spec-kit pre-pr-review <feature-ref>`를 실행해 리뷰 리포트를 생성하고 `PR 전 리뷰 Findings/Evidence/Decision`을 동기화합니다.
|
|
26
|
+
6. `PR 전 리뷰 Evidence`는 실제 존재하는 문서 경로를 사용합니다. (`workflow.prePrReview.evidenceMode=path_required` 기본)
|
|
27
|
+
7. `PR 전 리뷰 Decision`은 `결정: approve|changes_requested|blocked ...` (또는 `decision: ...`) 형식을 사용합니다.
|
|
28
|
+
8. PR 생성 단계로 이동하기 전 최종 Decision이 `approve`인지 확인합니다.
|
|
28
29
|
|
|
29
30
|
---
|
|
30
31
|
|
|
@@ -69,8 +69,9 @@ npx lee-spec-kit status --write
|
|
|
69
69
|
| PR 문서 상태 | `pr.md`의 `상태` | `Draft` \| `Ready` |
|
|
70
70
|
| PR 리뷰 상태 | `tasks.md`의 `PR 상태` | `Review` \| `Approved` |
|
|
71
71
|
| Pre-PR 리뷰 상태 | `tasks.md`의 `PR 전 리뷰` | `Pending` \| `Done` |
|
|
72
|
+
| Pre-PR 리뷰 Findings | `tasks.md`의 `PR 전 리뷰 Findings` | `major=<n>, minor=<n>` |
|
|
72
73
|
| Pre-PR 리뷰 Evidence | `tasks.md`의 `PR 전 리뷰 Evidence` | 근거 링크/로그/문서 경로 |
|
|
73
|
-
| Pre-PR 리뷰 Decision | `tasks.md`의 `PR 전 리뷰 Decision` | `결정:
|
|
74
|
+
| Pre-PR 리뷰 Decision | `tasks.md`의 `PR 전 리뷰 Decision` | `결정: approve|changes_requested|blocked ...` |
|
|
74
75
|
| PR 리뷰 Evidence | `tasks.md`의 `PR 리뷰 Evidence` | 근거 링크/로그/문서 경로 |
|
|
75
76
|
| PR 리뷰 Decision | `tasks.md`의 `PR 리뷰 Decision` | `결정: ...` (또는 `decision: ...`) |
|
|
76
77
|
|
|
@@ -24,10 +24,13 @@
|
|
|
24
24
|
- **PR 전 리뷰**: -
|
|
25
25
|
- 값: Pending | Done
|
|
26
26
|
- 사전 코드리뷰 완료 후 `Done`으로 변경
|
|
27
|
+
- **PR 전 리뷰 Findings**: -
|
|
28
|
+
- 형식: `major=<n>, minor=<n>`
|
|
27
29
|
- **PR 전 리뷰 Evidence**: -
|
|
28
|
-
- 예: 리뷰
|
|
30
|
+
- 예: 리뷰 리포트 문서 경로(실제 존재 경로)
|
|
29
31
|
- **PR 전 리뷰 Decision**: -
|
|
30
|
-
-
|
|
32
|
+
- 형식: `결정: approve|changes_requested|blocked ...` (또는 `decision: ...`)
|
|
33
|
+
- PR 생성 전 최종 통과 기준은 `approve`
|
|
31
34
|
- 기본 베이스라인으로 `agents/skills/create-pr.md`(`Pre-PR 기본 체크리스트`) 기준을 따르세요
|
|
32
35
|
- **PR 리뷰 Evidence**: -
|
|
33
36
|
- 예: 해결/합의한 코멘트 링크, 검증 로그, 관련 문서 경로
|