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

33 lines 699 B
/** * Storage Adapter Types * * Public contracts for the AIWG storage abstraction. Consumers use * `resolveStorage(subsystem)` to obtain a backend-specific adapter * conforming to `StorageAdapter`. * * @design @.aiwg/architecture/storage-design.md * @schema @.aiwg/architecture/schemas/storage.config.v1.json * @issue #934 * @issue #953 */ export const SUBSYSTEM_KEYS = [ 'memory', 'reflections', 'kb', 'activity_log', 'provenance', 'research', 'media', 'sandbox_identity', ]; export const BACKEND_TYPES = [ 'fs', 'obsidian', 'logseq', 'notion', 'anythingllm', 'fortemi', 's3', 'webdav', ]; //# sourceMappingURL=types.js.map