ai-sprint-kit 2.1.7 → 2.1.8

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 +6 -1
  2. package/package.json +1 -1
package/bin/ai-sprint.js CHANGED
@@ -51,7 +51,12 @@ const rl = readline.createInterface({
51
51
 
52
52
  function question(prompt) {
53
53
  return new Promise(resolve => {
54
- rl.question(prompt, resolve);
54
+ // Write prompt to stderr (unbuffered) for visibility
55
+ process.stderr.write(prompt);
56
+ // Read input using readline
57
+ rl.question('', (answer) => {
58
+ resolve(answer);
59
+ });
55
60
  });
56
61
  }
57
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-sprint-kit",
3
- "version": "2.1.7",
3
+ "version": "2.1.8",
4
4
  "description": "CLI installer for AI Sprint autonomous development framework - requires license",
5
5
  "main": "lib/installer.js",
6
6
  "bin": {