kspec 1.0.11 → 1.0.12

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/package.json +1 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kspec",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Spec-driven development workflow for Kiro CLI",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -102,7 +102,7 @@ async function confirm(question) {
102
102
  function chat(message, agent) {
103
103
  const cli = requireCli();
104
104
  const args = agent ? ['chat', '--agent', agent, message] : ['chat', message];
105
- const child = spawn(cli, args, { stdio: 'inherit', shell: true });
105
+ const child = spawn(cli, args, { stdio: 'inherit' });
106
106
  return new Promise(resolve => child.on('close', resolve));
107
107
  }
108
108