@yeongjaeyou/claude-code-config 0.19.0 → 0.20.0
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.
|
@@ -33,8 +33,13 @@ gh issue view $ISSUE_NUMBER --json title,body,comments,milestone
|
|
|
33
33
|
|
|
34
34
|
### 3. Create Branch
|
|
35
35
|
|
|
36
|
+
**Branch naming**: `{type}/{issue-number}-{short-description}`
|
|
37
|
+
- `type`: From labels (`bug`->`fix`, `enhancement`->`feat`) or default `feat`
|
|
38
|
+
- `short-description`: Slugified title (lowercase, hyphens, max 50 chars)
|
|
39
|
+
|
|
36
40
|
```bash
|
|
37
|
-
|
|
41
|
+
# Example: fix/42-login-validation or feat/15-dark-mode
|
|
42
|
+
git checkout -b $BRANCH_NAME main
|
|
38
43
|
git submodule update --init --recursive
|
|
39
44
|
```
|
|
40
45
|
|
|
@@ -24,7 +24,11 @@ Act as an expert developer who systematically analyzes and resolves GitHub issue
|
|
|
24
24
|
4. If misaligned, ask user for clarification before proceeding
|
|
25
25
|
- If no plan file, continue to next step
|
|
26
26
|
|
|
27
|
-
3. **Create Branch**: Create and checkout a new branch
|
|
27
|
+
3. **Create Branch**: Create and checkout a new branch from `main` or `master` branch.
|
|
28
|
+
- **Branch naming convention**: `{type}/{issue-number}-{short-description}`
|
|
29
|
+
- `type`: Infer from issue labels (`bug` -> `fix`, `enhancement`/`feature` -> `feat`) or title prefix. Default to `feat` if unclear.
|
|
30
|
+
- `short-description`: Slugify issue title (lowercase, spaces to hyphens, max 50 chars, remove special chars)
|
|
31
|
+
- Examples: `fix/42-login-validation-error`, `feat/15-add-dark-mode`, `refactor/8-cleanup-auth`
|
|
28
32
|
- **Initialize submodules**: When using worktree, run `git submodule update --init --recursive`
|
|
29
33
|
|
|
30
34
|
4. **Update GitHub Project Status (Optional)**
|
|
@@ -111,7 +111,7 @@ Ask via AskUserQuestion about local branch deletion:
|
|
|
111
111
|
|
|
112
112
|
```bash
|
|
113
113
|
# If deletion desired
|
|
114
|
-
git branch -d <headRefName> # e.g.,
|
|
114
|
+
git branch -d <headRefName> # e.g., fix/1-login-bug
|
|
115
115
|
```
|
|
116
116
|
|
|
117
117
|
### 7. Check Next Task
|
|
@@ -171,7 +171,7 @@ TaskMaster Status:
|
|
|
171
171
|
- Subtasks: all complete (1.1, 1.2, 1.3)
|
|
172
172
|
|
|
173
173
|
Cleanup:
|
|
174
|
-
- [x] Local branch deleted:
|
|
174
|
+
- [x] Local branch deleted: {type}/<N>-{slug}
|
|
175
175
|
- [x] TaskMaster status updated
|
|
176
176
|
- [ ] CLAUDE.md updated (no changes)
|
|
177
177
|
- [ ] AGENTS.md updated (no changes / not found)
|
|
@@ -132,12 +132,13 @@ task-master show $TASK_ID
|
|
|
132
132
|
```bash
|
|
133
133
|
# Create new branch from main or master
|
|
134
134
|
git checkout main && git pull origin main
|
|
135
|
-
git checkout -b
|
|
135
|
+
git checkout -b {type}/$ISSUE_NUMBER-{short-description}
|
|
136
136
|
```
|
|
137
137
|
|
|
138
|
-
**Branch naming convention:**
|
|
139
|
-
- `
|
|
140
|
-
- `
|
|
138
|
+
**Branch naming convention:** `{type}/{issue-number}-{short-description}`
|
|
139
|
+
- `type`: From labels (`bug`->`fix`, `enhancement`->`feat`) or default `feat`
|
|
140
|
+
- `short-description`: Slugified title (lowercase, hyphens, max 50 chars)
|
|
141
|
+
- Examples: `fix/1-login-validation`, `feat/13-dark-mode`
|
|
141
142
|
|
|
142
143
|
### 5. Process Subtasks Sequentially
|
|
143
144
|
|
|
@@ -196,8 +197,8 @@ git commit -m "feat: [Task $TASK_ID] Task title
|
|
|
196
197
|
Task Master reference: task $TASK_ID
|
|
197
198
|
Closes #$ISSUE_NUMBER"
|
|
198
199
|
|
|
199
|
-
# Push
|
|
200
|
-
git push -u origin
|
|
200
|
+
# Push (use the branch name created in step 4)
|
|
201
|
+
git push -u origin $BRANCH_NAME
|
|
201
202
|
```
|
|
202
203
|
|
|
203
204
|
### 8. Create PR
|
|
@@ -7,7 +7,7 @@ Reference for different ID formats used across GitHub and TaskMaster.
|
|
|
7
7
|
| Type | Format | Example |
|
|
8
8
|
|------|--------|---------|
|
|
9
9
|
| PR/Issue number | `#N` | `#1`, `#13` |
|
|
10
|
-
| Branch | `
|
|
10
|
+
| Branch | `{type}/{N}-{slug}` | `fix/1-login-bug`, `feat/13-dark-mode` |
|
|
11
11
|
|
|
12
12
|
> Note: PRs and Issues share the same namespace in GitHub.
|
|
13
13
|
|