ai-sprint-kit 2.1.10 → 2.1.11

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 (2) hide show
  1. package/bin/ai-sprint.js +2 -2
  2. package/package.json +1 -1
package/bin/ai-sprint.js CHANGED
@@ -187,7 +187,7 @@ program
187
187
  const setupMcp = await question('Configure MCP servers now? (y/N): ');
188
188
  if (setupMcp.toLowerCase() === 'y') {
189
189
  console.log();
190
- const mcpScript = path.join(targetDir, '.claude', 'scripts', 'setup-mcp.js');
190
+ const mcpScript = path.join(targetDir, '.claude', 'scripts', 'setup-mcp.cjs');
191
191
  try {
192
192
  const { runMcpSetup } = require(mcpScript);
193
193
  await runMcpSetup();
@@ -518,7 +518,7 @@ program
518
518
  .description('Configure MCP servers')
519
519
  .option('-d, --dir <directory>', 'Target directory', process.cwd())
520
520
  .action(async (options) => {
521
- const scriptPath = path.join(options.dir, '.claude', 'scripts', 'setup-mcp.js');
521
+ const scriptPath = path.join(options.dir, '.claude', 'scripts', 'setup-mcp.cjs');
522
522
  try {
523
523
  const { runMcpSetup } = require(scriptPath);
524
524
  await runMcpSetup();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-sprint-kit",
3
- "version": "2.1.10",
3
+ "version": "2.1.11",
4
4
  "description": "CLI installer for AI Sprint autonomous development framework - requires license",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {