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 • 717 B
TypeScript
/**
* Mission Control Command Handler
*
* Multi-loop background orchestration dashboard. Lets an orchestrator
* spawn multiple long-running agent loops, monitor all simultaneously,
* and react to completions or failures without blocking the primary session.
*
* Subcommands: start, dispatch, status, watch, abort, pause, resume, stop, list
*
* @implements @agentic/code/frameworks/sdlc-complete/rules/self-maintenance.md
* @source @src/cli/router.ts
* @issue #483
*/
import type { CommandHandler } from './types.js';
export declare const mcHandler: CommandHandler;
/**
* All MC-related handlers for bulk registration
*/
export declare const mcHandlers: CommandHandler[];
//# sourceMappingURL=mc.d.ts.map