ikie-cli 0.1.25 → 0.1.26

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.
@@ -89,8 +89,8 @@ export class MCPManager {
89
89
  const pkg = config.source.slice(4);
90
90
  const { execSync } = await import('child_process');
91
91
  execSync(`npm install -g ${pkg}`, { cwd: MCP_DIR });
92
- command = pkg;
93
- args = [];
92
+ command = 'npx';
93
+ args = ['-y', pkg];
94
94
  }
95
95
  else if (config.source.startsWith('http://') || config.source.startsWith('https://')) {
96
96
  const { execSync } = await import('child_process');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ikie-cli",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "description": "Agentic coding CLI — your terminal AI pair programmer",
5
5
  "type": "module",
6
6
  "bin": {