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
15 lines • 487 B
JavaScript
/**
* Reflections CLI — `aiwg reflections <subcommand>`
*
* Thin subsystem wrapper around `runSubsystemCli('reflections', ...)`.
* Used by the ralph-reflect / reflection-injection skills (#967) so
* agent-loop reflections honor `.aiwg/storage.config` redirection.
*
* @issue #934
* @issue #967
*/
import { runSubsystemCli } from '../storage/subsystem-cli.js';
export async function main(args) {
await runSubsystemCli('reflections', args);
}
//# sourceMappingURL=cli.js.map