lee-spec-kit 0.6.25 โ 0.6.27
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 +21 -3
- package/README.md +21 -3
- package/dist/index.js +975 -455
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/en/common/agents/agents.md +6 -1
- package/templates/en/common/agents/skills/create-pr.md +1 -1
- package/templates/en/common/agents/skills/execute-task.md +8 -2
- package/templates/en/common/features/README.md +0 -1
- package/templates/en/common/features/feature-base/tasks.md +1 -3
- package/templates/ko/common/agents/agents.md +6 -1
- package/templates/ko/common/agents/skills/create-pr.md +1 -1
- package/templates/ko/common/agents/skills/execute-task.md +8 -2
- package/templates/ko/common/features/README.md +0 -1
- package/templates/ko/common/features/feature-base/tasks.md +1 -3
package/package.json
CHANGED
|
@@ -33,12 +33,17 @@ Prohibited:
|
|
|
33
33
|
## ๐งพ Label Response Contract (SSOT)
|
|
34
34
|
|
|
35
35
|
- End **every user-facing reply** with current status + available labels.
|
|
36
|
-
- Use the latest `npx lee-spec-kit context --json-compact` as the default source (fallback: `context --json` or `flow --json` when full detail is required).
|
|
36
|
+
- Use the latest `npx lee-spec-kit context --json-compact` as the default source (fallback: `context --json` or `flow --json` when full detail is required; prefer `flow --json-compact` for default flow output).
|
|
37
|
+
- When using auto results from `flow --json-compact` (or `flow --json`), treat `autoRun.resume.flowCommand` as SSOT for resume (including after context compression/reset).
|
|
38
|
+
- Treat `AUTO_MANUAL_REQUIRED` as an automation boundary, not an immediate failure. Re-check `context --json-compact`, then decide stop/report by `approvalRequest.required` (`context --json` only for full-detail debugging fields).
|
|
37
39
|
- Use `actionOptions[].detail` or command `cmd` **verbatim**. Do not paraphrase.
|
|
38
40
|
- Even when the user asks something else, append the same label block at the end if executable labels exist.
|
|
39
41
|
- If no executable labels exist, print `Available labels: none` and guide re-check with `npx lee-spec-kit context`.
|
|
40
42
|
- If user input does not contain a valid label, do not execute; request label selection again.
|
|
41
43
|
- For approved command options, prefer one-shot `flow --approve <LABEL> --execute`; do not split `context --approve` and `context --execute --ticket` across turns/sessions.
|
|
44
|
+
- If `agentOrchestration.currentActionShouldDelegate=true` and the selected option is `actionType="command"`, delegation is mandatory: call `spawn_agent` first. Do not execute that command directly from the main agent.
|
|
45
|
+
- Main-agent fallback is allowed only when sub-agent execution is unavailable (for example: tool not available, spawn failed, or sub-agent failed before command execution).
|
|
46
|
+
- When fallback is used, report a one-line fallback reason to the user before running the command in the main agent.
|
|
42
47
|
|
|
43
48
|
Output format:
|
|
44
49
|
|
|
@@ -22,7 +22,7 @@ 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. Run `npx lee-spec-kit pre-pr-review <feature-ref>` to
|
|
25
|
+
5. Run `npx lee-spec-kit pre-pr-review <feature-ref>` to record review notes in `decisions.md` and sync `Pre-PR Evidence/Decision`.
|
|
26
26
|
6. `Pre-PR Evidence` should point to a real existing path. (default: `workflow.prePrReview.evidenceMode=path_required`)
|
|
27
27
|
7. `Pre-PR Decision` must use `decision: approve|changes_requested|blocked ...` (or `๊ฒฐ์ : ...`).
|
|
28
28
|
8. Ensure the final decision is `approve` before moving to PR creation.
|
|
@@ -21,10 +21,16 @@ Execute exactly one option from `๐ Next Options (Atomic)` as printed by the C
|
|
|
21
21
|
|
|
22
22
|
- If the CLI points to an active task, focus on that task only.
|
|
23
23
|
- Treat task state transitions in `tasks.md` **"Task Rules"** as SSOT.
|
|
24
|
-
- Treat `approvalRequest.required` from `context --json` as SSOT for approval waiting.
|
|
24
|
+
- Treat `approvalRequest.required` from `context --json-compact` as SSOT for approval waiting (`--json` only when full-detail debugging fields are required).
|
|
25
25
|
- `false`: continue without label approval.
|
|
26
26
|
- `true`: wait for label-token approval (`A`, `A OK`) before execution.
|
|
27
|
-
-
|
|
27
|
+
- Default execution model is **main-agent orchestration + selective sub-agent execution**. Keep short steps (spec/plan/tasks approvals, issue/PR metadata sync) in the main agent, and delegate long-running loops (`task_execute`, `code_review`, `review_fix_commit`, `pre_pr_review`, auto-run) to a sub-agent.
|
|
28
|
+
- When `agentOrchestration.currentActionShouldDelegate=true` and the selected option is `actionType="command"`, delegation is mandatory: call `spawn_agent` first and do not execute the command directly from the main agent.
|
|
29
|
+
- Main-agent fallback is allowed only when sub-agent execution is unavailable (for example: tool not available, spawn failed, or sub-agent failed before command execution). Before fallback execution, report a one-line fallback reason to the user.
|
|
30
|
+
- If `context --json-compact` exposes `autoRun.available=true`, you may use `autoRun.command` to continue automatically until approval-required categories are reached.
|
|
31
|
+
- For long-running auto execution, start with `flow <feature> --auto-... --start-auto --json-compact` and prefer `autoRun.run.resumeCommand` (`flow --resume <RUN_ID>`) after interruption/compression (`--json` only when full-detail debugging fields are required).
|
|
32
|
+
- If auto execution stops, treat `autoRun.resume` from `flow --json-compact` (or `flow --json`) as SSOT. After interruption/compression, resume with `autoRun.resume.flowCommand`; if needed, check current state first with `autoRun.resume.contextCommand`.
|
|
33
|
+
- Treat `AUTO_MANUAL_REQUIRED` as an automation boundary (instruction-only segment), not an immediate crash. Re-check `context --json-compact` and report whether `approvalRequest.required` is now true.
|
|
28
34
|
- If the CLI prints commands, copy/paste them. (In standalone setups commands may include `git -C ...` and scopes like `project`/`docs`.)
|
|
29
35
|
- Follow user-facing response format (including the final status/label block in every reply) from `agents.md` **"Label Response Contract (SSOT)"**.
|
|
30
36
|
- For approved command options, default to `npx lee-spec-kit flow <slug|F001|F001-slug> --approve <LABEL> --execute` and avoid split `context --approve` / `context --execute --ticket` runs across turns.
|
|
@@ -69,7 +69,6 @@ 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>` |
|
|
73
72
|
| Pre-PR review evidence | `Pre-PR Evidence` in `tasks.md` | evidence link/log/doc path |
|
|
74
73
|
| Pre-PR review decision | `Pre-PR Decision` in `tasks.md` | `decision: approve\|changes_requested\|blocked ...` |
|
|
75
74
|
| PR review evidence | `PR Review Evidence` in `tasks.md` | evidence link/log/doc path |
|
|
@@ -24,10 +24,8 @@
|
|
|
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>`
|
|
29
27
|
- **Pre-PR Evidence**: -
|
|
30
|
-
- Example:
|
|
28
|
+
- Example: `docs/features/F001-foo/decisions.md` (must exist)
|
|
31
29
|
- **Pre-PR Decision**: -
|
|
32
30
|
- Format: `decision: approve|changes_requested|blocked ...` (or `๊ฒฐ์ : ...`)
|
|
33
31
|
- PR creation requires final decision `approve`
|
|
@@ -33,12 +33,17 @@
|
|
|
33
33
|
## ๐งพ ๋ผ๋ฒจ ์๋ต ๊ณ์ฝ (SSOT)
|
|
34
34
|
|
|
35
35
|
- ์ฌ์ฉ์์๊ฒ ๋ณด๋ด๋ **๋ชจ๋ ์๋ต์ ๋ง์ง๋ง**์ ํ์ฌ ์ํ + ์ ํ ๊ฐ๋ฅํ ๋ผ๋ฒจ์ ํ์ํฉ๋๋ค.
|
|
36
|
-
- ๊ธฐ์ค ๋ฐ์ดํฐ๋ ์ต์ `npx lee-spec-kit context --json-compact`๋ฅผ ๊ธฐ๋ณธ์ผ๋ก ์ฌ์ฉํ๊ณ , ์์ธ ํ๋๊ฐ ํ์ํ ๋๋ง `context --json`
|
|
36
|
+
- ๊ธฐ์ค ๋ฐ์ดํฐ๋ ์ต์ `npx lee-spec-kit context --json-compact`๋ฅผ ๊ธฐ๋ณธ์ผ๋ก ์ฌ์ฉํ๊ณ , ์์ธ ํ๋๊ฐ ํ์ํ ๋๋ง `context --json` ๋๋ `flow --json`์ ์ฌ์ฉํฉ๋๋ค. (`flow`๋ ๊ธฐ๋ณธ์ ์ผ๋ก `--json-compact` ์ฐ์ )
|
|
37
|
+
- `flow --json-compact`(๋๋ `flow --json`)์ auto ๊ฒฐ๊ณผ๋ฅผ ์ฌ์ฉํ ๋๋ `autoRun.resume.flowCommand`๋ฅผ ์ฌ๊ฐ SSOT๋ก ์ฌ์ฉํฉ๋๋ค. (์ปจํ
์คํธ ์์ถ/๋ฆฌ์
ํ ๋์ผ ๊ท์น ์ ์ฉ)
|
|
38
|
+
- `AUTO_MANUAL_REQUIRED`๋ ์๋ํ ๊ฒฝ๊ณ ์ํ์ด๋ฉฐ ์คํจ ๋จ์ ์ ํธ๊ฐ ์๋๋๋ค. `context --json-compact` ์ฌํ์ธ ํ `approvalRequest.required` ๊ธฐ์ค์ผ๋ก ๋ฉ์ถค/๋ณด๊ณ ๋ฅผ ํ๋จํฉ๋๋ค. (์์ธ ๋๋ฒ๊น
ํ๋๊ฐ ํ์ํ ๋๋ง `context --json`)
|
|
37
39
|
- ๋ผ๋ฒจ ์ค๋ช
์ `actionOptions[].detail` ๋๋ command `cmd`๋ฅผ **์๋ฌธ ๊ทธ๋๋ก** ์ฌ์ฉํฉ๋๋ค. (์์ฝ/์์ญ ๊ธ์ง)
|
|
38
40
|
- ์ฌ์ฉ์๊ฐ ๋ค๋ฅธ ์ง๋ฌธ์ ํ๋๋ผ๋, ์คํ ๊ฐ๋ฅํ ๋ผ๋ฒจ์ด ์์ผ๋ฉด ์๋ต ๋ง์ง๋ง์ ๋์ผ ๋ธ๋ก์ ๋ค์ ํ์ํฉ๋๋ค.
|
|
39
41
|
- ์คํ ๊ฐ๋ฅํ ๋ผ๋ฒจ์ด ์์ผ๋ฉด `์ ํ ๊ฐ๋ฅ: ์์` + `npx lee-spec-kit context` ์ฌํ์ธ์ ์๋ดํฉ๋๋ค.
|
|
40
42
|
- ์ฌ์ฉ์ ์
๋ ฅ์ ์ ํจ ๋ผ๋ฒจ์ด ์์ผ๋ฉด ์คํํ์ง ๋ง๊ณ ๋ผ๋ฒจ ์ ํ์ ๋ค์ ์์ฒญํฉ๋๋ค.
|
|
41
43
|
- ์น์ธ๋ command ์ต์
์คํ์ `flow --approve <LABEL> --execute` 1ํ ํธ์ถ์ ๊ธฐ๋ณธ์ผ๋ก ํ๋ฉฐ, `context --approve`์ `context --execute --ticket`๋ฅผ ํด/์ธ์
์ฌ์ด๋ก ๋ถ๋ฆฌํ์ง ์์ต๋๋ค.
|
|
44
|
+
- `agentOrchestration.currentActionShouldDelegate=true`์ด๊ณ ์ ํํ ์ต์
์ด `actionType="command"`๋ฉด ์์์ด ํ์์
๋๋ค. ๋จผ์ `spawn_agent`๋ฅผ ํธ์ถํ๊ณ , ํด๋น ๋ช
๋ น์ ๋ฉ์ธ ์์ด์ ํธ์์ ์ง์ ์คํํ์ง ์์ต๋๋ค.
|
|
45
|
+
- ๋ฉ์ธ ์์ด์ ํธ fallback์ ์๋ธ ์์ด์ ํธ ์คํ์ด ๋ถ๊ฐ๋ฅํ ๊ฒฝ์ฐ(์: ๋๊ตฌ ๋ฏธ์ง์, spawn ์คํจ, ๋ช
๋ น ์คํ ์ ์๋ธ ์์ด์ ํธ ์คํจ)์๋ง ํ์ฉํฉ๋๋ค.
|
|
46
|
+
- fallback์ ์ฌ์ฉํ ๋๋ ๋ฉ์ธ ์คํ ์ ์ fallback ์ฌ์ ๋ฅผ ์ฌ์ฉ์์๊ฒ ํ ์ค๋ก ๋จผ์ ์๋ฆฝ๋๋ค.
|
|
42
47
|
|
|
43
48
|
์ถ๋ ฅ ํ์:
|
|
44
49
|
|
|
@@ -22,7 +22,7 @@ Pre-PR ๋ฆฌ๋ทฐ์์ ํญ์ ์ํํ๋ ์ต์ ๊ธฐ์ค์
๋๋ค. ๊ฐ๋ฅํ ๊ฒฝ์ฐ
|
|
|
22
22
|
2. ํ๊ท/์์ธ ์ฒ๋ฆฌ, ํฌ๋ฆฌํฐ์ปฌยท๋ณด์ ๋ฆฌ์คํฌ, ์ฌ์ด๋ ์ดํํธ, ์ฌ์ฉ์ ํ๋ฆ ์ํฅ, ๋ฐฐํฌ ์ค๋น๋๋ฅผ ์ ๊ฒํฉ๋๋ค.
|
|
23
23
|
3. ์ ์ง๋ณด์์ฑ์ ์ ๊ฒํฉ๋๋ค: ํฐ ํจ์/ํ์ผ์ ํ์ ์ ๋ถ๋ฆฌํ๊ณ , ๊ธฐ์กด ์ฝ๋ ์ฌ์ฌ์ฉยทํตํฉ ๊ฐ๋ฅ์ฑ์ ํ์ธํ๋ฉฐ, ๋ถํ์ํด์ง ์ฝ๋๋ฅผ ์ ๋ฆฌํฉ๋๋ค.
|
|
24
24
|
4. ๊ด๋ จ ํ
์คํธ/๊ฒ์ฆ ๋ช
๋ น์ ์คํํฉ๋๋ค. ์คํํ์ง ๋ชปํ๋ค๋ฉด ์ฌ์ ๋ฅผ ๋ช
์ํฉ๋๋ค.
|
|
25
|
-
5. `npx lee-spec-kit pre-pr-review <feature-ref>`๋ฅผ ์คํํด ๋ฆฌ๋ทฐ
|
|
25
|
+
5. `npx lee-spec-kit pre-pr-review <feature-ref>`๋ฅผ ์คํํด ๋ฆฌ๋ทฐ ๋ด์ฉ์ `decisions.md`์ ๊ธฐ๋กํ๊ณ `PR ์ ๋ฆฌ๋ทฐ Evidence/Decision`์ ๋๊ธฐํํฉ๋๋ค.
|
|
26
26
|
6. `PR ์ ๋ฆฌ๋ทฐ Evidence`๋ ์ค์ ์กด์ฌํ๋ ๋ฌธ์ ๊ฒฝ๋ก๋ฅผ ์ฌ์ฉํฉ๋๋ค. (`workflow.prePrReview.evidenceMode=path_required` ๊ธฐ๋ณธ)
|
|
27
27
|
7. `PR ์ ๋ฆฌ๋ทฐ Decision`์ `๊ฒฐ์ : approve|changes_requested|blocked ...` (๋๋ `decision: ...`) ํ์์ ์ฌ์ฉํฉ๋๋ค.
|
|
28
28
|
8. PR ์์ฑ ๋จ๊ณ๋ก ์ด๋ํ๊ธฐ ์ ์ต์ข
Decision์ด `approve`์ธ์ง ํ์ธํฉ๋๋ค.
|
|
@@ -23,8 +23,14 @@ CLI๊ฐ ๊ฐ๋ฆฌํค๋ **Active Task** ๋๋ **`๐ Next Options (Atomic)`์ ๋จ
|
|
|
23
23
|
|
|
24
24
|
- **[DOING] ์ํ์ธ ํ์คํฌ๊ฐ ์๋ค๋ฉด**: ํด๋น ํ์คํฌ๋ฅผ ์ต์ฐ์ ์ผ๋ก ์๋ฃํ์ธ์.
|
|
25
25
|
- ํ์คํฌ ์ํ ์ ํ ๊ท์น์ `tasks.md`์ **"ํ์คํฌ ๊ท์น"** ์น์
์ SSOT๋ก ๋ฐ๋ฆ
๋๋ค.
|
|
26
|
-
- ์น์ธ ๋๊ธฐ ์ฌ๋ถ๋ `context --json`์ `approvalRequest.required`๋ฅผ SSOT๋ก ๋ฐ๋ฆ
๋๋ค. `false`๋ฉด ๋ผ๋ฒจ ์น์ธ ์์ด ์งํํ๊ณ , `true`๋ฉด ๋ผ๋ฒจ ๊ท์น(`A`, `A OK`)์ผ๋ก ์น์ธ ํ ์งํํฉ๋๋ค.
|
|
27
|
-
-
|
|
26
|
+
- ์น์ธ ๋๊ธฐ ์ฌ๋ถ๋ `context --json-compact`์ `approvalRequest.required`๋ฅผ SSOT๋ก ๋ฐ๋ฆ
๋๋ค. (`--json`์ ์์ธ ๋๋ฒ๊น
์ด ํ์ํ ๋๋ง ์ฌ์ฉ) `false`๋ฉด ๋ผ๋ฒจ ์น์ธ ์์ด ์งํํ๊ณ , `true`๋ฉด ๋ผ๋ฒจ ๊ท์น(`A`, `A OK`)์ผ๋ก ์น์ธ ํ ์งํํฉ๋๋ค.
|
|
27
|
+
- ๊ธฐ๋ณธ ์คํ ๋ชจ๋ธ์ **๋ฉ์ธ ์์ด์ ํธ ์ค์ผ์คํธ๋ ์ด์
+ ์ ํ์ ์๋ธ ์์ด์ ํธ ์คํ**์
๋๋ค. ์งง์ ๋จ๊ณ(spec/plan/tasks ์น์ธ, ์ด์/PR ๋ฉํ ๋๊ธฐํ ๋ฑ)๋ ๋ฉ์ธ ์์ด์ ํธ๊ฐ ์ง์ ์ฒ๋ฆฌํ๊ณ , ์ฅ์๊ฐ ๋ฃจํ(`task_execute`, `code_review`, `review_fix_commit`, `pre_pr_review`, auto-run)๋ ์๋ธ ์์ด์ ํธ์ ์์ํฉ๋๋ค.
|
|
28
|
+
- `agentOrchestration.currentActionShouldDelegate=true`์ด๊ณ ์ ํํ ์ต์
์ด `actionType="command"`๋ฉด ์์์ด ํ์์
๋๋ค. ๋จผ์ `spawn_agent`๋ฅผ ํธ์ถํ๊ณ , ํด๋น ๋ช
๋ น์ ๋ฉ์ธ ์์ด์ ํธ์์ ์ง์ ์คํํ์ง ์์ต๋๋ค.
|
|
29
|
+
- ๋ฉ์ธ ์์ด์ ํธ fallback์ ์๋ธ ์์ด์ ํธ ์คํ์ด ๋ถ๊ฐ๋ฅํ ๊ฒฝ์ฐ(์: ๋๊ตฌ ๋ฏธ์ง์, spawn ์คํจ, ๋ช
๋ น ์คํ ์ ์๋ธ ์์ด์ ํธ ์คํจ)์๋ง ํ์ฉํฉ๋๋ค. fallback ์คํ ์ ์๋ ์ฌ์ ๋ฅผ ์ฌ์ฉ์์๊ฒ ํ ์ค๋ก ๋จผ์ ์๋ฆฝ๋๋ค.
|
|
30
|
+
- `context --json-compact`์ `autoRun.available=true`๊ฐ ์์ผ๋ฉด `autoRun.command`๋ฅผ ์ฌ์ฉํด ์น์ธ ํ์ ์นดํ
๊ณ ๋ฆฌ ์ ๊น์ง ์๋ ์งํํ ์ ์์ต๋๋ค.
|
|
31
|
+
- ์ฅ์๊ฐ ์๋ ์คํ์ด ํ์ํ๋ฉด `flow <feature> --auto-... --start-auto --json-compact`์ผ๋ก run id๋ฅผ ์์ฑํ๊ณ , ์ค๋จ/์์ถ ํ์๋ `autoRun.run.resumeCommand`(`flow --resume <RUN_ID>`)๋ฅผ ์ฐ์ ์ฌ์ฉํด ์ฌ๊ฐํฉ๋๋ค. (์์ธ ๋๋ฒ๊น
ํ๋๊ฐ ํ์ํ ๋๋ง `--json`)
|
|
32
|
+
- auto ์คํ์ด ์ค๋จ๋๋ฉด `flow --json-compact`(๋๋ `flow --json`)์ `autoRun.resume`๋ฅผ SSOT๋ก ๋ฐ๋ฆ
๋๋ค. ์ปจํ
์คํธ ์์ถ/๋ฆฌ์
ํ์๋ `autoRun.resume.flowCommand`๋ก ์ฌ๊ฐํ๊ณ , ํ์ ์ `autoRun.resume.contextCommand`๋ก ์ํ๋ฅผ ๋จผ์ ํ์ธํฉ๋๋ค.
|
|
33
|
+
- `AUTO_MANUAL_REQUIRED`๋ ์คํจ๊ฐ ์๋๋ผ ์๋ํ ๊ฒฝ๊ณ(ํ์ฌ instruction-only ๊ตฌ๊ฐ)์
๋๋ค. ์ฆ์ ์ค๋ฅ๋ก ๋จ์ ํ์ง ๋ง๊ณ ํ์ฌ `context --json-compact`๋ฅผ ๋ค์ ํ์ธํ ๋ค ์น์ธ ํ์ ์ฌ๋ถ(`approvalRequest.required`)๋ฅผ ๋ณด๊ณ ํฉ๋๋ค.
|
|
28
34
|
- CLI๊ฐ ๋ช
๋ น์ด๋ฅผ ์ถ๋ ฅํ๋ฉด **๊ทธ๋๋ก ๋ณต์ฌํด ์คํ**ํฉ๋๋ค. (standalone ํ๊ฒฝ์์๋ ๋ ํฌ ๊ฒฝ๋ก๊ฐ ํฌํจ๋ ์ ์์ต๋๋ค)
|
|
29
35
|
- ์ฌ์ฉ์ ์๋ต ํฌ๋งท(๋งค ์๋ต ๋ง๋ฏธ์ ์ํ/๋ผ๋ฒจ ํ์ ํฌํจ)์ `agents.md`์ **"๋ผ๋ฒจ ์๋ต ๊ณ์ฝ (SSOT)"** ์ ๋ฐ๋ฆ
๋๋ค.
|
|
30
36
|
- ์น์ธ๋ command ์ต์
์คํ์ `npx lee-spec-kit flow <slug|F001|F001-slug> --approve <LABEL> --execute`๋ฅผ ๊ธฐ๋ณธ์ผ๋ก ์ฌ์ฉํ๊ณ , `context --approve`์ `context --execute --ticket` ๋ถ๋ฆฌ ์คํ์ ์ง์ํฉ๋๋ค.
|
|
@@ -69,7 +69,6 @@ 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>` |
|
|
73
72
|
| Pre-PR ๋ฆฌ๋ทฐ Evidence | `tasks.md`์ `PR ์ ๋ฆฌ๋ทฐ Evidence` | ๊ทผ๊ฑฐ ๋งํฌ/๋ก๊ทธ/๋ฌธ์ ๊ฒฝ๋ก |
|
|
74
73
|
| Pre-PR ๋ฆฌ๋ทฐ Decision | `tasks.md`์ `PR ์ ๋ฆฌ๋ทฐ Decision` | `๊ฒฐ์ : approve|changes_requested|blocked ...` |
|
|
75
74
|
| PR ๋ฆฌ๋ทฐ Evidence | `tasks.md`์ `PR ๋ฆฌ๋ทฐ Evidence` | ๊ทผ๊ฑฐ ๋งํฌ/๋ก๊ทธ/๋ฌธ์ ๊ฒฝ๋ก |
|
|
@@ -24,10 +24,8 @@
|
|
|
24
24
|
- **PR ์ ๋ฆฌ๋ทฐ**: -
|
|
25
25
|
- ๊ฐ: Pending | Done
|
|
26
26
|
- ์ฌ์ ์ฝ๋๋ฆฌ๋ทฐ ์๋ฃ ํ `Done`์ผ๋ก ๋ณ๊ฒฝ
|
|
27
|
-
- **PR ์ ๋ฆฌ๋ทฐ Findings**: -
|
|
28
|
-
- ํ์: `major=<n>, minor=<n>`
|
|
29
27
|
- **PR ์ ๋ฆฌ๋ทฐ Evidence**: -
|
|
30
|
-
- ์:
|
|
28
|
+
- ์: `docs/features/F001-foo/decisions.md` (์ค์ ์กด์ฌ ๊ฒฝ๋ก)
|
|
31
29
|
- **PR ์ ๋ฆฌ๋ทฐ Decision**: -
|
|
32
30
|
- ํ์: `๊ฒฐ์ : approve|changes_requested|blocked ...` (๋๋ `decision: ...`)
|
|
33
31
|
- PR ์์ฑ ์ ์ต์ข
ํต๊ณผ ๊ธฐ์ค์ `approve`
|