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

22 lines 989 B
/** * Session Command Handler * * Starts an agentic session for a configured provider with full pre-flight: * 1. Version check — updates aiwg if stale * 2. Doctor — auto-repairs fixable issues * 3. Deployment check — redeploys framework files if missing/stale * 4. MCP inject (optional, `aiwg session mcp`) * 5. Launch binary (spawnable providers) or print start instructions (IDE providers) * * Usage: * aiwg session # default provider, full pre-flight + launch * aiwg session mcp # inject configured MCPs first, then launch * aiwg session --provider codex # explicit provider * aiwg session mcp --provider cursor # MCP inject for cursor + start instructions * aiwg session --no-repair # skip auto-repair (still check and report) * * @issue #884 */ import { CommandHandler } from './types.js'; export declare const sessionHandler: CommandHandler; //# sourceMappingURL=session.d.ts.map