/** * Pi Extension — Azure DevOps integration for pi.dev * * Provides the same ~20 ADO tools as the OpenCode plugin, * adapted to the Pi extension API: * - pi.registerTool() with TypeBox schemas * - pi.registerCommand() for /ado commands * - pi.on("session_start") for config loading * - ctx.ui.setWidget() for persistent status display * - ctx.ui.custom() for interactive overlays (profile switch, etc.) * * Config lives in: * ~/.azure-devops-cli/config.json (shared with OpenCode plugin) * OR .pi/settings.json under "ado" key (project-local) * OR ~/.pi/agent/settings.json under "ado" key (global) * * Install: * pi install npm:@cioffinahuel/opencode-ado * OR copy to ~/.pi/agent/extensions/pi-ado/index.ts */ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; export default function adoExtension(pi: ExtensionAPI): void; //# sourceMappingURL=pi-entry.d.ts.map