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 932 B
/** * Steward Command Handler * * Provider capability awareness and command routing intelligence for the AIWG Steward. * Reads the canonical capability matrix and answers: * - What does my current provider support natively? * - What command should I use for feature X? * - Which providers support feature Y? * * Subcommands: * aiwg steward capabilities --provider <name> Show capabilities for a provider * aiwg steward capabilities --feature <name> Show provider support for a feature * aiwg steward capabilities --all Full capability matrix * aiwg steward find --capability <name> Routing advice for current provider * * @source @src/cli/router.ts * @issue #599 #1261 #1262 */ import type { CommandHandler } from './types.js'; export declare const stewardHandler: CommandHandler; export declare const stewardHandlers: CommandHandler[]; //# sourceMappingURL=steward.d.ts.map