claude-flow
Version:
Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration
47 lines (40 loc) • 850 B
text/typescript
/**
* V3 Safety Hooks - Index
*
* TypeScript conversions of V2 shell hooks for:
* - Bash command safety
* - File organization enforcement
* - Git commit formatting
*
* @module v3/shared/hooks/safety
*/
// Bash safety hook
export {
BashSafetyHook,
createBashSafetyHook,
} from './bash-safety.js';
export type {
BashSafetyResult,
CommandRisk,
} from './bash-safety.js';
// File organization hook
export {
FileOrganizationHook,
createFileOrganizationHook,
} from './file-organization.js';
export type {
FileOrganizationResult,
FormatterRecommendation,
LinterRecommendation,
OrganizationIssue,
} from './file-organization.js';
// Git commit hook
export {
GitCommitHook,
createGitCommitHook,
} from './git-commit.js';
export type {
GitCommitResult,
CommitType,
CommitValidationIssue,
} from './git-commit.js';