/** * Knowledge Base CLI — `aiwg kb ` * * 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 [] Print resolved physical path to the KB root or a sub-entry * list [--prefix p] List entries, optionally filtered * get Read an entry's content to stdout * put Write stdin contents to an entry (creates parents) * delete 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; //# sourceMappingURL=cli.d.ts.map