ikie-cli 0.1.18 → 0.1.19

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/dist/repl.js CHANGED
@@ -1268,8 +1268,8 @@ export async function startREPL(agent, config, projectContext, oneShot) {
1268
1268
  }
1269
1269
  }
1270
1270
  }
1271
- // Plan mode: a plan was just proposed offer to execute it.
1272
- if (agent.getMode() === 'plan' && !abortController.signal.aborted) {
1271
+ // Plan mode: only offer execution if the agent actually produced a plan (used tools).
1272
+ if (agent.getMode() === 'plan' && !abortController.signal.aborted && agent.getLastTurnStats().toolCalls > 0) {
1273
1273
  process.stdin.removeListener('data', cancelHandler);
1274
1274
  const go = await confirmExecutePlan();
1275
1275
  process.stdin.on('data', cancelHandler);
package/dist/theme.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const VERSION = "0.1.18";
1
+ export declare const VERSION = "0.1.19";
2
2
  export interface Theme {
3
3
  name: string;
4
4
  description: string;
package/dist/theme.js CHANGED
@@ -3,7 +3,7 @@ import os from 'os';
3
3
  import { join as pathJoin, basename } from 'path';
4
4
  import { existsSync, readFileSync } from 'fs';
5
5
  import { loadConfig, saveConfig } from './config.js';
6
- export const VERSION = '0.1.18';
6
+ export const VERSION = '0.1.19';
7
7
  const IKIE_BANNER = [
8
8
  ' ██╗██╗ ██╗██╗███████╗',
9
9
  ' ██║██║ ██╔╝██║██╔════╝',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ikie-cli",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "Agentic coding CLI — your terminal AI pair programmer",
5
5
  "type": "module",
6
6
  "bin": {