lee-spec-kit 0.7.10 → 0.7.11
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 +7 -6
- package/README.md +7 -6
- package/dist/index.js +192 -62
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/en/common/README.md +6 -4
- package/templates/en/common/agents/agents.md +8 -4
- package/templates/en/common/agents/skills/execute-task.md +5 -1
- package/templates/en/common/features/README.md +3 -2
- package/templates/en/common/features/feature-base/spec.md +1 -1
- package/templates/en/common/features/feature-base/tasks.md +6 -3
- package/templates/en/common/ideas/README.md +2 -2
- package/templates/en/common/prd/README.md +2 -2
- package/templates/ko/common/README.md +6 -4
- package/templates/ko/common/agents/agents.md +8 -4
- package/templates/ko/common/agents/skills/execute-task.md +5 -1
- package/templates/ko/common/features/README.md +3 -2
- package/templates/ko/common/features/feature-base/spec.md +1 -1
- package/templates/ko/common/features/feature-base/tasks.md +6 -3
- package/templates/ko/common/ideas/README.md +2 -2
- package/templates/ko/common/prd/README.md +2 -2
package/README.en.md
CHANGED
|
@@ -72,7 +72,7 @@ The overall approach is influenced by [spec-kit](https://github.com/github/spec-
|
|
|
72
72
|
3. Create work with `idea` or `feature`.
|
|
73
73
|
4. Let the main agent read `detect` and `context`.
|
|
74
74
|
5. Humans step in for approvals, exceptions, and direction changes.
|
|
75
|
-
6. Use `context` for the current action and `flow`
|
|
75
|
+
6. Use `context` for the current action and `flow` as the default workflow runner.
|
|
76
76
|
|
|
77
77
|
## Humans Usually Ask Like This
|
|
78
78
|
|
|
@@ -87,13 +87,13 @@ The overall approach is influenced by [spec-kit](https://github.com/github/spec-
|
|
|
87
87
|
- The core agent-facing commands are the three commands below.
|
|
88
88
|
- `detect`: detect whether the workspace uses lee-spec-kit
|
|
89
89
|
- `context`: read the current feature state and next actions
|
|
90
|
-
- `flow`:
|
|
90
|
+
- `flow`: run the default workflow auto-loop and pause at selection/approval/manual/resume boundaries
|
|
91
91
|
- The public human-facing commands are the five commands below.
|
|
92
92
|
- `init`: initialize docs/workflow scaffolding
|
|
93
93
|
- `idea`: create a pre-feature idea document
|
|
94
94
|
- `feature`: create a concrete execution unit
|
|
95
95
|
- `context`: show the current state and next action
|
|
96
|
-
- `flow`:
|
|
96
|
+
- `flow`: run the default workflow auto-loop and pause at selection/approval/manual/resume boundaries
|
|
97
97
|
|
|
98
98
|
## Agent Kickoff Prompt
|
|
99
99
|
|
|
@@ -101,9 +101,10 @@ The overall approach is influenced by [spec-kit](https://github.com/github/spec-
|
|
|
101
101
|
Start procedure:
|
|
102
102
|
1) Run npx lee-spec-kit detect --json
|
|
103
103
|
2) If isLeeSpecKitProject === true, run npx lee-spec-kit context --json-compact
|
|
104
|
-
3)
|
|
105
|
-
4)
|
|
106
|
-
5)
|
|
104
|
+
3) Use context as the read-only state probe, and use flow as the default execution/resume entrypoint
|
|
105
|
+
4) If approvalRequest.required=true, briefly restate the current stage from matchedFeature.currentSubstate* when available, then show approvalRequest.userFacingLines exactly as provided and wait for user approval
|
|
106
|
+
5) Do not execute before approval; for command execution, default to npx lee-spec-kit flow <featureRef> --approve <LABEL> --execute
|
|
107
|
+
6) If isLeeSpecKitProject === false, skip lee-spec-kit-specific flow and continue with normal workflow
|
|
107
108
|
```
|
|
108
109
|
|
|
109
110
|
## Docs
|
package/README.md
CHANGED
|
@@ -72,7 +72,7 @@ npx lee-spec-kit flow
|
|
|
72
72
|
3. `idea`로 후보/실험을 정리하거나, 바로 `feature`로 실행 단위를 만듭니다.
|
|
73
73
|
4. 메인 에이전트가 `detect`와 `context`를 읽고 진행합니다.
|
|
74
74
|
5. 사람은 승인, 예외 처리, 방향 수정 시점에 개입합니다.
|
|
75
|
-
6. 현재 다음 액션과 승인 대기 상태는 `context`,
|
|
75
|
+
6. 현재 다음 액션과 승인 대기 상태는 `context`, 기본 workflow 실행/재개는 `flow`로 진행합니다.
|
|
76
76
|
|
|
77
77
|
## 사람은 보통 이렇게 요청합니다
|
|
78
78
|
|
|
@@ -87,13 +87,13 @@ npx lee-spec-kit flow
|
|
|
87
87
|
- 실제 에이전트 실행 기준 명령은 아래 3개입니다.
|
|
88
88
|
- `detect`: 현재 워크스페이스가 lee-spec-kit 프로젝트인지 감지합니다.
|
|
89
89
|
- `context`: 현재 feature 상태와 다음 액션을 읽습니다.
|
|
90
|
-
- `flow`:
|
|
90
|
+
- `flow`: 기본 workflow auto-run을 진행하고 선택/승인/수동/재개 경계에서 멈춥니다.
|
|
91
91
|
- 사람용 public 명령은 아래 다섯 개입니다.
|
|
92
92
|
- `init`: docs/workflow 구조를 초기화합니다.
|
|
93
93
|
- `idea`: 구현 전 아이디어 문서를 생성합니다.
|
|
94
94
|
- `feature`: 실제 작업 단위를 생성합니다.
|
|
95
95
|
- `context`: 현재 feature 상태와 다음 액션을 읽습니다.
|
|
96
|
-
- `flow`:
|
|
96
|
+
- `flow`: 기본 workflow auto-run을 진행하고 선택/승인/수동/재개 경계에서 멈춥니다.
|
|
97
97
|
|
|
98
98
|
## 에이전트 킥오프 프롬프트
|
|
99
99
|
|
|
@@ -101,9 +101,10 @@ npx lee-spec-kit flow
|
|
|
101
101
|
작업 시작 절차:
|
|
102
102
|
1) npx lee-spec-kit detect --json
|
|
103
103
|
2) isLeeSpecKitProject === true 이면 npx lee-spec-kit context --json-compact 실행
|
|
104
|
-
3)
|
|
105
|
-
4)
|
|
106
|
-
5)
|
|
104
|
+
3) 상태 확인은 context를 read-only probe로 사용하고, 실제 실행/재개는 flow를 기본 엔트리포인트로 사용
|
|
105
|
+
4) approvalRequest.required=true 이면 matchedFeature.currentSubstate* 기반 현재 단계 한 줄 요약을 먼저 짧게 말하고 approvalRequest.userFacingLines를 그대로 사용자에게 제시한 뒤 승인 대기
|
|
106
|
+
5) 승인 전에는 실행하지 말고, 명령 실행은 기본적으로 npx lee-spec-kit flow <featureRef> --approve <LABEL> --execute 사용
|
|
107
|
+
6) isLeeSpecKitProject === false 이면 lee-spec-kit 전용 절차를 건너뛰고 일반 워크플로우로 진행
|
|
107
108
|
```
|
|
108
109
|
|
|
109
110
|
## Docs
|