lee-spec-kit 0.6.17 โ 0.6.18
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 +3 -3
- package/README.md +4 -4
- package/dist/index.js +459 -200
- package/package.json +8 -3
- package/templates/en/common/agents/git-workflow.md +8 -1
- package/templates/ko/common/agents/git-workflow.md +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lee-spec-kit",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.18",
|
|
4
4
|
"description": "Project documentation structure generator for AI-assisted development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -49,13 +49,18 @@
|
|
|
49
49
|
"eslint-config-prettier": "^10.1.8",
|
|
50
50
|
"prettier": "^3.7.4",
|
|
51
51
|
"tsup": "^8.5.1",
|
|
52
|
-
"typescript": "^5.9.3"
|
|
52
|
+
"typescript": "^5.9.3",
|
|
53
|
+
"vitest": "^4.0.18"
|
|
53
54
|
},
|
|
54
55
|
"scripts": {
|
|
55
56
|
"build": "tsup",
|
|
56
57
|
"dev": "tsup --watch",
|
|
57
58
|
"lint": "eslint src",
|
|
58
|
-
"test
|
|
59
|
+
"lint:test": "eslint tests",
|
|
60
|
+
"typecheck": "tsc --noEmit",
|
|
61
|
+
"typecheck:test": "tsc -p tsconfig.tests.json --noEmit",
|
|
62
|
+
"test": "pnpm build && vitest run",
|
|
63
|
+
"test:race": "pnpm build && vitest run tests/race.test.mjs",
|
|
59
64
|
"format": "prettier --write ."
|
|
60
65
|
}
|
|
61
66
|
}
|
|
@@ -82,9 +82,16 @@ main
|
|
|
82
82
|
### Branch Creation
|
|
83
83
|
|
|
84
84
|
```bash
|
|
85
|
-
|
|
85
|
+
# Default (recommended): create dedicated worktree + branch
|
|
86
|
+
mkdir -p .worktrees
|
|
87
|
+
git worktree add -b feat/{issue-number}-{feature-name} .worktrees/feat-{issue-number}-{feature-name}
|
|
88
|
+
|
|
89
|
+
# If branch already exists, attach worktree only
|
|
90
|
+
git worktree add .worktrees/feat-{issue-number}-{feature-name} feat/{issue-number}-{feature-name}
|
|
86
91
|
```
|
|
87
92
|
|
|
93
|
+
> Continue implementation from the created worktree path (`.worktrees/feat-{issue-number}-{feature-name}`).
|
|
94
|
+
|
|
88
95
|
### Document Commit Rules (Continuous Sync)
|
|
89
96
|
|
|
90
97
|
> ๐ **Docs synchronization is mandatory when Project code changes.**
|
|
@@ -82,9 +82,16 @@ main
|
|
|
82
82
|
### ๋ธ๋์น ์์ฑ
|
|
83
83
|
|
|
84
84
|
```bash
|
|
85
|
-
|
|
85
|
+
# ๊ธฐ๋ณธ(๊ถ์ฅ): ์ ์ฉ worktree + ๋ธ๋์น ์์ฑ
|
|
86
|
+
mkdir -p .worktrees
|
|
87
|
+
git worktree add -b feat/{issue-number}-{feature-name} .worktrees/feat-{issue-number}-{feature-name}
|
|
88
|
+
|
|
89
|
+
# ์ด๋ฏธ ๋ธ๋์น๊ฐ ์กด์ฌํ๋ฉด worktree๋ง ์ฐ๊ฒฐ
|
|
90
|
+
git worktree add .worktrees/feat-{issue-number}-{feature-name} feat/{issue-number}-{feature-name}
|
|
86
91
|
```
|
|
87
92
|
|
|
93
|
+
> ์ดํ ์์
์ ์์ฑ๋ worktree ๊ฒฝ๋ก(`.worktrees/feat-{issue-number}-{feature-name}`)์์ ์งํํ์ธ์.
|
|
94
|
+
|
|
88
95
|
### ๋ฌธ์ ์ปค๋ฐ ๊ท์น (Continuous Sync)
|
|
89
96
|
|
|
90
97
|
> ๐ **Project ์ฝ๋ ๋ณ๊ฒฝ ์ Docs ๋๊ธฐํ๋ ํ์์
๋๋ค.**
|