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 +3 -1
- package/bin/ai-sprint.js +2 -2
- package/lib/interactive.js +3 -3
- package/package.json +1 -1
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
|
-
|
|
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? (
|
|
190
|
-
if (setupMcp.toLowerCase()
|
|
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 {
|
package/lib/interactive.js
CHANGED
|
@@ -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} (
|
|
20
|
-
resolve(answer.toLowerCase()
|
|
19
|
+
rl.question(`${question} (Y/n): `, (answer) => {
|
|
20
|
+
resolve(answer.toLowerCase() !== 'n');
|
|
21
21
|
});
|
|
22
22
|
});
|
|
23
23
|
}
|