/** * pi-subagents — Agent Router Extension * * v2.0: Supervisor-based routing (refactored from monolithic agent-router.ts) * * Entry point that wires the Supervisor into the VS Code extension host. * Exposes: * - "route_agent" tool (single-agent, same behavior as v1) * - "plan_and_route" tool (multi-agent workflow, NEW) * - "/assign-agent" command (backward-compatible shortcut) * - "list_agents" tool (list all available agents) * * @see https://github.com/tintinweb/pi-subagents */ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; export default function (pi: ExtensionAPI): Promise;