UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

18 lines 514 B
/** * Marketplace Source Registry * * Registers marketplace source adapters and resolves a parsed identifier * to its adapter. * * @implements #787 */ import type { MarketplaceSource, MarketplaceSourceId } from './types.js'; /** * Get the adapter for a given source. */ export declare function getSource(source: MarketplaceSourceId): MarketplaceSource; /** * List all registered source ids */ export declare function listRegisteredSources(): MarketplaceSourceId[]; //# sourceMappingURL=registry.d.ts.map