mirror of
https://github.com/Donchitos/Claude-Code-Game-Studios.git
synced 2026-06-27 04:51:46 +00:00
48 coordinated Claude Code subagents for indie game development: - 3 leadership agents (creative-director, technical-director, producer) - 10 department leads (game-designer, lead-programmer, art-director, etc.) - 23 specialist agents (gameplay, engine, AI, networking, UI, tools, etc.) - 12 engine-specific agents (Godot, Unity, Unreal with sub-specialists) Infrastructure: - 34 skills (slash commands) for workflows, reviews, and team orchestration - 8 hooks for commit validation, asset checks, session management - 11 path-scoped rules enforcing domain-specific standards - 28 templates for design docs, reports, and collaborative protocols Key features: - User-driven collaboration protocol (Question → Options → Decision → Draft → Approval) - Engine version awareness with knowledge-gap detection (Godot 4.6 pinned) - Phase gate system for development milestone validation - CLAUDE.md kept under 80 lines with extracted doc imports Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
102 lines
3.3 KiB
Bash
102 lines
3.3 KiB
Bash
#!/bin/bash
|
|
# Claude Code PreToolUse hook: Validates git commit commands
|
|
# Receives JSON on stdin with tool_input.command
|
|
# Exit 0 = allow, Exit 2 = block (stderr shown to Claude)
|
|
#
|
|
# Input schema (PreToolUse for Bash):
|
|
# { "tool_name": "Bash", "tool_input": { "command": "git commit -m ..." } }
|
|
|
|
INPUT=$(cat)
|
|
|
|
# Parse command -- use jq if available, fall back to grep
|
|
if command -v jq >/dev/null 2>&1; then
|
|
COMMAND=$(echo "$INPUT" | jq -r '.tool_input.command // empty')
|
|
else
|
|
COMMAND=$(echo "$INPUT" | grep -oE '"command"\s*:\s*"[^"]*"' | sed 's/"command"\s*:\s*"//;s/"$//')
|
|
fi
|
|
|
|
# Only process git commit commands
|
|
if ! echo "$COMMAND" | grep -qE '^git[[:space:]]+commit'; then
|
|
exit 0
|
|
fi
|
|
|
|
# Get staged files
|
|
STAGED=$(git diff --cached --name-only 2>/dev/null)
|
|
if [ -z "$STAGED" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
WARNINGS=""
|
|
|
|
# Check design documents for required sections
|
|
DESIGN_FILES=$(echo "$STAGED" | grep -E '^design/gdd/')
|
|
if [ -n "$DESIGN_FILES" ]; then
|
|
for file in $DESIGN_FILES; do
|
|
if [[ "$file" == *.md ]] && [ -f "$file" ]; then
|
|
for section in "Overview" "Detailed" "Edge Cases" "Dependencies" "Acceptance Criteria"; do
|
|
if ! grep -qi "$section" "$file"; then
|
|
WARNINGS="$WARNINGS\nDESIGN: $file missing required section: $section"
|
|
fi
|
|
done
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# Validate JSON data files -- block invalid JSON
|
|
DATA_FILES=$(echo "$STAGED" | grep -E '^assets/data/.*\.json$')
|
|
if [ -n "$DATA_FILES" ]; then
|
|
# Find a working Python command
|
|
PYTHON_CMD=""
|
|
for cmd in python python3 py; do
|
|
if command -v "$cmd" >/dev/null 2>&1; then
|
|
PYTHON_CMD="$cmd"
|
|
break
|
|
fi
|
|
done
|
|
|
|
for file in $DATA_FILES; do
|
|
if [ -f "$file" ]; then
|
|
if [ -n "$PYTHON_CMD" ]; then
|
|
if ! "$PYTHON_CMD" -m json.tool "$file" > /dev/null 2>&1; then
|
|
echo "BLOCKED: $file is not valid JSON" >&2
|
|
exit 2
|
|
fi
|
|
else
|
|
echo "WARNING: Cannot validate JSON (python not found): $file" >&2
|
|
fi
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# Check for hardcoded gameplay values in gameplay code
|
|
# Uses grep -E (POSIX extended) instead of grep -P (Perl) for cross-platform compatibility
|
|
CODE_FILES=$(echo "$STAGED" | grep -E '^src/gameplay/')
|
|
if [ -n "$CODE_FILES" ]; then
|
|
for file in $CODE_FILES; do
|
|
if [ -f "$file" ]; then
|
|
if grep -nE '(damage|health|speed|rate|chance|cost|duration)[[:space:]]*[:=][[:space:]]*[0-9]+' "$file" 2>/dev/null; then
|
|
WARNINGS="$WARNINGS\nCODE: $file may contain hardcoded gameplay values. Use data files."
|
|
fi
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# Check for TODO/FIXME without assignee -- uses grep -E instead of grep -P
|
|
SRC_FILES=$(echo "$STAGED" | grep -E '^src/')
|
|
if [ -n "$SRC_FILES" ]; then
|
|
for file in $SRC_FILES; do
|
|
if [ -f "$file" ]; then
|
|
if grep -nE '(TODO|FIXME|HACK)[^(]' "$file" 2>/dev/null; then
|
|
WARNINGS="$WARNINGS\nSTYLE: $file has TODO/FIXME without owner tag. Use TODO(name) format."
|
|
fi
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# Print warnings (non-blocking) and allow commit
|
|
if [ -n "$WARNINGS" ]; then
|
|
echo -e "=== Commit Validation Warnings ===$WARNINGS\n================================" >&2
|
|
fi
|
|
|
|
exit 0
|