ccstart 2.1.0 → 3.0.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.
- package/README.md +83 -58
- package/bin/create-project.js +478 -110
- package/package.json +3 -12
- package/template/claude/CLAUDE.md +16 -105
- package/template/claude/agents/README.md +4 -7
- package/template/claude/agents/backend.md +231 -75
- package/template/claude/agents/checker.md +76 -50
- package/template/claude/agents/frontend.md +295 -68
- package/template/claude/agents/planner.md +86 -31
- package/template/claude/hooks/claude-md-reminder.sh +15 -0
- package/template/claude/hooks/ticket-reminder.sh +19 -0
- package/template/claude/skills/create-script/SKILL.md +362 -0
- package/template/claude/skills/design-feature/SKILL.md +3 -3
- package/template/claude/skills/skill-creator/SKILL.md +1 -1
- package/template/claude/agents/blockchain.md +0 -80
- package/template/claude/agents/coder.md +0 -45
- package/template/claude/agents/researcher.md +0 -55
- package/template/claude/agents/shadcn.md +0 -105
- package/template/claude/docs/ROADMAP.md +0 -64
- package/template/claude/docs/agent-orchestration.md +0 -152
- package/template/claude/skills/design-principles/skill.md +0 -237
package/README.md
CHANGED
|
@@ -5,57 +5,54 @@
|
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
[](https://www.npmjs.com/package/ccstart)
|
|
7
7
|
|
|
8
|
-
Quick setup for Claude Code projects with built-in agents,
|
|
8
|
+
Quick setup for Claude Code projects with built-in agents, skills, and tickets.
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
#
|
|
14
|
-
npx ccstart
|
|
13
|
+
# To set up in a specific directory
|
|
14
|
+
npx ccstart <project directory>
|
|
15
15
|
|
|
16
16
|
# Setup in current directory
|
|
17
17
|
npx ccstart .
|
|
18
18
|
|
|
19
19
|
# Install globally (optional)
|
|
20
20
|
npm install -g ccstart
|
|
21
|
-
ccstart
|
|
21
|
+
ccstart <project directory>
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
## What
|
|
25
|
-
|
|
26
|
-
- **CLAUDE.md** - Project instructions for Claude (references claude/ subdirectories)
|
|
27
|
-
- **claude/** - All Claude-related files in one organized directory:
|
|
28
|
-
- **agents/** - 8 specialized AI agents (planner, coder, checker, researcher, etc.)
|
|
29
|
-
- **tickets/** - Task tracking system with ticket templates
|
|
30
|
-
- **plans/** - Project planning documents
|
|
31
|
-
- **docs/** - ROADMAP.md and agent orchestration workflows
|
|
32
|
-
- **.claude/** - Claude Code configuration (created automatically):
|
|
33
|
-
- **agents/** - Selected agents for Claude Code integration
|
|
34
|
-
- **commands/** - Custom slash commands including `/update-claude-md`
|
|
35
|
-
- **hooks/** - Automatic workflow detection
|
|
36
|
-
- **settings.json.example** - Hook configuration
|
|
37
|
-
|
|
38
|
-
## Key Features
|
|
39
|
-
|
|
40
|
-
- 🎯 **Interactive Agent Selection** - Choose which agents to include during setup
|
|
41
|
-
- 🔄 **Agent Orchestration Workflows** - Pre-defined workflows that coordinate multiple agents
|
|
42
|
-
- 🔒 **Smart Conflict Resolution** - Handle existing files with skip/rename/overwrite options
|
|
43
|
-
- 📁 **Auto-detects Claude Code** - Creates .claude directory structure automatically
|
|
44
|
-
- 🏃 **Dry Run Mode** - Preview changes before applying them
|
|
45
|
-
- ⚡ **Force Mode** - Skip all prompts for automated workflows
|
|
46
|
-
- 🎭 **Workflow Commands** - Execute complex workflows with single commands
|
|
47
|
-
- 🪝 **Intelligent Hooks** - Automatically detect task patterns and suggest workflows
|
|
48
|
-
|
|
49
|
-
## Quick Start
|
|
50
|
-
|
|
51
|
-
```bash
|
|
52
|
-
npx ccstart my-project
|
|
53
|
-
cd my-project
|
|
24
|
+
## What You Get
|
|
54
25
|
|
|
55
|
-
|
|
56
|
-
|
|
26
|
+
```
|
|
27
|
+
my-project/
|
|
28
|
+
├── CLAUDE.md # Project instructions for Claude
|
|
29
|
+
├── claude/
|
|
30
|
+
│ └── tickets/ # Task tracking system
|
|
31
|
+
└── .claude/
|
|
32
|
+
├── agents/ # Agents for Claude Code integration
|
|
33
|
+
├── skills/ # Skills for Claude Code integration
|
|
34
|
+
└── hooks/ # Hooks for Claude Code integration
|
|
57
35
|
```
|
|
58
36
|
|
|
37
|
+
## The Workflow
|
|
38
|
+
|
|
39
|
+
### How Claude Uses Your Project
|
|
40
|
+
|
|
41
|
+
1. **CLAUDE.md** provides context and instructions
|
|
42
|
+
2. **Agents** handle specialized tasks:
|
|
43
|
+
- `planner` - Strategic planning and task breakdown
|
|
44
|
+
- `checker` - Quality assurance and code review
|
|
45
|
+
- `backend` - Backend architecture and API design
|
|
46
|
+
- `frontend` - Frontend architecture and UI design
|
|
47
|
+
3. **Skills** automate common workflows:
|
|
48
|
+
- `/commit` - Conventional commits
|
|
49
|
+
- `/create-pr` - Structured pull requests
|
|
50
|
+
- `/create-ticket` - Task ticket creation
|
|
51
|
+
- `/design-feature` - Feature design phases
|
|
52
|
+
- `/skill-creator` - Create new skills
|
|
53
|
+
- `/update-claude-md` - Update CLAUDE.md sections
|
|
54
|
+
4. **Tickets** track tasks with status emojis
|
|
55
|
+
|
|
59
56
|
## Command Line Options
|
|
60
57
|
|
|
61
58
|
```bash
|
|
@@ -75,33 +72,61 @@ Examples:
|
|
|
75
72
|
ccstart --agents # Preview available agents
|
|
76
73
|
```
|
|
77
74
|
|
|
78
|
-
##
|
|
75
|
+
## Interactive Setup
|
|
79
76
|
|
|
80
|
-
|
|
77
|
+
When you run `ccstart`, you'll be guided through three selection prompts:
|
|
81
78
|
|
|
82
|
-
|
|
83
|
-
- **Bug Fix** → Researcher → Coder → Checker
|
|
84
|
-
- **API Development** → Planner → Backend → Frontend → Checker
|
|
85
|
-
- **Refactoring** → Researcher → Planner → Coder → Checker
|
|
86
|
-
- **UI Components** → Frontend → Shadcn → Checker
|
|
87
|
-
- **Quality Assurance** → Researcher → Checker → Coder → Checker
|
|
79
|
+
### Agent Selection
|
|
88
80
|
|
|
89
|
-
|
|
81
|
+
```
|
|
82
|
+
? Choose your agents: (Press <space> to select, <a> to toggle all)
|
|
83
|
+
❯◯ planner
|
|
84
|
+
Strategic planning and task breakdown specialist
|
|
85
|
+
◯ checker
|
|
86
|
+
Quality assurance and code review specialist
|
|
87
|
+
◯ backend
|
|
88
|
+
Backend architecture and API design specialist
|
|
89
|
+
◯ frontend
|
|
90
|
+
Frontend architecture and UI design specialist
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Skill Selection
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
? Choose your skills: (Press <space> to select, <a> to toggle all)
|
|
97
|
+
❯◯ commit
|
|
98
|
+
Generate and execute git commits following conventional commit format
|
|
99
|
+
◯ create-pr
|
|
100
|
+
Create GitHub pull requests with properly structured descriptions
|
|
101
|
+
◯ create-ticket
|
|
102
|
+
Create task tickets with proper numbering and update ticket-list.md
|
|
103
|
+
◯ design-feature
|
|
104
|
+
Guide feature development through requirements and design phases
|
|
105
|
+
◯ skill-creator
|
|
106
|
+
Guide for creating new skills
|
|
107
|
+
◯ update-claude-md
|
|
108
|
+
Update CLAUDE.md sections through interactive Q&A
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Use `--all-agents` to skip agent selection and include all agents.
|
|
90
112
|
|
|
91
|
-
##
|
|
113
|
+
## Key Features
|
|
92
114
|
|
|
93
|
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
115
|
+
- **Interactive Agent & Skill Selection** - Choose which agents and skills to include during setup
|
|
116
|
+
- **Smart Conflict Resolution** - Handle existing files with skip/rename/overwrite options
|
|
117
|
+
- **Auto-detects Claude Code** - Creates .claude directory structure automatically
|
|
118
|
+
- **Dry Run Mode** - Preview changes before applying them
|
|
119
|
+
- **Force Mode** - Skip all prompts for automated workflows
|
|
96
120
|
|
|
97
|
-
|
|
98
|
-
Hooks automatically detect task patterns and suggest appropriate workflows:
|
|
99
|
-
- Feature requests → suggests `/workflow-feature`
|
|
100
|
-
- Bug reports → suggests `/workflow-bug`
|
|
101
|
-
- API tasks → suggests `/workflow-api`
|
|
102
|
-
- And more! (QA, refactoring, UI components, blockchain)
|
|
121
|
+
## Quick Start
|
|
103
122
|
|
|
104
|
-
|
|
123
|
+
```bash
|
|
124
|
+
npx ccstart my-project
|
|
125
|
+
cd my-project
|
|
126
|
+
|
|
127
|
+
# Edit CLAUDE.md with your project details
|
|
128
|
+
# Start using Claude Code with pre-configured agents and workflows
|
|
129
|
+
```
|
|
105
130
|
|
|
106
131
|
## Local Development
|
|
107
132
|
|
|
@@ -120,8 +145,8 @@ npm unlink -g ccstart
|
|
|
120
145
|
|
|
121
146
|
## Credits
|
|
122
147
|
|
|
123
|
-
Born from our discussions in TechOverflow with [vichannnnn](https://github.com/vichannnnn)
|
|
148
|
+
Born from our discussions in TechOverflow with [vichannnnn](https://github.com/vichannnnn) and [MrMarciaOng](https://github.com/MrMarciaOng).
|
|
124
149
|
|
|
125
150
|
## License
|
|
126
151
|
|
|
127
|
-
MIT
|
|
152
|
+
MIT
|