ai-sprint-kit 2.1.27 → 2.1.29

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
@@ -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
 
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.29",
4
4
  "description": "CLI installer for AI Sprint autonomous development framework - requires license",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {