agent-afk 5.85.11 → 5.86.0
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/tools/compose-executor.d.ts +1 -0
- package/dist/agent/tools/nesting.d.ts +2 -0
- package/dist/agent/tools/skill-depth-message.d.ts +2 -0
- package/dist/cli/_lib/stream-renderer-dead-zone.d.ts +2 -0
- package/dist/cli/_lib/stream-renderer-lifecycle.d.ts +0 -1
- package/dist/cli/_lib/stream-renderer-source.d.ts +1 -0
- package/dist/cli.mjs +487 -486
- package/dist/config/env.d.ts +1 -0
- package/dist/index.mjs +117 -117
- package/dist/telegram.mjs +227 -227
- package/package.json +1 -1
|
@@ -9,6 +9,8 @@ import type { TraceWriter } from '../trace/index.js';
|
|
|
9
9
|
import type { BackgroundAgentRegistry } from '../background-registry.js';
|
|
10
10
|
import type { AgentRegistry } from '../agents/types.js';
|
|
11
11
|
export declare const DEFAULT_MAX_NESTING_DEPTH = 3;
|
|
12
|
+
export declare const MAX_NESTING_DEPTH_CEILING = 6;
|
|
13
|
+
export declare function resolveMaxNestingDepth(): number;
|
|
12
14
|
export interface ChildProviderFactoryArgs {
|
|
13
15
|
childExecutor: SubagentExecutor;
|
|
14
16
|
childSkillExecutor?: SkillExecutor;
|
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
export declare const SKILL_MAX_DEPTH_RECOVERY_HINT = "You are too deeply nested to delegate further \u2014 perform the work inline with your own tools instead of calling skill/agent/compose.";
|
|
2
2
|
export declare function buildSkillMaxDepthRefusal(depth: number, maxDepth: number): string;
|
|
3
|
+
export declare function buildAgentMaxDepthRefusal(depth: number, maxDepth: number): string;
|
|
4
|
+
export declare function buildComposeMaxDepthRefusal(depth: number, maxDepth: number): string;
|
|
@@ -35,4 +35,3 @@ export declare function registerOverlaySlots(overlayComposer: OverlayComposer, c
|
|
|
35
35
|
export declare function formatInterruptAffordance(interrupting: boolean): string;
|
|
36
36
|
export declare function subscribeToResize(overlayComposer: OverlayComposer, disposed: boolean): () => void;
|
|
37
37
|
export declare function checkPauseAnnotations(ctx: LifecycleContext): boolean;
|
|
38
|
-
export declare function checkProgressBannerStaleness(ctx: LifecycleContext): boolean;
|