lee-spec-kit 0.2.3 → 0.2.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lee-spec-kit",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Project documentation structure generator for AI-assisted development",
5
5
  "type": "module",
6
6
  "bin": {
@@ -44,33 +44,19 @@ All development decisions are based on this document.
44
44
 
45
45
  ## Architecture Principles
46
46
 
47
- ### 1. Feature-Centric Management
48
-
49
- - Manage new features in `docs/features/F00X/` structure
50
- - Develop by **feature unit** (FE/BE separate)
51
- - spec → plan → tasks → decisions workflow
52
-
53
- ### 2. (Additional Principles)
54
-
55
- (Write project-specific architecture principles here)
47
+ > (Write project-specific architecture principles here. e.g., layer structure, dependency rules)
56
48
 
57
49
  ---
58
50
 
59
51
  ## Code Quality Standards
60
52
 
61
- - TypeScript strict mode required
62
- - ESLint + Prettier required
63
- - Major business logic test coverage **80%+**
64
- - Components follow **Single Responsibility Principle**
65
- - Minimize code duplication
53
+ > (Write project code quality standards here. e.g., test coverage, lint rules)
66
54
 
67
55
  ---
68
56
 
69
57
  ## Security Principles
70
58
 
71
- - Manage secrets via environment variables (no repo commits)
72
- - **Minimal data collection** for user data
73
- - CORS only for allowed origins
59
+ > (Write project security principles here. e.g., authentication method, data encryption)
74
60
 
75
61
  ---
76
62
 
@@ -20,12 +20,13 @@ Share execution plan with user before starting and wait for approval
20
20
 
21
21
  ### 3. Update Status
22
22
 
23
- | Timing | Status Transition |
24
- | ------------------- | -------------------- |
25
- | On start | `[TODO]` → `[DOING]` |
26
- | After user approval | `[DOING]` → `[DONE]` |
23
+ | Timing | Status Transition | Checkbox |
24
+ | ------------------- | -------------------- | ----------------- |
25
+ | On start | `[TODO]` → `[DOING]` | `[ ]` (No change) |
26
+ | After user approval | `[DOING]` → `[DONE]` | **`[x]` (Check)** |
27
27
 
28
28
  > ⚠️ Even after work is complete, **stay in `[DOING]` until user approval**
29
+ > ⚠️ When switching to `[DONE]`, **must also check the checkbox**.
29
30
 
30
31
  Record date (YYYY-MM-DD) with each status change
31
32
 
@@ -44,33 +44,19 @@
44
44
 
45
45
  ## 아키텍처 원칙
46
46
 
47
- ### 1. Feature 중심 관리
48
-
49
- - 새 기능은 `docs/features/F00X/` 구조로 관리
50
- - FE/BE 분리하여 **기능 단위**로 개발
51
- - spec → plan → tasks → decisions 워크플로우
52
-
53
- ### 2. (추가 원칙)
54
-
55
- (프로젝트별 아키텍처 원칙을 작성하세요)
47
+ > (프로젝트별 아키텍처 원칙을 작성하세요. 예: 레이어 구조, 의존성 규칙 등)
56
48
 
57
49
  ---
58
50
 
59
51
  ## 코드 품질 기준
60
52
 
61
- - TypeScript strict mode 필수
62
- - ESLint + Prettier 필수
63
- - 주요 비즈니스 로직 테스트 커버리지 **80%+**
64
- - 컴포넌트는 **단일 책임 원칙**
65
- - 중복 코드 최소화
53
+ > (프로젝트의 코드 품질 기준을 작성하세요. 예: 테스트 커버리지, 린트 규칙 등)
66
54
 
67
55
  ---
68
56
 
69
57
  ## 보안 원칙
70
58
 
71
- - 환경 변수로 시크릿 관리 (저장소 커밋 금지)
72
- - 사용자 데이터 **최소 수집**
73
- - CORS는 허용 오리진만 설정
59
+ > (프로젝트의 보안 원칙을 작성하세요. 예: 인증 방식, 데이터 암호화 등)
74
60
 
75
61
  ---
76
62
 
@@ -20,12 +20,13 @@ tasks.md의 태스크를 실행할 때 따르는 가이드입니다.
20
20
 
21
21
  ### 3. 상태 전환
22
22
 
23
- | 시점 | 상태 전환 |
24
- | -------------- | -------------------- |
25
- | 시작 시 | `[TODO]` → `[DOING]` |
26
- | 사용자 승인 후 | `[DOING]` → `[DONE]` |
23
+ | 시점 | 상태 전환 | 체크박스 |
24
+ | -------------- | -------------------- | ----------------- |
25
+ | 시작 시 | `[TODO]` → `[DOING]` | `[ ]` (변경 없음) |
26
+ | 사용자 승인 후 | `[DOING]` → `[DONE]` | **`[x]` (체크)** |
27
27
 
28
28
  > ⚠️ 작업이 완료되어도 **사용자 승인 전까지는 `[DOING]` 상태 유지**
29
+ > ⚠️ `[DONE]` 상태 전환 시 **체크박스도 반드시 체크**합니다.
29
30
 
30
31
  상태 전환 시 날짜도 함께 기록 (YYYY-MM-DD)
31
32