UNPKG

claude-code-collective

Version:

Sub-agent collective framework for Claude Code with TDD validation, hub-spoke coordination, and automated handoffs

116 lines 2.82 kB
{ "deniedTools": [ "mcp__task-master__initialize_project" ], "hooks": { "SessionStart": [ { "matcher": "startup", "hooks": [ { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/load-behavioral-system.sh" } ] }, { "matcher": "resume", "hooks": [ { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/load-behavioral-system.sh" } ] }, { "matcher": "clear", "hooks": [ { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/load-behavioral-system.sh" } ] } ], "PreToolUse": [ { "matcher": "Write|Edit|MultiEdit", "hooks": [ { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/directive-enforcer.sh" }, { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/collective-metrics.sh" } ] }, { "matcher": ".*", "hooks": [ { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/collective-metrics.sh" } ] } ], "PostToolUse": [ { "matcher": "Task", "hooks": [ { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/test-driven-handoff.sh" }, { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/collective-metrics.sh" } ] }, { "matcher": "Write|Edit|MultiEdit", "hooks": [ { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/collective-metrics.sh" } ] } ], "SubagentStop": [ { "matcher": "mock-.*", "hooks": [ { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/mock-deliverable-generator.sh" }, { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/test-driven-handoff.sh" }, { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/collective-metrics.sh" } ] }, { "matcher": ".*", "hooks": [ { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/test-driven-handoff.sh" }, { "type": "command", "command": "$CLAUDE_PROJECT_DIR/.claude/hooks/collective-metrics.sh" } ] } ] } }