@yeongjaeyou/claude-code-config 0.10.0 → 0.10.1
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.
|
@@ -5,16 +5,20 @@ Break down large work items into manageable, independent issues. Follow project
|
|
|
5
5
|
## Workflow
|
|
6
6
|
|
|
7
7
|
1. Check issue numbers: Run `gh issue list` to view current issue numbers
|
|
8
|
-
2.
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
2. **Discover available components**:
|
|
9
|
+
- Scan `.claude/agents/` for custom agents (read YAML frontmatter)
|
|
10
|
+
- Scan `.claude/skills/` for available skills (read SKILL.md)
|
|
11
|
+
- Check `.mcp.json` for configured MCP servers
|
|
12
|
+
3. Analyze work: Understand core requirements and objectives
|
|
13
|
+
4. Decompose work: Split major tasks into smaller, manageable sub-tasks or issues. **Aim for optimal count over excessive issues (keep it manageable)**
|
|
14
|
+
5. Analyze dependencies: Identify prerequisite tasks
|
|
15
|
+
6. Suggest milestone name: Propose a milestone to group decomposed tasks
|
|
16
|
+
7. Check related PRs (optional): Run `gh pr list --state closed --limit 20` for similar work references (skip if none)
|
|
17
|
+
8. Output decomposed issues: Display issues with proposed milestone name
|
|
18
|
+
9. Ask about GitHub creation: Use AskUserQuestion to let user decide on milestone and issue creation
|
|
15
19
|
- Create milestone: `gh api repos/:owner/:repo/milestones -f title="Milestone Name" -f description="Description"`
|
|
16
20
|
- Assign issues with `--milestone` option
|
|
17
|
-
|
|
21
|
+
10. **Add issues to GitHub Project (optional)**
|
|
18
22
|
- Check for existing projects: `gh project list --owner <owner> --format json`
|
|
19
23
|
- If no project exists: Display "No project found. You can create one with `/gh:init-project`" and skip
|
|
20
24
|
- If project exists: Ask user via AskUserQuestion whether to add issues
|
|
@@ -58,9 +62,99 @@ Examples (vary by project, for reference only):
|
|
|
58
62
|
**Dependencies**:
|
|
59
63
|
- [ ] None or prerequisite issue #number
|
|
60
64
|
|
|
61
|
-
**
|
|
62
|
-
-
|
|
65
|
+
**Execution strategy**:
|
|
66
|
+
- **Pattern**: main-only | sequential | parallel | delegation
|
|
67
|
+
- **Delegate to**: (delegation only) agent name
|
|
68
|
+
- **Skills**: [discovered skills, or none]
|
|
69
|
+
- **MCP**: [discovered MCP servers, or none]
|
|
70
|
+
|
|
71
|
+
**Execution diagram**:
|
|
72
|
+
```
|
|
73
|
+
+------+
|
|
74
|
+
| main |
|
|
75
|
+
+------+
|
|
76
|
+
Skills: none
|
|
77
|
+
MCP: none
|
|
78
|
+
```
|
|
63
79
|
|
|
64
80
|
**References** (optional):
|
|
65
81
|
- Add related PRs if available (e.g., PR #36 - brief description)
|
|
66
82
|
- Omit this section if none
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## Execution Strategy Guide
|
|
87
|
+
|
|
88
|
+
### Component Discovery
|
|
89
|
+
|
|
90
|
+
Before decomposing issues, scan for available components:
|
|
91
|
+
- **Agents**: `.claude/agents/*.md` (extract name, description from YAML frontmatter)
|
|
92
|
+
- **Skills**: `.claude/skills/*/SKILL.md` (extract name, description from YAML frontmatter)
|
|
93
|
+
- **MCP**: `.mcp.json` (extract server names and purposes)
|
|
94
|
+
|
|
95
|
+
### Execution Patterns
|
|
96
|
+
|
|
97
|
+
```
|
|
98
|
+
Pattern A: main-only
|
|
99
|
+
+------+ Skills: /code-explorer, /xlsx
|
|
100
|
+
| main | MCP: serena, context7
|
|
101
|
+
+------+
|
|
102
|
+
|
|
103
|
+
Pattern B: sequential
|
|
104
|
+
+---------+ +------+ Skills: ...
|
|
105
|
+
| explore | --> | main | MCP: ...
|
|
106
|
+
+---------+ +------+
|
|
107
|
+
|
|
108
|
+
Pattern C: parallel
|
|
109
|
+
+---------+
|
|
110
|
+
| explore |--+
|
|
111
|
+
+---------+ | +------+ Skills: ...
|
|
112
|
+
| explore |--+->| main | MCP: ...
|
|
113
|
+
+---------+ | +------+
|
|
114
|
+
| explore |--+
|
|
115
|
+
+---------+
|
|
116
|
+
|
|
117
|
+
Pattern D: delegation
|
|
118
|
+
+------+ +----------------+ Skills: ...
|
|
119
|
+
| main | --> | python-pro | MCP: serena
|
|
120
|
+
+------+ | web-researcher |
|
|
121
|
+
+----------------+
|
|
122
|
+
|
|
123
|
+
Note: main can spawn subagents at any point during execution
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
### Pattern Selection
|
|
127
|
+
|
|
128
|
+
| Situation | Pattern | Example |
|
|
129
|
+
|-----------|---------|---------|
|
|
130
|
+
| Simple fix/change | main-only | Bug fix, single file change |
|
|
131
|
+
| Analysis then implement | sequential | New feature, refactoring |
|
|
132
|
+
| Complex analysis needed | parallel | Large refactor, architecture change |
|
|
133
|
+
| Specialized work | delegation | Python optimization, technical research |
|
|
134
|
+
|
|
135
|
+
### Diagram in Issues
|
|
136
|
+
|
|
137
|
+
Always include an ASCII diagram in the issue body to visualize the execution flow:
|
|
138
|
+
|
|
139
|
+
```
|
|
140
|
+
// main-only
|
|
141
|
+
+------+
|
|
142
|
+
| main |
|
|
143
|
+
+------+
|
|
144
|
+
Skills: /code-review
|
|
145
|
+
MCP: serena
|
|
146
|
+
|
|
147
|
+
// delegation
|
|
148
|
+
+------+ +--------------------+
|
|
149
|
+
| main | --> | deepfake-cv-expert |
|
|
150
|
+
+------+ +--------------------+
|
|
151
|
+
Skills: none
|
|
152
|
+
MCP: none
|
|
153
|
+
|
|
154
|
+
// sequential
|
|
155
|
+
+---------+ +------+
|
|
156
|
+
| explore | --> | main |
|
|
157
|
+
+---------+ +------+
|
|
158
|
+
Skills: ...
|
|
159
|
+
MCP: ...
|
|
160
|
+
```
|
|
@@ -61,6 +61,10 @@ Utilize MCP servers whenever possible:
|
|
|
61
61
|
- `mcpdocs` - Documentation fetching
|
|
62
62
|
- `firecrawl` - Web scraping and search
|
|
63
63
|
|
|
64
|
+
### Agent & Skill Usage
|
|
65
|
+
- 작업에 적합한 agent 또는 skill이 있다면 적극 활용
|
|
66
|
+
- 의도가 명확하면 바로 사용, 불명확하면 제안 후 승인 받기
|
|
67
|
+
|
|
64
68
|
### Code Exploration Strategy
|
|
65
69
|
|
|
66
70
|
#### Parallel Exploration with Multiple Tools
|