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
20 lines • 827 B
JavaScript
/**
* Research storage CLI — `aiwg research-store <subcommand>`
*
* Thin wrapper around `runSubsystemCli('research', ...)`. Used by
* research-acquire / corpus-* skills (#968) so the research corpus
* honors `.aiwg/storage.config` redirection (e.g., `roots.research`
* pointing at a secondary drive — one of the headline use cases in #934).
*
* Note: AIWG already has many `research-*` commands (research-discover,
* research-acquire, etc.). This new command is named `research-store`
* to disambiguate — it's the storage primitive layer, not a workflow.
*
* @issue #934
* @issue #968
*/
import { runSubsystemCli } from '../storage/subsystem-cli.js';
export async function main(args) {
await runSubsystemCli('research', args, { displayName: 'research-store' });
}
//# sourceMappingURL=storage-cli.js.map