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

23 lines 597 B
/** * Lint Command Handler * * Routes `aiwg lint` to the lint CLI module. * * @issue #810 */ import type { CommandHandler } from './types.js'; /** * Handler for lint command * * Lint AIWG-managed document sets against declarative rule sets. * * Usage: * aiwg lint .aiwg/research/ * aiwg lint .aiwg/research/ --ruleset research * aiwg lint --list-rulesets * aiwg lint --list-rules research * aiwg lint .aiwg/ --format json --ci --fail-on warn * aiwg lint .aiwg/research/ --dry-run */ export declare const lintHandler: CommandHandler; //# sourceMappingURL=lint.d.ts.map