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 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. FE/BE/worker)
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 (`single` with `--yes`/`--non-interactive`) |
113
- | `--components <list>` | multi component list (comma-separated, e.g. `fe,be,worker`) | `fe,be` |
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 (`{"fe":"/path/fe"}`) | - |
119
- | `--fe-project-root <path>` | standalone(multi) frontend repo path | - |
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 be user-auth
153
- npx lee-spec-kit feature --component fe user-profile
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. `fe`, `be`, `worker`) |
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. `fe`, `be`, `worker`) |
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. `fe`, `be`, `worker`) |
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. `["fe","be","worker"]`) |
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/fe/path --component fe
548
- npx lee-spec-kit config --project-root /new/be/path --component be
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/fe/path --component fe --non-interactive
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
- - Fullstack ํ”„๋กœ์ ํŠธ์˜ ๊ฒฝ์šฐ FE/BE ๋ถ„๋ฆฌ ์ง€์›
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`๋ฉด `single`) |
129
- | `--components <list>` | multi ์ปดํฌ๋„ŒํŠธ ๋ชฉ๋ก (์‰ผํ‘œ ๊ตฌ๋ถ„, ์˜ˆ: `fe,be,worker`) | `fe,be` |
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 ๋งคํ•‘ (`{"fe":"/path/fe"}`) | - |
135
- | `--fe-project-root <path>` | standalone(multi) FE ๋ ˆํฌ ๊ฒฝ๋กœ | - |
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 be user-auth
169
- npx lee-spec-kit feature --component fe user-profile
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์—์„œ ๋Œ€์ƒ ์ปดํฌ๋„ŒํŠธ ์ง€์ • (์˜ˆ: `fe`, `be`, `worker`) |
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์—์„œ ๋Œ€์ƒ ์ปดํฌ๋„ŒํŠธ ์ง€์ • (์˜ˆ: `fe`, `be`, `worker`) |
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์—์„œ ๋Œ€์ƒ ์ปดํฌ๋„ŒํŠธ ์ง€์ • (์˜ˆ: `fe`, `be`, `worker`) |
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๋งŒ) ์ปดํฌ๋„ŒํŠธ ๋ชฉ๋ก (์˜ˆ: `["fe","be","worker"]`) |
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
- "fe": "/path/to/frontend",
607
- "be": "/path/to/backend"
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/fe/path --component fe
627
- npx lee-spec-kit config --project-root /new/be/path --component be
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/fe/path --component fe --non-interactive
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
- ### Fullstack (FE/BE ๋ถ„๋ฆฌ)
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
- โ”œโ”€โ”€ be/ # Backend Features
679
- โ””โ”€โ”€ fe/ # Frontend Features
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` | ๋ฉ€ํ‹ฐ ์ปดํฌ๋„ŒํŠธ ํ”„๋กœ์ ํŠธ (์˜ˆ: FE/BE/worker) |
716
+ | `multi` | ๋ฉ€ํ‹ฐ ์ปดํฌ๋„ŒํŠธ ํ”„๋กœ์ ํŠธ (์˜ˆ: app/api/worker) |
719
717
  | `fullstack` | `multi`์˜ ํ•˜์œ„ํ˜ธํ™˜ alias |
720
718
 
721
719
  ## ๋ฌธ์ œ ํ•ด๊ฒฐ