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
17 lines • 556 B
TypeScript
/**
* Run Command Handler
*
* Implements `aiwg run <script>` — executes user-defined scripts from
* `.aiwg/aiwg.config` `scripts` section.
*
* Modelled on `npm run`. With no arguments, lists available scripts.
*
* Environment variables available in scripts:
* $AIWG_PROJECT — absolute path to the project root
* $AIWG_PROVIDERS — comma-separated list of configured providers
*
* @implements #621
*/
import type { CommandHandler } from './types.js';
export declare const runHandler: CommandHandler;
//# sourceMappingURL=run.d.ts.map