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

29 lines 1.16 kB
/** * SDLC Accelerate Handler * * Launches the SDLC Accelerate pipeline — taking a project from idea (or existing * codebase) to construction-ready by orchestrating intake → inception → elaboration * → construction prep via the sdlc-accelerate skill. * * Supports --provider to target any spawnable agent CLI, --dangerous to pass the * provider's unrestricted-mode flag, and --params for arbitrary provider-specific * args. IDE-integrated providers (copilot, cursor, etc.) receive guidance instead. * * @implements @.aiwg/architecture/decisions/ADR-001-unified-extension-system.md * @issue #485 */ import type { CommandHandler, HandlerContext, HandlerResult } from './types.js'; export declare class SdlcAccelerateHandler implements CommandHandler { id: string; name: string; description: string; category: "orchestration"; aliases: string[]; execute(ctx: HandlerContext): Promise<HandlerResult>; private buildPrompt; private spawnAgent; private getNotFoundMessage; private getHelpText; } export declare const sdlcAccelerateHandler: SdlcAccelerateHandler; //# sourceMappingURL=sdlc-accelerate.d.ts.map