ai-sprint-kit 2.1.27 → 2.1.30

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 CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  ## What is AI Sprint?
8
8
 
9
- AI Sprint transforms Claude Code into a team of 12 specialized AI agents with 15 powerful commands. Build production-grade software with security-first, autonomous development.
9
+ AI Sprint transforms Claude Code into a team of 12 specialized AI agents with 17 powerful commands. Build production-grade software with security-first, autonomous development.
10
10
 
11
11
  ## What's New in v2.1
12
12
 
@@ -19,7 +19,7 @@ AI Sprint transforms Claude Code into a team of 12 specialized AI agents with 15
19
19
  ## Features
20
20
 
21
21
  - **12 AI Agents** - planner, implementer, tester, reviewer, security, devops, docs, debugger, researcher, verifier, browser-tester, deployment-smoke
22
- - **15 Commands** - /ai-sprint-plan, /ai-sprint-code, /ai-sprint-test, /ai-sprint-review, /ai-sprint-secure, /ai-sprint-deploy, /ai-sprint-docs, /ai-sprint-debug, /ai-sprint-scan, /ai-sprint-validate, /ai-sprint-browser-test, /ai-sprint-orchestrate, /ai-sprint-setup, /ai-sprint-auto
22
+ - **17 Commands** - /ai-sprint-init, /ai-sprint-plan, /ai-sprint-code, /ai-sprint-test, /ai-sprint-review, /ai-sprint-secure, /ai-sprint-deploy, /ai-sprint-docs, /ai-sprint-debug, /ai-sprint-fix, /ai-sprint-scan, /ai-sprint-validate, /ai-sprint-browser-test, /ai-sprint-orchestrate, /ai-sprint-setup, /ai-sprint-auto, /ai-sprint-ralph
23
23
  - **Automation Hooks** - PostToolUse (auto-format, lint, sound), Stop (final verification), SubagentStart (context injection)
24
24
  - **Memory System** - Persistent context across sessions
25
25
  - **Security-First** - Built-in SAST, secrets scanning, dependency audit
@@ -32,6 +32,8 @@ AI Sprint transforms Claude Code into a team of 12 specialized AI agents with 15
32
32
  npx ai-sprint-kit init
33
33
  ```
34
34
 
35
+ MCP server configuration is prompted during install (defaults to YES - just press Enter).
36
+
35
37
  ## CLI Commands
36
38
 
37
39
  ```bash
@@ -61,7 +63,7 @@ AI Sprint Kit supports 6 MCP (Model Context Protocol) servers:
61
63
  | **Sequential Thinking** | `@modelcontextprotocol/server-sequential-thinking` | None | Complex reasoning |
62
64
  | **Time** | `mcp-server-time` (uvx) | None | Timezone operations |
63
65
 
64
- Configure with: `ai-sprint setup-mcp`
66
+ Configured during install (default YES). Reconfigure: `ai-sprint setup-mcp`
65
67
 
66
68
  ## Requirements
67
69
 
@@ -84,6 +86,7 @@ Visit [ai-sprint-kit.app.data-espresso.com](https://ai-sprint-kit.app.data-espre
84
86
  ## Commands
85
87
 
86
88
  ```
89
+ /ai-sprint-init - Initialize project context (scan + CLAUDE.md)
87
90
  /ai-sprint-plan - Create implementation plans
88
91
  /ai-sprint-code - Generate or refactor code
89
92
  /ai-sprint-test - Generate and run tests
@@ -92,12 +95,14 @@ Visit [ai-sprint-kit.app.data-espresso.com](https://ai-sprint-kit.app.data-espre
92
95
  /ai-sprint-deploy - CI/CD setup and deployment
93
96
  /ai-sprint-docs - Generate documentation
94
97
  /ai-sprint-debug - Investigate issues
98
+ /ai-sprint-fix - Autonomous bug fix cycle
95
99
  /ai-sprint-scan - Index codebase for AI context
96
100
  /ai-sprint-validate - Pre-commit validation
97
101
  /ai-sprint-browser-test - Browser automation tests (Playwright)
98
102
  /ai-sprint-orchestrate - Multi-session coordination
99
103
  /ai-sprint-setup - Configuration wizard
100
104
  /ai-sprint-auto - Full autonomous development cycle
105
+ /ai-sprint-ralph - Persistent loop until task complete
101
106
  ```
102
107
 
103
108
  ## Support
package/bin/ai-sprint.js CHANGED
@@ -186,8 +186,8 @@ program
186
186
  console.log(chalk.gray('MCP servers enhance AI capabilities with web search,'));
187
187
  console.log(chalk.gray('library docs, and multimodal AI features.\n'));
188
188
 
189
- const setupMcp = await question('Configure MCP servers now? (y/N): ');
190
- if (setupMcp.toLowerCase() === 'y') {
189
+ const setupMcp = await question('Configure MCP servers now? (Y/n): ');
190
+ if (setupMcp.toLowerCase() !== 'n') {
191
191
  console.log();
192
192
  const mcpScript = path.join(targetDir, '.claude', 'scripts', 'setup-mcp.cjs');
193
193
  try {
@@ -12,12 +12,12 @@ function createReadline() {
12
12
  }
13
13
 
14
14
  /**
15
- * Prompt user with a yes/no question
15
+ * Prompt user with a yes/no question (defaults to yes)
16
16
  */
17
17
  function promptQuestion(rl, question) {
18
18
  return new Promise((resolve) => {
19
- rl.question(`${question} (y/n): `, (answer) => {
20
- resolve(answer.toLowerCase() === 'y' || answer.toLowerCase() === 'yes');
19
+ rl.question(`${question} (Y/n): `, (answer) => {
20
+ resolve(answer.toLowerCase() !== 'n');
21
21
  });
22
22
  });
23
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-sprint-kit",
3
- "version": "2.1.27",
3
+ "version": "2.1.30",
4
4
  "description": "CLI installer for AI Sprint autonomous development framework - requires license",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {