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

25 lines 842 B
/** * Storage CLI — `aiwg storage <subcommand>` * * Subcommands: * show — print effective config + resolved physical paths * list-backends — inventory of compiled-in adapters with status * test <subsystem> — round-trip read/write/list/delete through the * configured backend * migrate <subsystem> — copy entries from one backend to another * * @design @.aiwg/architecture/storage-design.md (§7) * @issue #934 * @issue #954 * @issue #955 */ import { type BackendType } from './index.js'; export declare function main(args: string[]): Promise<void>; interface BackendStatus { implemented: boolean; note: string; trackingIssue?: string; } export declare function backendStatus(type: BackendType): BackendStatus; export {}; //# sourceMappingURL=cli.d.ts.map