lee-spec-kit 0.6.8 โ 0.6.10
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 +14 -16
- package/README.md +20 -22
- package/dist/index.js +239 -148
- package/package.json +1 -1
- package/templates/en/common/agents/agents.md +12 -0
- package/templates/en/common/agents/git-workflow.md +1 -1
- package/templates/en/common/agents/issue-template.md +3 -3
- package/templates/en/common/agents/skills/create-issue.md +2 -2
- package/templates/en/common/agents/skills/create-pr.md +2 -2
- package/templates/en/common/features/README.md +1 -1
- package/templates/en/common/features/feature-base/plan.md +1 -1
- package/templates/en/common/features/feature-base/spec.md +1 -1
- package/templates/en/common/features/feature-base/tasks.md +1 -1
- package/templates/en/common/ideas/README.md +1 -1
- package/templates/ko/common/agents/agents.md +12 -0
- package/templates/ko/common/agents/git-workflow.md +1 -1
- package/templates/ko/common/agents/issue-template.md +3 -3
- package/templates/ko/common/agents/skills/create-issue.md +2 -2
- package/templates/ko/common/agents/skills/create-pr.md +2 -2
- package/templates/ko/common/features/README.md +1 -1
- package/templates/ko/common/features/feature-base/plan.md +1 -1
- package/templates/ko/common/features/feature-base/spec.md +1 -1
- package/templates/ko/common/features/feature-base/tasks.md +1 -1
- package/templates/ko/common/ideas/README.md +1 -1
package/README.en.md
CHANGED
|
@@ -67,7 +67,7 @@ npx lee-spec-kit doctor
|
|
|
67
67
|
### ๐ Feature creation
|
|
68
68
|
|
|
69
69
|
- Generates `spec.md`, `plan.md`, `tasks.md`, `decisions.md`
|
|
70
|
-
- Multi mode supports flexible component separation (e.g.
|
|
70
|
+
- Multi mode supports flexible component separation (e.g. app/api/worker)
|
|
71
71
|
- Integrates Issue/PR templates (docs side)
|
|
72
72
|
|
|
73
73
|
### ๐ Status management
|
|
@@ -109,16 +109,14 @@ npx lee-spec-kit init --name my-project --type fullstack # alias
|
|
|
109
109
|
| Option | Description | Default |
|
|
110
110
|
| ------------------- | ------------------------------------------------------------------------------------------- | ------------------------------- |
|
|
111
111
|
| `-n, --name <name>` | Project name | current folder |
|
|
112
|
-
| `-t, --type <type>` | `single` or `multi` (`fullstack` alias supported) | interactive (`
|
|
113
|
-
| `--components <list>` | multi component list (comma-separated, e.g. `
|
|
112
|
+
| `-t, --type <type>` | `single` or `multi` (`fullstack` alias supported) | interactive (`multi` with `--yes`/`--non-interactive`) |
|
|
113
|
+
| `--components <list>` | multi component list (comma-separated, e.g. `app,api,worker`) | `app` |
|
|
114
114
|
| `-l, --lang <lang>` | `ko` or `en` | `en` |
|
|
115
115
|
| `--workflow <mode>` | Workflow mode: `github` (issue/PR/review) or `local` (local-first) | `github` |
|
|
116
116
|
| `-d, --dir <dir>` | Install directory | `./docs` |
|
|
117
117
|
| `--docs-repo <mode>` | docs repo mode (`embedded` or `standalone`) | `embedded` |
|
|
118
|
-
| `--project-root <path>` | standalone(single) project repo path or standalone(multi) JSON map (`{"
|
|
119
|
-
| `--
|
|
120
|
-
| `--be-project-root <path>` | standalone(multi) backend repo path | - |
|
|
121
|
-
| `--component-project-roots <pairs>` | standalone(multi) component roots (`fe=/path/fe,be=/path/be,worker=/path/worker`) | - |
|
|
118
|
+
| `--project-root <path>` | standalone(single) project repo path or standalone(multi) JSON map (`{"app":"/path/app","api":"/path/api"}`) | - |
|
|
119
|
+
| `--component-project-roots <pairs>` | standalone(multi) component roots (`app=/path/app,api=/path/api,worker=/path/worker`) | - |
|
|
122
120
|
| `--push-docs` | enable standalone docs push (use with `--docs-remote`) | `false` |
|
|
123
121
|
| `--docs-remote <url>` | standalone docs remote URL (used with `--push-docs`) | - |
|
|
124
122
|
| `-y, --yes` | Skip most interactive inputs (overwrite confirmation still appears if target dir is not empty) | - |
|
|
@@ -149,8 +147,8 @@ The `--json` payload includes `isLeeSpecKitProject`, `reasonCode` (`PROJECT_DETE
|
|
|
149
147
|
npx lee-spec-kit feature user-auth
|
|
150
148
|
|
|
151
149
|
# Multi
|
|
152
|
-
npx lee-spec-kit feature --component
|
|
153
|
-
npx lee-spec-kit feature --component
|
|
150
|
+
npx lee-spec-kit feature --component api user-auth
|
|
151
|
+
npx lee-spec-kit feature --component app user-profile
|
|
154
152
|
npx lee-spec-kit feature --component worker queue-jobs
|
|
155
153
|
|
|
156
154
|
# Specify Feature ID/description
|
|
@@ -196,7 +194,7 @@ Use advanced selectors (`--component`, `--all`, `--done`) only when you need mul
|
|
|
196
194
|
| Option | Description |
|
|
197
195
|
| -------------- | ----------------------------------------------- |
|
|
198
196
|
| `--json` | JSON output for agents |
|
|
199
|
-
| `--component <id>` | Select target component in multi mode (e.g. `
|
|
197
|
+
| `--component <id>` | Select target component in multi mode (e.g. `app`, `api`, `worker`) |
|
|
200
198
|
| `--all` | Include completed features when auto-detecting |
|
|
201
199
|
| `--done` | Show completed (workflow-done) features only |
|
|
202
200
|
| `--approve <reply>` | Approve one labeled option using any reply that includes a label token (e.g. `A`, `A OK`, `A proceed`) |
|
|
@@ -266,7 +264,7 @@ npx lee-spec-kit view --json
|
|
|
266
264
|
| Option | Description |
|
|
267
265
|
| -------------- | ----------------------------------------------- |
|
|
268
266
|
| `--json` | JSON output for agents |
|
|
269
|
-
| `--component <id>` | Select target component in multi mode (e.g. `
|
|
267
|
+
| `--component <id>` | Select target component in multi mode (e.g. `app`, `api`, `worker`) |
|
|
270
268
|
| `--all` | Include completed features when auto-detecting |
|
|
271
269
|
| `--done` | Show completed (workflow-done) features only |
|
|
272
270
|
|
|
@@ -291,7 +289,7 @@ npx lee-spec-kit flow --strict
|
|
|
291
289
|
| Option | Description |
|
|
292
290
|
| ----------------- | ----------- |
|
|
293
291
|
| `--json` | JSON output for agents |
|
|
294
|
-
| `--component <id>`| Select target component in multi mode (e.g. `
|
|
292
|
+
| `--component <id>`| Select target component in multi mode (e.g. `app`, `api`, `worker`) |
|
|
295
293
|
| `--all` | Include completed features when auto-detecting |
|
|
296
294
|
| `--done` | Show completed (workflow-done) features only |
|
|
297
295
|
| `--approve <reply>` | Pass through context label approval (e.g. `A`, `A OK`, `A proceed`) |
|
|
@@ -419,7 +417,7 @@ Running `init` creates `.lee-spec-kit.json` in your docs root (default: `docs/`)
|
|
|
419
417
|
| ------------- | ------------------------------------------------ |
|
|
420
418
|
| `projectName` | Project name |
|
|
421
419
|
| `projectType` | `single` or `multi` (`fullstack` alias supported) |
|
|
422
|
-
| `components` | (multi only) component list (e.g. `["
|
|
420
|
+
| `components` | (multi only) component list (e.g. `["app","api","worker"]`) |
|
|
423
421
|
| `lang` | `ko` or `en` |
|
|
424
422
|
| `createdAt` | Creation date |
|
|
425
423
|
| `docsRepo` | `embedded` or `standalone` |
|
|
@@ -544,12 +542,12 @@ npx lee-spec-kit config --project-root /new/path
|
|
|
544
542
|
npx lee-spec-kit config --dir ./docs2 --project-root /new/path
|
|
545
543
|
|
|
546
544
|
# update projectRoot (multi)
|
|
547
|
-
npx lee-spec-kit config --project-root /new/
|
|
548
|
-
npx lee-spec-kit config --project-root /new/
|
|
545
|
+
npx lee-spec-kit config --project-root /new/app/path --component app
|
|
546
|
+
npx lee-spec-kit config --project-root /new/api/path --component api
|
|
549
547
|
npx lee-spec-kit config --project-root /new/worker/path --component worker
|
|
550
548
|
|
|
551
549
|
# non-interactive mode (fails immediately if required input is missing)
|
|
552
|
-
npx lee-spec-kit config --project-root /new/
|
|
550
|
+
npx lee-spec-kit config --project-root /new/app/path --component app --non-interactive
|
|
553
551
|
```
|
|
554
552
|
|
|
555
553
|
**Options:**
|
package/README.md
CHANGED
|
@@ -80,7 +80,7 @@ npx lee-spec-kit doctor
|
|
|
80
80
|
### ๐ Feature ์์ฑ
|
|
81
81
|
|
|
82
82
|
- spec.md, plan.md, tasks.md, decisions.md ์๋ ์์ฑ
|
|
83
|
-
-
|
|
83
|
+
- Multi ํ๋ก์ ํธ์์ ์์ ์ปดํฌ๋ํธ(app/api/worker ๋ฑ) ๋ถ๋ฆฌ ์ง์
|
|
84
84
|
- GitHub Issue/PR ํ
ํ๋ฆฟ ์ฐ๋
|
|
85
85
|
|
|
86
86
|
### ๐ ์ํ ๊ด๋ฆฌ
|
|
@@ -125,16 +125,14 @@ npx lee-spec-kit init --name my-project --type fullstack # alias
|
|
|
125
125
|
| ์ต์
| ์ค๋ช
| ๊ธฐ๋ณธ๊ฐ |
|
|
126
126
|
| ------------------- | -------------------------------------------------------------------- | ------------------------- |
|
|
127
127
|
| `-n, --name <name>` | ํ๋ก์ ํธ ์ด๋ฆ | ํ์ฌ ํด๋๋ช
|
|
|
128
|
-
| `-t, --type <type>` | `single` ๋๋ `multi` (`fullstack` alias ์ง์) | ๋ํํ ์ ํ (`--yes`/`--non-interactive`๋ฉด `
|
|
129
|
-
| `--components <list>` | multi ์ปดํฌ๋ํธ ๋ชฉ๋ก (์ผํ ๊ตฌ๋ถ, ์: `
|
|
128
|
+
| `-t, --type <type>` | `single` ๋๋ `multi` (`fullstack` alias ์ง์) | ๋ํํ ์ ํ (`--yes`/`--non-interactive`๋ฉด `multi`) |
|
|
129
|
+
| `--components <list>` | multi ์ปดํฌ๋ํธ ๋ชฉ๋ก (์ผํ ๊ตฌ๋ถ, ์: `app,api,worker`) | `app` |
|
|
130
130
|
| `-l, --lang <lang>` | `ko` (ํ๊ตญ์ด) ๋๋ `en` (์์ด) | `en` |
|
|
131
131
|
| `--workflow <mode>` | ์ํฌํ๋ก์ฐ ๋ชจ๋: `github`(issue/PR/review ํฌํจ) ๋๋ `local`(๋ก์ปฌ ์ค์ฌ) | `github` |
|
|
132
132
|
| `-d, --dir <dir>` | ์ค์น ๋๋ ํ ๋ฆฌ | `./docs` |
|
|
133
133
|
| `--docs-repo <mode>` | docs ๋ ํฌ ๋ชจ๋ (`embedded` ๋๋ `standalone`) | `embedded` |
|
|
134
|
-
| `--project-root <path>` | standalone(single) ํ๋ก์ ํธ ๋ ํฌ ๊ฒฝ๋ก ๋๋ standalone(multi) JSON ๋งคํ (`{"
|
|
135
|
-
| `--
|
|
136
|
-
| `--be-project-root <path>` | standalone(multi) BE ๋ ํฌ ๊ฒฝ๋ก | - |
|
|
137
|
-
| `--component-project-roots <pairs>` | standalone(multi) ์ปดํฌ๋ํธ๋ณ ๋ ํฌ ๊ฒฝ๋ก (`fe=/path/fe,be=/path/be,worker=/path/worker`) | - |
|
|
134
|
+
| `--project-root <path>` | standalone(single) ํ๋ก์ ํธ ๋ ํฌ ๊ฒฝ๋ก ๋๋ standalone(multi) JSON ๋งคํ (`{"app":"/path/app","api":"/path/api"}`) | - |
|
|
135
|
+
| `--component-project-roots <pairs>` | standalone(multi) ์ปดํฌ๋ํธ๋ณ ๋ ํฌ ๊ฒฝ๋ก (`app=/path/app,api=/path/api,worker=/path/worker`) | - |
|
|
138
136
|
| `--push-docs` | standalone docs ์๊ฒฉ push ์ฌ์ฉ (`--docs-remote`์ ํจ๊ป ์ฌ์ฉ) | `false` |
|
|
139
137
|
| `--docs-remote <url>` | standalone docs ์๊ฒฉ URL (`--push-docs`์ ํจ๊ป ์ฌ์ฉ) | - |
|
|
140
138
|
| `-y, --yes` | ๋ํํ ์
๋ ฅ์ ๋๋ถ๋ถ ์คํต (๋จ, ๋์ ๋๋ ํ ๋ฆฌ๊ฐ ๋น์ด์์ง ์์ผ๋ฉด ๋ฎ์ด์ฐ๊ธฐ ํ์ธ์ ํ์) | - |
|
|
@@ -165,8 +163,8 @@ npx lee-spec-kit detect --dir /path/to/workspace
|
|
|
165
163
|
npx lee-spec-kit feature user-auth
|
|
166
164
|
|
|
167
165
|
# Multi ํ๋ก์ ํธ
|
|
168
|
-
npx lee-spec-kit feature --component
|
|
169
|
-
npx lee-spec-kit feature --component
|
|
166
|
+
npx lee-spec-kit feature --component api user-auth
|
|
167
|
+
npx lee-spec-kit feature --component app user-profile
|
|
170
168
|
npx lee-spec-kit feature --component worker queue-jobs
|
|
171
169
|
|
|
172
170
|
# Feature ID/์ค๋ช
์ง์
|
|
@@ -213,7 +211,7 @@ npx lee-spec-kit context F001 --approve A --execute --ticket <TICKET> --execute-
|
|
|
213
211
|
| ์ต์
| ์ค๋ช
|
|
|
214
212
|
| --------------- | ----------------------------------------------- |
|
|
215
213
|
| `--json` | ์์ด์ ํธ์ฉ JSON ์ถ๋ ฅ |
|
|
216
|
-
| `--component <id>` | multi์์ ๋์ ์ปดํฌ๋ํธ ์ง์ (์: `
|
|
214
|
+
| `--component <id>` | multi์์ ๋์ ์ปดํฌ๋ํธ ์ง์ (์: `app`, `api`, `worker`) |
|
|
217
215
|
| `--all` | ์๋ ๊ฐ์ง ์คํจ ์ ์๋ฃ๋ Feature๊น์ง ํฌํจํด์ ํ์ |
|
|
218
216
|
| `--done` | ์๋ฃ(workflow-done) Feature๋ง ํ์ |
|
|
219
217
|
| `--approve <reply>` | ๋ผ๋ฒจ ํฌํจ ์น์ธ ์๋ต์ผ๋ก ๋จ์ผ ์ต์
์ ํ (์: `A`, `A OK`, `A ์งํํด`) |
|
|
@@ -283,7 +281,7 @@ npx lee-spec-kit view --json
|
|
|
283
281
|
| ์ต์
| ์ค๋ช
|
|
|
284
282
|
| --------------- | ----------------------------------------------- |
|
|
285
283
|
| `--json` | ์์ด์ ํธ์ฉ JSON ์ถ๋ ฅ |
|
|
286
|
-
| `--component <id>` | multi์์ ๋์ ์ปดํฌ๋ํธ ์ง์ (์: `
|
|
284
|
+
| `--component <id>` | multi์์ ๋์ ์ปดํฌ๋ํธ ์ง์ (์: `app`, `api`, `worker`) |
|
|
287
285
|
| `--all` | ์๋ ๊ฐ์ง ์คํจ ์ ์๋ฃ๋ Feature๊น์ง ํฌํจํด์ ํ์ |
|
|
288
286
|
| `--done` | ์๋ฃ(workflow-done) Feature๋ง ํ์ |
|
|
289
287
|
|
|
@@ -308,7 +306,7 @@ npx lee-spec-kit flow --strict
|
|
|
308
306
|
| ์ต์
| ์ค๋ช
|
|
|
309
307
|
| ------------------ | ---- |
|
|
310
308
|
| `--json` | ์์ด์ ํธ์ฉ JSON ์ถ๋ ฅ |
|
|
311
|
-
| `--component <id>` | multi์์ ๋์ ์ปดํฌ๋ํธ ์ง์ (์: `
|
|
309
|
+
| `--component <id>` | multi์์ ๋์ ์ปดํฌ๋ํธ ์ง์ (์: `app`, `api`, `worker`) |
|
|
312
310
|
| `--all` | ์๋ ๊ฐ์ง ์คํจ ์ ์๋ฃ๋ Feature๊น์ง ํฌํจํด์ ํ์ |
|
|
313
311
|
| `--done` | ์๋ฃ(workflow-done) Feature๋ง ํ์ |
|
|
314
312
|
| `--approve <reply>`| context ๋ผ๋ฒจ ์น์ธ ์๋ต ์ ๋ฌ (์: `A`, `A OK`, `A ์งํํด`) |
|
|
@@ -466,7 +464,7 @@ npx lee-spec-kit update --force
|
|
|
466
464
|
| ------------- | --------------------------------------- |
|
|
467
465
|
| `projectName` | ํ๋ก์ ํธ ์ด๋ฆ |
|
|
468
466
|
| `projectType` | `single` ๋๋ `multi` (`fullstack` alias ์ง์) |
|
|
469
|
-
| `components` | (multi๋ง) ์ปดํฌ๋ํธ ๋ชฉ๋ก (์: `["
|
|
467
|
+
| `components` | (multi๋ง) ์ปดํฌ๋ํธ ๋ชฉ๋ก (์: `["app","api","worker"]`) |
|
|
470
468
|
| `lang` | `ko` ๋๋ `en` |
|
|
471
469
|
| `createdAt` | ์์ฑ ๋ ์ง |
|
|
472
470
|
| `docsRepo` | `embedded` ๋๋ `standalone` |
|
|
@@ -603,8 +601,8 @@ npx lee-spec-kit update --force
|
|
|
603
601
|
"docsRepo": "standalone",
|
|
604
602
|
"pushDocs": false,
|
|
605
603
|
"projectRoot": {
|
|
606
|
-
"
|
|
607
|
-
"
|
|
604
|
+
"app": "/path/to/app",
|
|
605
|
+
"api": "/path/to/api"
|
|
608
606
|
}
|
|
609
607
|
}
|
|
610
608
|
```
|
|
@@ -623,12 +621,12 @@ npx lee-spec-kit config --project-root /new/path
|
|
|
623
621
|
npx lee-spec-kit config --dir ./docs2 --project-root /new/path
|
|
624
622
|
|
|
625
623
|
# projectRoot ์์ (Multi)
|
|
626
|
-
npx lee-spec-kit config --project-root /new/
|
|
627
|
-
npx lee-spec-kit config --project-root /new/
|
|
624
|
+
npx lee-spec-kit config --project-root /new/app/path --component app
|
|
625
|
+
npx lee-spec-kit config --project-root /new/api/path --component api
|
|
628
626
|
npx lee-spec-kit config --project-root /new/worker/path --component worker
|
|
629
627
|
|
|
630
628
|
# ๋น๋ํํ ๋ชจ๋ (ํ์ ์ต์
๋๋ฝ ์ ์ฆ์ ์คํจ)
|
|
631
|
-
npx lee-spec-kit config --project-root /new/
|
|
629
|
+
npx lee-spec-kit config --project-root /new/app/path --component app --non-interactive
|
|
632
630
|
```
|
|
633
631
|
|
|
634
632
|
**์ต์
:**
|
|
@@ -659,7 +657,7 @@ npx lee-spec-kit config --project-root /new/fe/path --component fe --non-interac
|
|
|
659
657
|
|
|
660
658
|
## ์์ฑ๋๋ ๊ตฌ์กฐ
|
|
661
659
|
|
|
662
|
-
###
|
|
660
|
+
### Multi (์ปดํฌ๋ํธ ๋ถ๋ฆฌ)
|
|
663
661
|
|
|
664
662
|
```
|
|
665
663
|
docs/
|
|
@@ -675,8 +673,8 @@ docs/
|
|
|
675
673
|
โ โโโ README.md
|
|
676
674
|
โโโ features/
|
|
677
675
|
โโโ README.md
|
|
678
|
-
โโโ
|
|
679
|
-
โโโ
|
|
676
|
+
โโโ app/ # App Features
|
|
677
|
+
โโโ api/ # API Features
|
|
680
678
|
```
|
|
681
679
|
|
|
682
680
|
### Single (๋จ์ผ ๋ ํฌ)
|
|
@@ -715,7 +713,7 @@ flowchart LR
|
|
|
715
713
|
| ํ๋ก์ ํธ ํ์
| ์ค๋ช
|
|
|
716
714
|
| ------------- | -------------------------------------------- |
|
|
717
715
|
| `single` | ๋จ์ผ ๋ ํฌ ํ๋ก์ ํธ (๋ชจ๋
ธ๋ ํฌ ๋๋ ๋จ์ผ ์คํ) |
|
|
718
|
-
| `multi` | ๋ฉํฐ ์ปดํฌ๋ํธ ํ๋ก์ ํธ (์:
|
|
716
|
+
| `multi` | ๋ฉํฐ ์ปดํฌ๋ํธ ํ๋ก์ ํธ (์: app/api/worker) |
|
|
719
717
|
| `fullstack` | `multi`์ ํ์ํธํ alias |
|
|
720
718
|
|
|
721
719
|
## ๋ฌธ์ ํด๊ฒฐ
|