@kood/claude-code 0.3.6 → 0.3.8

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 (120) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
  3. package/templates/.claude/agents/code-reviewer.md +124 -124
  4. package/templates/.claude/agents/dependency-manager.md +85 -85
  5. package/templates/.claude/agents/deployment-validator.md +56 -56
  6. package/templates/.claude/agents/git-operator.md +64 -64
  7. package/templates/.claude/agents/implementation-executor.md +95 -95
  8. package/templates/.claude/agents/ko-to-en-translator.md +74 -0
  9. package/templates/.claude/agents/lint-fixer.md +78 -78
  10. package/templates/.claude/agents/refactor-advisor.md +122 -122
  11. package/templates/.claude/commands/agent-creator.md +185 -185
  12. package/templates/.claude/commands/bug-fix.md +193 -193
  13. package/templates/.claude/commands/command-creator.md +54 -54
  14. package/templates/.claude/commands/docs-creator.md +57 -57
  15. package/templates/.claude/commands/docs-refactor.md +26 -26
  16. package/templates/.claude/commands/execute.md +12 -12
  17. package/templates/.claude/commands/git-all.md +32 -32
  18. package/templates/.claude/commands/git-session.md +42 -42
  19. package/templates/.claude/commands/git.md +34 -34
  20. package/templates/.claude/commands/lint-fix.md +138 -138
  21. package/templates/.claude/commands/lint-init.md +61 -61
  22. package/templates/.claude/commands/plan.md +260 -260
  23. package/templates/.claude/commands/prd.md +24 -24
  24. package/templates/.claude/commands/pre-deploy.md +109 -109
  25. package/templates/.claude/commands/refactor.md +147 -147
  26. package/templates/.claude/commands/version-update.md +17 -17
  27. package/templates/hono/CLAUDE.md +27 -27
  28. package/templates/hono/docs/architecture.md +24 -24
  29. package/templates/hono/docs/deployment/cloudflare.md +18 -18
  30. package/templates/hono/docs/deployment/docker.md +13 -13
  31. package/templates/hono/docs/deployment/index.md +19 -19
  32. package/templates/hono/docs/deployment/railway.md +32 -32
  33. package/templates/hono/docs/deployment/vercel.md +29 -29
  34. package/templates/hono/docs/guides/conventions.md +57 -57
  35. package/templates/hono/docs/guides/env-setup.md +47 -47
  36. package/templates/hono/docs/guides/getting-started.md +27 -27
  37. package/templates/hono/docs/library/hono/error-handling.md +11 -11
  38. package/templates/hono/docs/library/hono/index.md +4 -4
  39. package/templates/hono/docs/library/hono/middleware.md +18 -18
  40. package/templates/hono/docs/library/hono/rpc.md +7 -7
  41. package/templates/hono/docs/library/hono/validation.md +6 -6
  42. package/templates/hono/docs/library/prisma/cloudflare-d1.md +29 -29
  43. package/templates/hono/docs/library/prisma/config.md +16 -16
  44. package/templates/hono/docs/library/prisma/index.md +32 -32
  45. package/templates/hono/docs/library/t3-env/index.md +22 -22
  46. package/templates/hono/docs/library/zod/index.md +31 -31
  47. package/templates/nextjs/CLAUDE.md +228 -0
  48. package/templates/nextjs/docs/design.md +558 -0
  49. package/templates/nextjs/docs/guides/conventions.md +343 -0
  50. package/templates/nextjs/docs/guides/getting-started.md +367 -0
  51. package/templates/nextjs/docs/guides/routes.md +342 -0
  52. package/templates/nextjs/docs/library/better-auth/index.md +541 -0
  53. package/templates/nextjs/docs/library/nextjs/app-router.md +269 -0
  54. package/templates/nextjs/docs/library/nextjs/caching.md +351 -0
  55. package/templates/nextjs/docs/library/nextjs/index.md +291 -0
  56. package/templates/nextjs/docs/library/nextjs/middleware.md +391 -0
  57. package/templates/nextjs/docs/library/nextjs/route-handlers.md +382 -0
  58. package/templates/nextjs/docs/library/nextjs/server-actions.md +366 -0
  59. package/templates/nextjs/docs/library/prisma/cloudflare-d1.md +76 -0
  60. package/templates/nextjs/docs/library/prisma/config.md +77 -0
  61. package/templates/nextjs/docs/library/prisma/crud.md +90 -0
  62. package/templates/nextjs/docs/library/prisma/index.md +73 -0
  63. package/templates/nextjs/docs/library/prisma/relations.md +69 -0
  64. package/templates/nextjs/docs/library/prisma/schema.md +98 -0
  65. package/templates/nextjs/docs/library/prisma/setup.md +49 -0
  66. package/templates/nextjs/docs/library/prisma/transactions.md +50 -0
  67. package/templates/nextjs/docs/library/tanstack-query/index.md +66 -0
  68. package/templates/nextjs/docs/library/tanstack-query/invalidation.md +54 -0
  69. package/templates/nextjs/docs/library/tanstack-query/optimistic-updates.md +77 -0
  70. package/templates/nextjs/docs/library/tanstack-query/use-mutation.md +63 -0
  71. package/templates/nextjs/docs/library/tanstack-query/use-query.md +70 -0
  72. package/templates/nextjs/docs/library/zod/complex-types.md +61 -0
  73. package/templates/nextjs/docs/library/zod/index.md +56 -0
  74. package/templates/nextjs/docs/library/zod/transforms.md +51 -0
  75. package/templates/nextjs/docs/library/zod/validation.md +70 -0
  76. package/templates/npx/CLAUDE.md +37 -37
  77. package/templates/npx/docs/library/commander/index.md +12 -12
  78. package/templates/npx/docs/library/fs-extra/index.md +9 -9
  79. package/templates/npx/docs/library/prompts/index.md +3 -3
  80. package/templates/npx/docs/references/patterns.md +12 -12
  81. package/templates/tanstack-start/CLAUDE.md +53 -49
  82. package/templates/tanstack-start/docs/architecture.md +128 -128
  83. package/templates/tanstack-start/docs/design.md +169 -169
  84. package/templates/tanstack-start/docs/guides/conventions.md +43 -43
  85. package/templates/tanstack-start/docs/guides/env-setup.md +35 -35
  86. package/templates/tanstack-start/docs/guides/getting-started.md +19 -19
  87. package/templates/tanstack-start/docs/guides/hooks.md +63 -35
  88. package/templates/tanstack-start/docs/guides/routes.md +61 -42
  89. package/templates/tanstack-start/docs/guides/services.md +45 -45
  90. package/templates/tanstack-start/docs/library/better-auth/index.md +68 -68
  91. package/templates/tanstack-start/docs/library/prisma/cloudflare-d1.md +19 -19
  92. package/templates/tanstack-start/docs/library/prisma/config.md +16 -16
  93. package/templates/tanstack-start/docs/library/prisma/crud.md +17 -17
  94. package/templates/tanstack-start/docs/library/prisma/index.md +17 -17
  95. package/templates/tanstack-start/docs/library/prisma/relations.md +16 -16
  96. package/templates/tanstack-start/docs/library/prisma/schema.md +23 -23
  97. package/templates/tanstack-start/docs/library/prisma/setup.md +6 -6
  98. package/templates/tanstack-start/docs/library/prisma/transactions.md +10 -10
  99. package/templates/tanstack-start/docs/library/t3-env/index.md +21 -160
  100. package/templates/tanstack-start/docs/library/tanstack-query/index.md +6 -6
  101. package/templates/tanstack-start/docs/library/tanstack-query/invalidation.md +19 -19
  102. package/templates/tanstack-start/docs/library/tanstack-query/optimistic-updates.md +4 -4
  103. package/templates/tanstack-start/docs/library/tanstack-query/use-mutation.md +14 -14
  104. package/templates/tanstack-start/docs/library/tanstack-query/use-query.md +21 -21
  105. package/templates/tanstack-start/docs/library/tanstack-router/error-handling.md +9 -9
  106. package/templates/tanstack-start/docs/library/tanstack-router/hooks.md +11 -11
  107. package/templates/tanstack-start/docs/library/tanstack-router/index.md +18 -18
  108. package/templates/tanstack-start/docs/library/tanstack-router/navigation.md +17 -17
  109. package/templates/tanstack-start/docs/library/tanstack-router/route-context.md +5 -5
  110. package/templates/tanstack-start/docs/library/tanstack-router/search-params.md +10 -10
  111. package/templates/tanstack-start/docs/library/tanstack-start/auth-patterns.md +8 -8
  112. package/templates/tanstack-start/docs/library/tanstack-start/index.md +15 -15
  113. package/templates/tanstack-start/docs/library/tanstack-start/middleware.md +9 -9
  114. package/templates/tanstack-start/docs/library/tanstack-start/routing.md +6 -6
  115. package/templates/tanstack-start/docs/library/tanstack-start/server-functions.md +18 -18
  116. package/templates/tanstack-start/docs/library/tanstack-start/setup.md +4 -4
  117. package/templates/tanstack-start/docs/library/zod/complex-types.md +11 -11
  118. package/templates/tanstack-start/docs/library/zod/index.md +8 -8
  119. package/templates/tanstack-start/docs/library/zod/transforms.md +11 -11
  120. package/templates/tanstack-start/docs/library/zod/validation.md +9 -9
@@ -1,54 +1,54 @@
1
1
  ---
2
- description: 현재 세션에서 수정한 파일만 커밋 푸시
2
+ description: Commit and push only files modified in the current session
3
3
  ---
4
4
 
5
5
  # Git Session Command
6
6
 
7
- > @git-operator 에이전트를 사용하여 현재 세션 파일만 선택적으로 커밋하고 푸시.
7
+ > Use the @git-operator agent to selectively commit and push only files modified in the current session.
8
8
 
9
9
  ---
10
10
 
11
11
  <critical_requirements>
12
12
 
13
- ## ⚠️ CRITICAL: 작업 시작 필수 확인
13
+ ## ⚠️ CRITICAL: Required checks before proceeding
14
14
 
15
- **이 커맨드는 반드시 @git-operator 에이전트를 사용해야 합니다.**
15
+ **This command must use the @git-operator agent.**
16
16
 
17
- ### MANDATORY: Task 도구로 @git-operator 호출
17
+ ### MANDATORY: Call @git-operator with Task tool
18
18
 
19
19
  ```typescript
20
20
  Task({
21
21
  subagent_type: 'git-operator',
22
- description: '세션 파일만 커밋 푸시',
22
+ description: 'Commit and push session files only',
23
23
  prompt: `
24
- 세션 커밋 모드:
25
- - 현재 세션 관련 파일만 선택적 커밋
26
- - 반드시 푸시 (git push)
27
- - 이전 세션의 미완성 작업은 제외
24
+ Session commit mode:
25
+ - Selectively commit only files related to current session
26
+ - Must push (git push)
27
+ - Exclude incomplete work from previous sessions
28
28
  `
29
29
  })
30
30
  ```
31
31
 
32
- **❌ 절대 금지:**
33
- - Bash 도구로 git 명령 직접 실행
34
- - @git-operator 없이 커밋/푸시 수행
35
- - 커맨드 내에서 직접 파일 분석
32
+ **❌ Absolutely forbidden:**
33
+ - Execute git commands directly with Bash tool
34
+ - Perform commit/push without @git-operator
35
+ - Analyze files directly in command
36
36
 
37
- **✅ 필수:**
38
- - Task 도구로 @git-operator 에이전트 호출
39
- - 모든 git 작업을 에이전트에 위임
40
- - 현재 세션 파일만 선택
37
+ **✅ Required:**
38
+ - Call @git-operator agent with Task tool
39
+ - Delegate all git work to agent
40
+ - Select only current session files
41
41
 
42
42
  ---
43
43
 
44
- **진행 자가 점검:**
44
+ **Self-check before proceeding:**
45
45
  ```text
46
- □ Task 도구 사용 준비?
47
- □ @git-operator 에이전트로 작업 위임?
48
- Bash로 git 직접 실행 함?
46
+ □ Task tool ready to use?
47
+ Delegating work to @git-operator agent?
48
+ Not executing git commands directly with Bash?
49
49
  ```
50
50
 
51
- **⚠️ 체크리스트를 통과하지 않으면 작업을 시작하지 마세요.**
51
+ **⚠️ Do not start if checklist is not complete.**
52
52
 
53
53
  </critical_requirements>
54
54
 
@@ -56,10 +56,10 @@ Task({
56
56
 
57
57
  <mode>
58
58
 
59
- **세션 커밋 모드**
59
+ **Session commit mode**
60
60
 
61
- - **현재 세션 관련 파일만** 선택적 커밋
62
- - **반드시 푸시** (git push)
61
+ - **Selectively commit only files related to current session**
62
+ - **Must push** (git push)
63
63
 
64
64
  </mode>
65
65
 
@@ -67,11 +67,11 @@ Task({
67
67
 
68
68
  <selection_criteria>
69
69
 
70
- | 포함 | 제외 |
71
- |------|------|
72
- | 현재 세션 관련 파일 | 이전 세션의 미완성 작업 |
73
- | 방금 작업한 파일 | 자동 생성 파일 (lock, cache) |
74
- | 관련 기능의 파일들 | 무관한 변경사항 |
70
+ | Include | Exclude |
71
+ |---------|---------|
72
+ | Files related to current session | Incomplete work from previous sessions |
73
+ | Recently worked files | Auto-generated files (lock, cache) |
74
+ | Related feature files | Unrelated changes |
75
75
 
76
76
  </selection_criteria>
77
77
 
@@ -79,11 +79,11 @@ Task({
79
79
 
80
80
  <workflow>
81
81
 
82
- 1. 모든 변경사항 분석
83
- 2. **현재 세션 관련 파일만 선택**
84
- 3. 논리적 단위로 그룹핑
85
- 4. 그룹별 커밋
86
- 5. git push 실행
82
+ 1. Analyze all changes
83
+ 2. **Select only files related to current session**
84
+ 3. Group into logical units
85
+ 4. Commit each group
86
+ 5. Execute git push
87
87
 
88
88
  </workflow>
89
89
 
@@ -92,15 +92,15 @@ Task({
92
92
  <example>
93
93
 
94
94
  ```bash
95
- # 상황: 로그인 기능 작업 중, 이전 프로필 기능은 미완성
95
+ # Situation: Working on login feature, previous profile feature incomplete
96
96
 
97
97
  git status
98
- # modified: src/auth/login.ts (현재 세션)
99
- # modified: src/auth/logout.ts (현재 세션)
100
- # modified: src/profile/edit.ts (이전 세션)
98
+ # modified: src/auth/login.ts (current session)
99
+ # modified: src/auth/logout.ts (current session)
100
+ # modified: src/profile/edit.ts (previous session)
101
101
 
102
- # ✅ 로그인 관련만 커밋
103
- git add src/auth/login.ts src/auth/logout.ts && git commit -m "feat: 로그인/로그아웃 기능 추가"
102
+ # ✅ Commit only login-related files
103
+ git add src/auth/login.ts src/auth/logout.ts && git commit -m "feat: Add login/logout functionality"
104
104
  git push
105
105
  ```
106
106
 
@@ -1,52 +1,52 @@
1
1
  ---
2
- description: Git 상태 확인 커밋 작업
3
- argument-hint: [push|pull|커밋 지시사항...]
2
+ description: Git status check and commit operations
3
+ argument-hint: [push|pull|commit instructions...]
4
4
  ---
5
5
 
6
6
  # Git Command
7
7
 
8
- > @git-operator 에이전트를 사용하여 Git 작업 수행.
8
+ > Perform Git operations using @git-operator agent.
9
9
 
10
10
  ---
11
11
 
12
12
  <critical_requirements>
13
13
 
14
- ## ⚠️ CRITICAL: 작업 시작 필수 확인
14
+ ## ⚠️ CRITICAL: Verification required before start
15
15
 
16
- **이 커맨드는 반드시 @git-operator 에이전트를 사용해야 합니다.**
16
+ **This command MUST use the @git-operator agent.**
17
17
 
18
- ### MANDATORY: Task 도구로 @git-operator 호출
18
+ ### MANDATORY: Call @git-operator with Task tool
19
19
 
20
20
  ```typescript
21
21
  Task({
22
22
  subagent_type: 'git-operator',
23
- description: 'Git 커밋 작업',
23
+ description: 'Git commit operation',
24
24
  prompt: `
25
- $ARGUMENTS 처리:
26
- [사용자 인수 또는 기본 동작 설명]
25
+ Process $ARGUMENTS:
26
+ [User arguments or default behavior description]
27
27
  `
28
28
  })
29
29
  ```
30
30
 
31
- **❌ 절대 금지:**
32
- - Bash 도구로 git 명령 직접 실행
33
- - @git-operator 없이 커밋/푸시 수행
34
- - 커맨드 내에서 직접 파일 분석
31
+ **❌ Absolutely forbidden:**
32
+ - Execute git commands directly with Bash tool
33
+ - Commit/push without @git-operator
34
+ - Directly analyze files in command
35
35
 
36
- **✅ 필수:**
37
- - Task 도구로 @git-operator 에이전트 호출
38
- - 모든 git 작업을 에이전트에 위임
36
+ **✅ Required:**
37
+ - Call @git-operator agent with Task tool
38
+ - Delegate all git operations to agent
39
39
 
40
40
  ---
41
41
 
42
- **진행 자가 점검:**
42
+ **Self-check before proceeding:**
43
43
  ```text
44
- □ Task 도구 사용 준비?
45
- □ @git-operator 에이전트로 작업 위임?
46
- Bash로 git 직접 실행 안 함?
44
+ □ Task tool ready to use?
45
+ Delegate to @git-operator agent?
46
+ Not executing git directly with Bash?
47
47
  ```
48
48
 
49
- **⚠️ 체크리스트를 통과하지 않으면 작업을 시작하지 마세요.**
49
+ **⚠️ Do not start unless checklist passes.**
50
50
 
51
51
  </critical_requirements>
52
52
 
@@ -54,10 +54,10 @@ Task({
54
54
 
55
55
  <mode>
56
56
 
57
- **기본 모드**: 선택적 커밋
57
+ **Default Mode**: Selective commit
58
58
 
59
- - 일부 변경사항만 커밋 가능
60
- - 푸시는 선택적 (명시 시에만)
59
+ - Commit some changes only
60
+ - Push is optional (only when specified)
61
61
 
62
62
  </mode>
63
63
 
@@ -65,18 +65,18 @@ Task({
65
65
 
66
66
  <arguments>
67
67
 
68
- **$ARGUMENTS 있음**: 해당 지시사항 우선 수행
68
+ **Has $ARGUMENTS**: Execute those instructions first
69
69
 
70
- | 예시 | 동작 |
71
- |------|------|
72
- | `push` | 커밋 푸시 |
73
- | `pull` | git pull 먼저 실행 |
74
- | `로그인 기능만` | 해당 파일만 커밋 |
70
+ | Example | Action |
71
+ |---------|--------|
72
+ | `push` | Commit then push |
73
+ | `pull` | Run git pull first |
74
+ | `login-feature-only` | Commit only that file |
75
75
 
76
- **$ARGUMENTS 없음**: 기본 동작
76
+ **No $ARGUMENTS**: Default behavior
77
77
 
78
- 1. git status, git diff 분석
79
- 2. 논리적 단위로 그룹핑
80
- 3. 선택적 커밋
78
+ 1. Analyze git status, git diff
79
+ 2. Group into logical units
80
+ 3. Selective commit
81
81
 
82
82
  </arguments>