agent-afk 5.20.1 → 5.20.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.
@@ -19,7 +19,6 @@ export declare function createStubParentSession(signal: AbortSignal): Pick<IAgen
19
19
  export declare const CHILD_ALLOWED_TOOLS: string[];
20
20
  export declare const RECON_ALLOWED_TOOLS: readonly string[];
21
21
  export declare const DEFAULT_READ_ONLY_SKILLS: ReadonlySet<string>;
22
- export declare const DEFAULT_FORK_SKILLS: ReadonlySet<string>;
23
22
  export interface CreateChildProviderFactoryOptions {
24
23
  openaiBaseUrl?: string;
25
24
  }
@@ -1,6 +1,8 @@
1
1
  import type { SubagentCompleteInfo } from '../../../agent/default-hook-registry.js';
2
2
  import type { ProgressEvent } from '../../../agent/types.js';
3
+ import type { CompletionWriter } from './shared.js';
3
4
  export declare function deriveProgressActivity(thinkingBuffer: string, columns?: number): string | undefined;
4
5
  export declare function formatProgressBanner(event: ProgressEvent, columns?: number, activity?: string): string[];
5
6
  export declare function formatProgressSummary(event: ProgressEvent, columns?: number): string;
6
7
  export declare function formatSubagentCompletion(info: SubagentCompleteInfo, columns?: number): string;
8
+ export declare function emitSubagentCompletion(writer: CompletionWriter, info: SubagentCompleteInfo): void;
@@ -71,6 +71,7 @@ export interface InteractiveCtx {
71
71
  export interface CompletionWriter {
72
72
  fn: (line: string) => void;
73
73
  idleFn: (line: string) => void;
74
+ suppressSubagentCompletion?: boolean;
74
75
  }
75
76
  export interface TurnHandles {
76
77
  setInFlight(v: boolean): void;