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 +2 -2
- package/dist/theme.d.ts +1 -1
- package/dist/theme.js +1 -1
- package/package.json +1 -1
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:
|
|
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
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.
|
|
6
|
+
export const VERSION = '0.1.19';
|
|
7
7
|
const IKIE_BANNER = [
|
|
8
8
|
' ██╗██╗ ██╗██╗███████╗',
|
|
9
9
|
' ██║██║ ██╔╝██║██╔════╝',
|