claude-code-starter 0.2.0 → 0.4.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.
Files changed (3) hide show
  1. package/README.md +24 -10
  2. package/dist/cli.js +1968 -206
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Claude Code Starter
2
2
 
3
+ [![CI](https://github.com/cassmtnr/claude-code-starter/actions/workflows/pr-check.yml/badge.svg)](https://github.com/cassmtnr/claude-code-starter/actions/workflows/pr-check.yml)
4
+ [![codecov](https://codecov.io/gh/cassmtnr/claude-code-starter/graph/badge.svg)](https://codecov.io/gh/cassmtnr/claude-code-starter)
5
+ [![npm version](https://img.shields.io/npm/v/claude-code-starter.svg)](https://www.npmjs.com/package/claude-code-starter)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+ [![Node.js](https://img.shields.io/badge/Node.js-18%2B-green.svg)](https://nodejs.org/)
8
+ [![Bun](https://img.shields.io/badge/Bun-compatible-f472b6.svg)](https://bun.sh/)
9
+
3
10
  Intelligent CLI that bootstraps Claude Code configurations tailored to your project's tech stack.
4
11
 
5
12
  ## Quick Start
@@ -39,12 +46,13 @@ Based on your stack, creates:
39
46
 
40
47
  ## Commands
41
48
 
42
- | Command | Description |
43
- | ----------------- | ------------------- |
44
- | `/task <desc>` | Start a new task |
45
- | `/status` | Show current task |
46
- | `/done` | Mark task complete |
47
- | `/analyze <area>` | Deep dive into code |
49
+ | Command | Description |
50
+ | ----------------- | ---------------------------------------- |
51
+ | `/task <desc>` | Start a new task |
52
+ | `/status` | Show current task |
53
+ | `/done` | Mark task complete |
54
+ | `/analyze <area>` | Deep dive into code |
55
+ | `/code-review` | Review changes for quality and security |
48
56
 
49
57
  ## CLI Options
50
58
 
@@ -75,7 +83,7 @@ npx claude-code-starter --help # Show help
75
83
  ✅ Configuration complete! (14 files)
76
84
 
77
85
  Generated for your stack:
78
- 📚 4 skills (pattern-discovery, testing-methodology, nextjs-patterns, ...)
86
+ 📚 9 skills (pattern-discovery, iterative-development, security, nextjs-patterns, ...)
79
87
  🤖 2 agents (code-reviewer, test-writer)
80
88
  📏 2 rules
81
89
  ```
@@ -95,15 +103,21 @@ After running, your project will have:
95
103
  │ ├── task.md
96
104
  │ ├── status.md
97
105
  │ ├── done.md
98
- └── analyze.md
106
+ ├── analyze.md
107
+ │ └── code-review.md
99
108
  ├── rules/ # Code style rules
100
109
  │ ├── typescript.md # (or python.md, etc.)
101
110
  │ └── code-style.md
102
- ├── skills/ # Framework-specific patterns
111
+ ├── skills/ # Methodology guides + patterns
103
112
  │ ├── pattern-discovery.md
104
113
  │ ├── systematic-debugging.md
105
114
  │ ├── testing-methodology.md
106
- └── nextjs-patterns.md # (or fastapi-patterns.md, etc.)
115
+ ├── iterative-development.md
116
+ │ ├── commit-hygiene.md
117
+ │ ├── code-deduplication.md
118
+ │ ├── simplicity-rules.md
119
+ │ ├── security.md
120
+ │ └── nextjs-patterns.md # (framework-specific)
107
121
  └── state/
108
122
  └── task.md # Current task tracking
109
123
  ```