/** * The globally named `list_agents` tool: a thin model-facing adapter over * the continuable projection of `ctx.subagents.listChildren()` and, for the * `descendants` scope, `ctx.subagents.listDescendants()`. It stays separately * loadable from the root `send_message` plugin so a deployment can register * continuation delivery without exposing discovery. * @module @deepseek-ai/dsh-tool-subagent-control/list-agents */ import type { Context } from '@deepseek-ai/cordis'; export declare const name = "tool-subagent-list-agents"; export declare const inject: string[]; /** * Register the `list_agents` tool. * @param ctx - context carrying the tool registry, subagent service, and live Agent registry. */ export declare function apply(ctx: Context): void; //# sourceMappingURL=list-agents.d.ts.map