@kood/claude-code 0.3.7 → 0.3.9

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