@livx.cc/agentx 0.95.1 → 0.95.3
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/{Agent-1DRfsYaK.d.ts → Agent-DRe91tAy.d.ts} +5 -0
- package/dist/cli.d.ts +1 -1
- package/dist/cli.js +592 -430
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +13 -6
- package/dist/index.js +401 -241
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -268,6 +268,11 @@ declare class AgentOptions {
|
|
|
268
268
|
depth: number;
|
|
269
269
|
/** Hard ceiling on subagent nesting (beyond it the `Task` tool refuses to spawn). */
|
|
270
270
|
maxDepth: number;
|
|
271
|
+
/** Real-disk dir where child agents stream their transcript as they run (origin-anchored — survives
|
|
272
|
+
* worktree teardown / a child's own cwd). When set, an interrupted/failed child commits a STATUS HINT
|
|
273
|
+
* + a pointer to its trace instead of a dangling tool_call, so the parent can read it and decide
|
|
274
|
+
* whether to ignore, pick it up, or restart. Unset (library/sandbox default) = no tracing. */
|
|
275
|
+
traceDir?: string;
|
|
271
276
|
/** Stream tokens from the model. Takes effect only with a `host.notify`; off => current (non-stream) behavior. */
|
|
272
277
|
stream: boolean;
|
|
273
278
|
/** Fold the dropped middle of an over-long transcript into a synthetic summary (edge-safe, no LLM). Off => drop-oldest. */
|
package/dist/cli.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env bun
|
|
2
|
-
import { H as Hooks, h as RunResult, R as ReasoningEffort, A as Agent } from './Agent-
|
|
2
|
+
import { H as Hooks, h as RunResult, R as ReasoningEffort, A as Agent } from './Agent-DRe91tAy.js';
|
|
3
3
|
import { IFilesystem } from '@livx.cc/wcli/core';
|
|
4
4
|
import { M as Message, c as ContentPart, e as MessageContent } from './tools-DtpN8Agv.js';
|
|
5
5
|
|