@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.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/agents/code-reviewer.md +138 -123
- package/templates/.claude/agents/dependency-manager.md +99 -84
- package/templates/.claude/agents/deployment-validator.md +70 -55
- package/templates/.claude/agents/git-operator.md +78 -63
- package/templates/.claude/agents/implementation-executor.md +109 -94
- package/templates/.claude/agents/ko-to-en-translator.md +74 -0
- package/templates/.claude/agents/lint-fixer.md +93 -78
- package/templates/.claude/agents/refactor-advisor.md +136 -121
- package/templates/.claude/commands/agent-creator.md +199 -184
- package/templates/.claude/commands/bug-fix.md +207 -192
- package/templates/.claude/commands/command-creator.md +69 -53
- package/templates/.claude/commands/docs-creator.md +72 -56
- package/templates/.claude/commands/docs-refactor.md +41 -25
- package/templates/.claude/commands/execute.md +27 -11
- package/templates/.claude/commands/git-all.md +46 -31
- package/templates/.claude/commands/git-session.md +57 -41
- package/templates/.claude/commands/git.md +49 -33
- package/templates/.claude/commands/lint-fix.md +153 -137
- package/templates/.claude/commands/lint-init.md +76 -60
- package/templates/.claude/commands/plan.md +275 -259
- package/templates/.claude/commands/prd.md +39 -23
- package/templates/.claude/commands/pre-deploy.md +124 -108
- package/templates/.claude/commands/refactor.md +162 -146
- package/templates/.claude/commands/version-update.md +32 -16
- package/templates/hono/CLAUDE.md +28 -27
- package/templates/hono/docs/architecture.md +24 -24
- package/templates/hono/docs/deployment/cloudflare.md +18 -18
- package/templates/hono/docs/deployment/docker.md +13 -13
- package/templates/hono/docs/deployment/index.md +19 -19
- package/templates/hono/docs/deployment/railway.md +32 -32
- package/templates/hono/docs/deployment/vercel.md +29 -29
- package/templates/hono/docs/guides/conventions.md +57 -57
- package/templates/hono/docs/guides/env-setup.md +47 -47
- package/templates/hono/docs/guides/getting-started.md +27 -27
- package/templates/hono/docs/library/hono/error-handling.md +11 -11
- package/templates/hono/docs/library/hono/index.md +4 -4
- package/templates/hono/docs/library/hono/middleware.md +18 -18
- package/templates/hono/docs/library/hono/rpc.md +7 -7
- package/templates/hono/docs/library/hono/validation.md +6 -6
- package/templates/hono/docs/library/prisma/cloudflare-d1.md +29 -29
- package/templates/hono/docs/library/prisma/config.md +16 -16
- package/templates/hono/docs/library/prisma/index.md +32 -32
- package/templates/hono/docs/library/t3-env/index.md +22 -22
- package/templates/hono/docs/library/zod/index.md +31 -31
- package/templates/nextjs/CLAUDE.md +54 -51
- package/templates/nextjs/docs/architecture.md +812 -0
- package/templates/nextjs/docs/design.md +183 -183
- package/templates/nextjs/docs/guides/conventions.md +86 -86
- package/templates/nextjs/docs/guides/getting-started.md +28 -28
- package/templates/nextjs/docs/guides/routes.md +32 -32
- package/templates/nextjs/docs/library/better-auth/index.md +70 -70
- package/templates/nextjs/docs/library/nextjs/app-router.md +43 -43
- package/templates/nextjs/docs/library/nextjs/caching.md +73 -73
- package/templates/nextjs/docs/library/nextjs/index.md +51 -51
- package/templates/nextjs/docs/library/nextjs/middleware.md +41 -41
- package/templates/nextjs/docs/library/nextjs/route-handlers.md +31 -31
- package/templates/nextjs/docs/library/nextjs/server-actions.md +34 -34
- package/templates/nextjs/docs/library/prisma/cloudflare-d1.md +20 -20
- package/templates/nextjs/docs/library/prisma/config.md +18 -18
- package/templates/nextjs/docs/library/prisma/crud.md +17 -17
- package/templates/nextjs/docs/library/prisma/index.md +18 -18
- package/templates/nextjs/docs/library/prisma/relations.md +16 -16
- package/templates/nextjs/docs/library/prisma/schema.md +23 -23
- package/templates/nextjs/docs/library/prisma/setup.md +6 -6
- package/templates/nextjs/docs/library/prisma/transactions.md +10 -10
- package/templates/nextjs/docs/library/tanstack-query/index.md +6 -6
- package/templates/nextjs/docs/library/tanstack-query/invalidation.md +20 -20
- package/templates/nextjs/docs/library/tanstack-query/optimistic-updates.md +4 -4
- package/templates/nextjs/docs/library/tanstack-query/use-mutation.md +15 -15
- package/templates/nextjs/docs/library/tanstack-query/use-query.md +22 -22
- package/templates/nextjs/docs/library/zod/complex-types.md +11 -11
- package/templates/nextjs/docs/library/zod/index.md +8 -8
- package/templates/nextjs/docs/library/zod/transforms.md +11 -11
- package/templates/nextjs/docs/library/zod/validation.md +9 -9
- package/templates/npx/CLAUDE.md +38 -37
- package/templates/npx/docs/library/commander/index.md +12 -12
- package/templates/npx/docs/library/fs-extra/index.md +9 -9
- package/templates/npx/docs/library/prompts/index.md +3 -3
- package/templates/npx/docs/references/patterns.md +12 -12
- package/templates/tanstack-start/CLAUDE.md +54 -53
- package/templates/tanstack-start/docs/architecture.md +128 -128
- package/templates/tanstack-start/docs/design.md +169 -169
- package/templates/tanstack-start/docs/guides/conventions.md +43 -43
- package/templates/tanstack-start/docs/guides/env-setup.md +35 -35
- package/templates/tanstack-start/docs/guides/getting-started.md +19 -19
- package/templates/tanstack-start/docs/guides/hooks.md +45 -45
- package/templates/tanstack-start/docs/guides/routes.md +54 -54
- package/templates/tanstack-start/docs/guides/services.md +45 -45
- package/templates/tanstack-start/docs/library/better-auth/index.md +68 -68
- package/templates/tanstack-start/docs/library/prisma/cloudflare-d1.md +19 -19
- package/templates/tanstack-start/docs/library/prisma/config.md +16 -16
- package/templates/tanstack-start/docs/library/prisma/crud.md +17 -17
- package/templates/tanstack-start/docs/library/prisma/index.md +17 -17
- package/templates/tanstack-start/docs/library/prisma/relations.md +16 -16
- package/templates/tanstack-start/docs/library/prisma/schema.md +23 -23
- package/templates/tanstack-start/docs/library/prisma/setup.md +6 -6
- package/templates/tanstack-start/docs/library/prisma/transactions.md +10 -10
- package/templates/tanstack-start/docs/library/t3-env/index.md +21 -160
- package/templates/tanstack-start/docs/library/tanstack-query/index.md +6 -6
- package/templates/tanstack-start/docs/library/tanstack-query/invalidation.md +19 -19
- package/templates/tanstack-start/docs/library/tanstack-query/optimistic-updates.md +4 -4
- package/templates/tanstack-start/docs/library/tanstack-query/use-mutation.md +14 -14
- package/templates/tanstack-start/docs/library/tanstack-query/use-query.md +21 -21
- package/templates/tanstack-start/docs/library/tanstack-router/error-handling.md +9 -9
- package/templates/tanstack-start/docs/library/tanstack-router/hooks.md +11 -11
- package/templates/tanstack-start/docs/library/tanstack-router/index.md +18 -18
- package/templates/tanstack-start/docs/library/tanstack-router/navigation.md +17 -17
- package/templates/tanstack-start/docs/library/tanstack-router/route-context.md +5 -5
- package/templates/tanstack-start/docs/library/tanstack-router/search-params.md +10 -10
- package/templates/tanstack-start/docs/library/tanstack-start/auth-patterns.md +8 -8
- package/templates/tanstack-start/docs/library/tanstack-start/index.md +15 -15
- package/templates/tanstack-start/docs/library/tanstack-start/middleware.md +9 -9
- package/templates/tanstack-start/docs/library/tanstack-start/routing.md +6 -6
- package/templates/tanstack-start/docs/library/tanstack-start/server-functions.md +18 -18
- package/templates/tanstack-start/docs/library/tanstack-start/setup.md +4 -4
- package/templates/tanstack-start/docs/library/zod/complex-types.md +11 -11
- package/templates/tanstack-start/docs/library/zod/index.md +8 -8
- package/templates/tanstack-start/docs/library/zod/transforms.md +11 -11
- 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
|
-
>
|
|
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
|
-
|
|
30
|
+
**This command MUST use the @git-operator agent.**
|
|
16
31
|
|
|
17
|
-
### MANDATORY:
|
|
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
|
-
-
|
|
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
|
-
-
|
|
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
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
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
|
-
□
|
|
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
|
-
-
|
|
63
|
-
-
|
|
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
|
-
>
|
|
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
|
-
|
|
31
|
+
**This command must use the @git-operator agent.**
|
|
16
32
|
|
|
17
|
-
### MANDATORY:
|
|
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
|
-
-
|
|
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
|
-
-
|
|
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
|
-
-
|
|
39
|
-
-
|
|
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
|
-
□
|
|
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
|
-
-
|
|
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
|
-
|
|
|
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
|
|
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
|
-
|
|
32
|
+
**This command MUST use the @git-operator agent.**
|
|
17
33
|
|
|
18
|
-
### MANDATORY:
|
|
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
|
-
-
|
|
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
|
-
-
|
|
38
|
-
-
|
|
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
|
-
□
|
|
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
|
-
|
|
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
|
-
|
|
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>
|