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

15 lines 429 B
/** * Hook System * * Exports the complete hook system: types, registry, and executor. * Provides lifecycle hooks for CLI command execution. * * @implements @.aiwg/requirements/use-cases/UC-004-extension-system.md * @architecture @src/extensions/types.ts * @issue #58 */ // Registry export { HookRegistry } from './registry.js'; // Executor export { HookExecutor } from './executor.js'; //# sourceMappingURL=index.js.map