@agent-api/cli 0.4.3 → 0.4.4

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/index.js CHANGED
@@ -205,6 +205,7 @@ function agentChatCommand() {
205
205
  .option("--context-query <text>", "include local search matches in context")
206
206
  .option("--max-context-files <n>", "local context file limit")
207
207
  .option("--max-context-bytes <n>", "local context byte limit")
208
+ .option("--automatic-continuation-limit <n>", "pause automatic agent continuations after this many calls; use unlimited to disable")
208
209
  .option("--access <mode>", "local tool access mode: off, approval, or full")
209
210
  .option("--restart", "start the conversation from a fresh response")
210
211
  .addOption(new Option("--no-stream", "wait for final response instead of streaming"))
package/dist/runtime.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export declare const cliName = "agent-tui";
2
2
  export declare const cliAuthor = "AgentsWay";
3
- export declare const cliVersion = "0.4.3";
3
+ export declare const cliVersion = "0.4.4";
4
4
  export declare const legacyCliName = "agent-api-cli";
package/dist/runtime.js CHANGED
@@ -1,4 +1,4 @@
1
1
  export const cliName = "agent-tui";
2
2
  export const cliAuthor = "AgentsWay";
3
- export const cliVersion = "0.4.3";
3
+ export const cliVersion = "0.4.4";
4
4
  export const legacyCliName = "agent-api-cli";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-api/cli",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "First-class command line interface for Agent API",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/scalebox-dev/agent-tui#readme",
@@ -35,7 +35,7 @@
35
35
  "test": "npm run sync-version && npm run build && npm run smoke -w @agent-api/app-engine && node --test test/*.test.mjs"
36
36
  },
37
37
  "dependencies": {
38
- "@agent-api/app-engine": "^0.1.3",
38
+ "@agent-api/app-engine": "^0.1.4",
39
39
  "commander": "^14.0.3",
40
40
  "ink": "^6.8.0",
41
41
  "react": "^19.2.7"