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
19 lines • 644 B
TypeScript
/**
* Team Command Handler
*
* Extends Claude Code's native agent teams feature to all 9 AIWG providers.
* Provides a provider-agnostic abstraction for declaring, deploying, and
* invoking agent teams. On Claude Code, delegates to native team mechanisms.
* On all other providers, emulates via aiwg mc (Mission Control) orchestration.
*
* Subcommands: run, list, info
*
* @issue #598
*/
import type { CommandHandler } from './types.js';
export declare const teamHandler: CommandHandler;
/**
* All team-related handlers for bulk registration
*/
export declare const teamHandlers: CommandHandler[];
//# sourceMappingURL=team.d.ts.map