aiwg
Version:
Cognitive architecture for AI-augmented software development with structured memory, ensemble validation, and closed-loop correction. FAIR-aligned artifacts, 84% cost reduction via human-in-the-loop, standards adopted by 100+ organizations.
27 lines (23 loc) • 537 B
text/typescript
/**
* 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
*/
// Types
export type {
HookEvent,
HookContext,
HookResult,
HookFilter,
HookHandler,
HookExecutionResult,
} from './types.js';
// Registry
export { HookRegistry } from './registry.js';
// Executor
export { HookExecutor } from './executor.js';