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

16 lines 495 B
/** * Memory CLI — `aiwg memory <subcommand>` * * Thin subsystem wrapper around `runSubsystemCli('memory', ...)` for * the `memory` storage subsystem. Subcommands and behavior live in * `src/storage/subsystem-cli.ts` so memory and reflections share the * same implementation. * * @issue #934 * @issue #966 */ import { runSubsystemCli } from '../storage/subsystem-cli.js'; export async function main(args) { await runSubsystemCli('memory', args); } //# sourceMappingURL=cli.js.map