/** * Agent registry containing all known AI coding agents. * * Derives descriptors from the capability catalog. O(1) lookup by agent ID. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import { type AgentId, type AgentRegistry } from "./types.js"; /** * Complete registry of all known AI coding agents. * * Keys are agent IDs, values are full descriptor objects. * Paths are pre-expanded at module initialization. * * @experimental This API is unstable and may change without notice. */ export declare const AGENTS: AgentRegistry; /** * Get all registered agent IDs. * * @returns Array of all agent identifiers * * @example * ```typescript * const ids = getAgentIds(); * // ["adal", "amp", "antigravity", "augment", "claude-code", ...] * ``` * * @experimental This API is unstable and may change without notice. */ export declare const getAgentIds: () => ReadonlyArray; //# sourceMappingURL=registry.d.ts.map