jinzd-ai-cli 0.2.25 → 0.2.27

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.
@@ -8,7 +8,7 @@ import { platform } from "os";
8
8
  import chalk from "chalk";
9
9
 
10
10
  // src/core/constants.ts
11
- var VERSION = "0.2.25";
11
+ var VERSION = "0.2.27";
12
12
  var APP_NAME = "ai-cli";
13
13
  var CONFIG_DIR_NAME = ".aicli";
14
14
  var CONFIG_FILE_NAME = "config.json";
@@ -16,7 +16,7 @@ import {
16
16
  SUBAGENT_MAX_ROUNDS_LIMIT,
17
17
  VERSION,
18
18
  runTestsTool
19
- } from "./chunk-SVYDE375.js";
19
+ } from "./chunk-5JC5ZS3M.js";
20
20
 
21
21
  // src/config/config-manager.ts
22
22
  import { readFileSync, writeFileSync, existsSync, mkdirSync } from "fs";
package/dist/index.js CHANGED
@@ -36,7 +36,7 @@ import {
36
36
  theme,
37
37
  truncateOutput,
38
38
  undoStack
39
- } from "./chunk-Q7YDWBRA.js";
39
+ } from "./chunk-ZJWCFC7I.js";
40
40
  import {
41
41
  AGENTIC_BEHAVIOR_GUIDELINE,
42
42
  AUTHOR,
@@ -56,7 +56,7 @@ import {
56
56
  REPO_URL,
57
57
  SKILLS_DIR_NAME,
58
58
  VERSION
59
- } from "./chunk-SVYDE375.js";
59
+ } from "./chunk-5JC5ZS3M.js";
60
60
 
61
61
  // src/index.ts
62
62
  import { program } from "commander";
@@ -852,6 +852,7 @@ function createDefaultCommands() {
852
852
  " /mcp [reconnect [id]] - Show MCP servers / reconnect disconnected",
853
853
  " /config [set|get|show] - Config wizard, or get/set values, show all",
854
854
  " /copy - Copy last AI response to clipboard",
855
+ " /paste [description] - Read image from clipboard and send to AI",
855
856
  " /cost [reset] - Show session token usage (or reset counters)",
856
857
  " /init [--force] - Generate AICLI.md by scanning project structure",
857
858
  " /skill [name|off|list] - Manage agent skills (reusable prompt packs)",
@@ -866,6 +867,7 @@ function createDefaultCommands() {
866
867
  " /bug [--copy] - Generate bug report template (--copy to clipboard)",
867
868
  " /diff [--stats] - Show all file modifications in this session",
868
869
  " /fork [checkpoint] - Fork session from checkpoint or current position",
870
+ " /yolo [on|off] - Toggle session auto-approve (skip confirmations)",
869
871
  " /exit - Exit"
870
872
  ] : [];
871
873
  console.log("\nAvailable commands:");
@@ -1905,7 +1907,7 @@ ${hint}` : "")
1905
1907
  description: "Run project tests and show structured report",
1906
1908
  usage: "/test [command|filter]",
1907
1909
  async execute(args, _ctx) {
1908
- const { executeTests } = await import("./run-tests-XBOM5EGQ.js");
1910
+ const { executeTests } = await import("./run-tests-JUMTBKQI.js");
1909
1911
  const argStr = args.join(" ").trim();
1910
1912
  let testArgs = {};
1911
1913
  if (argStr) {
@@ -5515,7 +5517,7 @@ program.command("web").description("Start Web UI server with browser-based chat
5515
5517
  console.error("Error: Invalid port number. Must be between 1 and 65535.");
5516
5518
  process.exit(1);
5517
5519
  }
5518
- const { startWebServer } = await import("./server-XFUSRZEO.js");
5520
+ const { startWebServer } = await import("./server-2V5IMB4T.js");
5519
5521
  await startWebServer({ port, host: options.host });
5520
5522
  });
5521
5523
  program.command("user [action] [username]").description("Manage Web UI users (list | create <name> | delete <name> | reset-password <name> | migrate <name>)").action(async (action, username) => {
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  executeTests,
4
4
  runTestsTool
5
- } from "./chunk-SVYDE375.js";
5
+ } from "./chunk-5JC5ZS3M.js";
6
6
  export {
7
7
  executeTests,
8
8
  runTestsTool
@@ -24,7 +24,7 @@ import {
24
24
  setupProxy,
25
25
  spawnAgentContext,
26
26
  truncateOutput
27
- } from "./chunk-Q7YDWBRA.js";
27
+ } from "./chunk-ZJWCFC7I.js";
28
28
  import {
29
29
  AGENTIC_BEHAVIOR_GUIDELINE,
30
30
  CONTEXT_FILE_CANDIDATES,
@@ -36,7 +36,7 @@ import {
36
36
  PLAN_MODE_SYSTEM_ADDON,
37
37
  SKILLS_DIR_NAME,
38
38
  VERSION
39
- } from "./chunk-SVYDE375.js";
39
+ } from "./chunk-5JC5ZS3M.js";
40
40
  import {
41
41
  AuthManager
42
42
  } from "./chunk-CPLT6CD3.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jinzd-ai-cli",
3
- "version": "0.2.25",
3
+ "version": "0.2.27",
4
4
  "description": "Cross-platform REPL-style AI CLI with multi-provider support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",