ai-sprint-kit 1.1.0 → 1.1.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.
- package/README.md +20 -18
- package/package.json +4 -4
- package/templates/.claude/commands/scan.md +2 -2
- package/templates/.claude/skills/codebase-context/references/refresh-triggers.md +2 -2
- package/templates/README.md +2 -2
- package/templates/docs/user-guide-th.md +1 -1
- package/templates/docs/user-guide.md +2 -2
package/README.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
# AI Sprint
|
|
1
|
+
# AI Sprint Kit
|
|
2
2
|
|
|
3
3
|
**One-command installer for Claude Code autonomous development framework**
|
|
4
4
|
|
|
5
|
+
> **Package name:** `ai-sprint-kit` | **CLI command:** `ai-sprint`
|
|
6
|
+
|
|
5
7
|
## Features
|
|
6
8
|
|
|
7
9
|
- 🤖 **9 Specialized Agents** - Planner, Implementer, Tester, Reviewer, Security, DevOps, Docs, Debugger, Researcher
|
|
@@ -18,13 +20,13 @@
|
|
|
18
20
|
### Quick Start (Recommended)
|
|
19
21
|
|
|
20
22
|
```bash
|
|
21
|
-
npx ai-sprint init
|
|
23
|
+
npx ai-sprint-kit init
|
|
22
24
|
```
|
|
23
25
|
|
|
24
26
|
### Global Installation
|
|
25
27
|
|
|
26
28
|
```bash
|
|
27
|
-
npm install -g ai-sprint
|
|
29
|
+
npm install -g ai-sprint-kit
|
|
28
30
|
ai-sprint init
|
|
29
31
|
```
|
|
30
32
|
|
|
@@ -32,19 +34,19 @@ ai-sprint init
|
|
|
32
34
|
|
|
33
35
|
```bash
|
|
34
36
|
# Install in specific directory
|
|
35
|
-
npx ai-sprint init --dir /path/to/project
|
|
37
|
+
npx ai-sprint-kit init --dir /path/to/project
|
|
36
38
|
|
|
37
39
|
# Force overwrite existing .claude/
|
|
38
|
-
npx ai-sprint init --force
|
|
40
|
+
npx ai-sprint-kit init --force
|
|
39
41
|
|
|
40
42
|
# Skip Python dependencies
|
|
41
|
-
npx ai-sprint init --skip-install
|
|
43
|
+
npx ai-sprint-kit init --skip-install
|
|
42
44
|
|
|
43
45
|
# Scan existing codebase (auto-detected if source exists)
|
|
44
|
-
npx ai-sprint init --scan
|
|
46
|
+
npx ai-sprint-kit init --scan
|
|
45
47
|
|
|
46
48
|
# Skip codebase scanning
|
|
47
|
-
npx ai-sprint init --no-scan
|
|
49
|
+
npx ai-sprint-kit init --no-scan
|
|
48
50
|
```
|
|
49
51
|
|
|
50
52
|
## What Gets Installed
|
|
@@ -179,8 +181,8 @@ ai-sprint list
|
|
|
179
181
|
|
|
180
182
|
```bash
|
|
181
183
|
# Clone repository
|
|
182
|
-
git clone https://github.com/yourusername/ai-sprint
|
|
183
|
-
cd ai-sprint
|
|
184
|
+
git clone https://github.com/yourusername/ai-sprint-kit
|
|
185
|
+
cd ai-sprint-kit
|
|
184
186
|
|
|
185
187
|
# Install dependencies
|
|
186
188
|
npm install
|
|
@@ -201,7 +203,7 @@ claude
|
|
|
201
203
|
### Package Structure
|
|
202
204
|
|
|
203
205
|
```
|
|
204
|
-
ai-sprint/
|
|
206
|
+
ai-sprint-kit/
|
|
205
207
|
├── bin/
|
|
206
208
|
│ └── cli.js # CLI entry point
|
|
207
209
|
├── lib/
|
|
@@ -227,7 +229,7 @@ ai-sprint/
|
|
|
227
229
|
```bash
|
|
228
230
|
mkdir my-project
|
|
229
231
|
cd my-project
|
|
230
|
-
npx ai-sprint init
|
|
232
|
+
npx ai-sprint-kit init
|
|
231
233
|
claude
|
|
232
234
|
/auto "build REST API for todo app"
|
|
233
235
|
```
|
|
@@ -235,7 +237,7 @@ claude
|
|
|
235
237
|
### Example 2: Add to Existing Project
|
|
236
238
|
```bash
|
|
237
239
|
cd existing-project
|
|
238
|
-
npx ai-sprint init
|
|
240
|
+
npx ai-sprint-kit init
|
|
239
241
|
claude
|
|
240
242
|
/secure # Scan existing code
|
|
241
243
|
/review # Review code quality
|
|
@@ -243,7 +245,7 @@ claude
|
|
|
243
245
|
|
|
244
246
|
### Example 3: Security-Focused Development
|
|
245
247
|
```bash
|
|
246
|
-
npx ai-sprint init
|
|
248
|
+
npx ai-sprint-kit init
|
|
247
249
|
claude
|
|
248
250
|
/plan "implement payment processing"
|
|
249
251
|
/code "implement with PCI DSS compliance"
|
|
@@ -256,16 +258,16 @@ claude
|
|
|
256
258
|
### "Command not found: ai-sprint"
|
|
257
259
|
```bash
|
|
258
260
|
# Use npx instead
|
|
259
|
-
npx ai-sprint init
|
|
261
|
+
npx ai-sprint-kit init
|
|
260
262
|
|
|
261
263
|
# Or install globally
|
|
262
|
-
npm install -g ai-sprint
|
|
264
|
+
npm install -g ai-sprint-kit
|
|
263
265
|
```
|
|
264
266
|
|
|
265
267
|
### ".claude/ already exists"
|
|
266
268
|
```bash
|
|
267
269
|
# Use --force to overwrite
|
|
268
|
-
npx ai-sprint init --force
|
|
270
|
+
npx ai-sprint-kit init --force
|
|
269
271
|
```
|
|
270
272
|
|
|
271
273
|
### "Python dependencies failed"
|
|
@@ -291,7 +293,7 @@ MIT License - see LICENSE file
|
|
|
291
293
|
|
|
292
294
|
## Support
|
|
293
295
|
|
|
294
|
-
- Issues: [GitHub Issues](https://github.com/yourusername/ai-sprint/issues)
|
|
296
|
+
- Issues: [GitHub Issues](https://github.com/yourusername/ai-sprint-kit/issues)
|
|
295
297
|
- Documentation: [Framework README](./templates/README.md)
|
|
296
298
|
|
|
297
299
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-sprint-kit",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "CLI installer for autonomous coding agent framework - security-first, production-grade Claude Code setup",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
|
-
"url": "https://github.com/
|
|
28
|
+
"url": "https://github.com/apiasak/ai-sprint-kit.git"
|
|
29
29
|
},
|
|
30
30
|
"bugs": {
|
|
31
|
-
"url": "https://github.com/
|
|
31
|
+
"url": "https://github.com/apiasak/ai-sprint-kit/issues"
|
|
32
32
|
},
|
|
33
|
-
"homepage": "https://github.com/
|
|
33
|
+
"homepage": "https://github.com/apiasak/ai-sprint-kit#readme",
|
|
34
34
|
"files": [
|
|
35
35
|
"bin/",
|
|
36
36
|
"lib/",
|
|
@@ -56,11 +56,11 @@ ls -la ai_context/codebase/ 2>/dev/null || echo "No existing scan found"
|
|
|
56
56
|
|
|
57
57
|
### Step 2: Run Codebase Scan
|
|
58
58
|
|
|
59
|
-
Use the `ai-sprint scan` CLI command or run repomix directly:
|
|
59
|
+
Use the `ai-sprint-kit scan` CLI command or run repomix directly:
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
62
|
# Option A: Use AI Sprint CLI (if available)
|
|
63
|
-
ai-sprint scan
|
|
63
|
+
ai-sprint-kit scan
|
|
64
64
|
|
|
65
65
|
# Option B: Run repomix directly
|
|
66
66
|
npx repomix --compress --style xml -o ai_context/codebase/repomix-output.xml
|
package/templates/README.md
CHANGED
|
@@ -115,7 +115,7 @@ Skills are activated automatically when relevant.
|
|
|
115
115
|
AI Sprint can scan existing codebases to help agents understand the project quickly.
|
|
116
116
|
|
|
117
117
|
### Automatic Scanning
|
|
118
|
-
When you run `ai-sprint init` on a project with existing source code, it automatically scans and generates context documents.
|
|
118
|
+
When you run `ai-sprint-kit init` on a project with existing source code, it automatically scans and generates context documents.
|
|
119
119
|
|
|
120
120
|
### Manual Scanning
|
|
121
121
|
```bash
|
|
@@ -123,7 +123,7 @@ When you run `ai-sprint init` on a project with existing source code, it automat
|
|
|
123
123
|
/scan
|
|
124
124
|
|
|
125
125
|
# Or use CLI directly
|
|
126
|
-
ai-sprint scan
|
|
126
|
+
ai-sprint-kit scan
|
|
127
127
|
```
|
|
128
128
|
|
|
129
129
|
### Output
|
|
@@ -144,7 +144,7 @@ This runs: tests + code review + security scan. Blocks if:
|
|
|
144
144
|
|
|
145
145
|
```bash
|
|
146
146
|
# Install framework
|
|
147
|
-
npx ai-sprint init
|
|
147
|
+
npx ai-sprint-kit init
|
|
148
148
|
|
|
149
149
|
# Scan existing code for issues
|
|
150
150
|
/secure
|
|
@@ -570,7 +570,7 @@ ls .claude/commands/
|
|
|
570
570
|
If missing, reinstall:
|
|
571
571
|
|
|
572
572
|
```bash
|
|
573
|
-
npx ai-sprint init --force
|
|
573
|
+
npx ai-sprint-kit init --force
|
|
574
574
|
```
|
|
575
575
|
|
|
576
576
|
---
|