lee-spec-kit 0.9.0 → 0.9.2

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.
Files changed (30) hide show
  1. package/README.en.md +2 -1
  2. package/README.md +3 -2
  3. package/dist/bootstrap-Q77MTW3Q.js +0 -0
  4. package/dist/chunk-3AFCPGGS.js +0 -0
  5. package/dist/chunk-7V7RMGEU.js +0 -0
  6. package/dist/chunk-GR7JQBWF.js +0 -0
  7. package/dist/hooks-373Z6JG2.js +0 -0
  8. package/dist/index.js +600 -89
  9. package/dist/index.js.map +1 -1
  10. package/package.json +13 -15
  11. package/templates/en/common/README.md +11 -9
  12. package/templates/en/common/agents/agents.md +9 -3
  13. package/templates/en/common/agents/git-workflow.md +27 -8
  14. package/templates/en/common/agents/skills/split-feature.md +2 -1
  15. package/templates/en/common/agents/ui-ux-design.md +128 -0
  16. package/templates/en/common/designs/README.md +39 -1
  17. package/templates/en/common/features/README.md +6 -2
  18. package/templates/en/common/features/feature-base/decisions.md +3 -1
  19. package/templates/en/common/features/feature-base/spec.md +3 -0
  20. package/templates/en/common/features/feature-base/tasks.md +4 -3
  21. package/templates/ko/common/README.md +11 -9
  22. package/templates/ko/common/agents/agents.md +9 -3
  23. package/templates/ko/common/agents/git-workflow.md +27 -8
  24. package/templates/ko/common/agents/skills/split-feature.md +4 -3
  25. package/templates/ko/common/agents/ui-ux-design.md +128 -0
  26. package/templates/ko/common/designs/README.md +39 -1
  27. package/templates/ko/common/features/README.md +6 -2
  28. package/templates/ko/common/features/feature-base/decisions.md +3 -1
  29. package/templates/ko/common/features/feature-base/spec.md +3 -0
  30. package/templates/ko/common/features/feature-base/tasks.md +4 -3
package/README.en.md CHANGED
@@ -79,7 +79,8 @@ The overall approach is influenced by [spec-kit](https://github.com/github/spec-
79
79
  - `integrations codex`: install/remove the optional global `[features].hooks` setting
80
80
  - `commit-audit --json`
81
81
  - `workflow-audit --json`
82
- - `local merge <feature-ref> --json`: fast-forward a completed local Feature into its base branch and run post-merge checks
82
+ - `local verify <feature-ref> --json`: run checks in the local Feature worktree and bind the result to its exact tip/tree
83
+ - `local merge <feature-ref> --json`: integrate a verified local Feature using its configured fast-forward or squash strategy
83
84
  - `local cleanup <feature-ref> --json`: remove the managed worktree and optionally delete the integrated Feature branch
84
85
 
85
86
  Supported modes:
package/README.md CHANGED
@@ -77,9 +77,10 @@ npx lee-spec-kit feature user-auth
77
77
  - `github`: issue/pr 본문 생성 및 검증
78
78
  - `integrations codex-hooks`: 현재 workspace와 configured project root용 Codex hooks 생성/제거
79
79
  - `integrations codex`: 선택적 전역 `[features].hooks` 설정 설치/제거
80
- - `commit-audit --json`: hooks용 commit-time docs path validator
80
+ - `commit-audit --json`: hooks용 commit-time docs path + canonical commit subject validator
81
81
  - `workflow-audit --json`: hooks용 docs sync validator
82
- - `local merge <feature-ref> --json`: 완료된 local Feature base branch에 fast-forward 병합하고 사후 검증 실행
82
+ - `local verify <feature-ref> --json`: local Feature worktree에서 검사를 실행하고 결과를 정확한 tip/tree에 결속
83
+ - `local merge <feature-ref> --json`: 검증된 local Feature를 설정된 fast-forward 또는 squash 전략으로 base branch에 통합
83
84
  - `local cleanup <feature-ref> --json`: managed worktree 제거 및 설정에 따른 통합 완료 Feature 브랜치 삭제
84
85
 
85
86
  지원 모드:
File without changes
File without changes
File without changes
File without changes
File without changes