agent-afk 5.119.3 → 5.121.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/subagent-hooks.d.ts +1 -1
- package/dist/cli.mjs +415 -413
- package/dist/index.mjs +179 -177
- package/dist/telegram.mjs +246 -244
- package/dist/utils/errors.d.ts +2 -0
- package/package.json +1 -1
|
@@ -7,6 +7,6 @@ export interface SubagentHookDispatchOptions {
|
|
|
7
7
|
}
|
|
8
8
|
export declare function dispatchSubagentStart(registry: HookRegistry | undefined, context: SubagentStartContext, options?: SubagentHookDispatchOptions): Promise<void>;
|
|
9
9
|
export declare function dispatchSubagentStop(registry: HookRegistry | undefined, context: SubagentStopContext, options?: SubagentHookDispatchOptions): Promise<HookDecision>;
|
|
10
|
-
export declare function dispatchPreToolUse(registry: HookRegistry | undefined, context: PreToolUseContext, options?: SubagentHookDispatchOptions): Promise<
|
|
10
|
+
export declare function dispatchPreToolUse(registry: HookRegistry | undefined, context: PreToolUseContext, options?: SubagentHookDispatchOptions): Promise<HookDecision>;
|
|
11
11
|
export declare function dispatchPostToolUse(registry: HookRegistry | undefined, context: PostToolUseContext, options?: SubagentHookDispatchOptions): Promise<void>;
|
|
12
12
|
export declare function dispatchPostToolUseFailure(registry: HookRegistry | undefined, context: PostToolUseFailureContext, options?: SubagentHookDispatchOptions): Promise<void>;
|