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
21 lines • 871 B
TypeScript
/**
* Knowledge Base CLI — `aiwg kb <subcommand>`
*
* Thin storage wrapper for the knowledge-base subsystem. Routes all
* persistence through `resolveStorage('kb')` so the KB honors
* `.aiwg/storage.config` redirection (Obsidian vault, Logseq graph, S3
* prefix, etc.) without each kb skill hardcoding `.aiwg/kb/`.
*
* Subcommands:
* path [<subpath>] Print resolved physical path to the KB root or a sub-entry
* list [--prefix p] List entries, optionally filtered
* get <path> Read an entry's content to stdout
* put <path> Write stdin contents to an entry (creates parents)
* delete <path> Delete an entry (no-op if missing)
*
* @design @.aiwg/architecture/storage-design.md (§4, §5)
* @issue #934
* @issue #965
*/
export declare function main(args: string[]): Promise<void>;
//# sourceMappingURL=cli.d.ts.map