mirror of
https://github.com/Donchitos/Claude-Code-Game-Studios.git
synced 2026-06-27 04:51:46 +00:00
Game Studio Agent Architecture — complete setup (Phases 1-7)
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>
This commit is contained in:
133
.gitignore
vendored
Normal file
133
.gitignore
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
# === IDE and Editor ===
|
||||
.vs/
|
||||
.vscode/settings.json
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
|
||||
# === Claude Code Local ===
|
||||
.claude/settings.local.json
|
||||
.claude/docs/UPGRADE-PLAN.md
|
||||
production/session-logs/
|
||||
|
||||
# === Build Output ===
|
||||
build/
|
||||
builds/
|
||||
bin/
|
||||
obj/
|
||||
out/
|
||||
dist/
|
||||
*.exe
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
*.app
|
||||
|
||||
# === Engine: Godot ===
|
||||
.godot/
|
||||
*.translation
|
||||
export_presets.cfg
|
||||
# Uncomment if using Godot:
|
||||
# *.import
|
||||
|
||||
# === Engine: Unity ===
|
||||
[Ll]ibrary/
|
||||
[Tt]emp/
|
||||
[Oo]bj/
|
||||
[Bb]uild/
|
||||
[Bb]uilds/
|
||||
[Ll]ogs/
|
||||
[Uu]ser[Ss]ettings/
|
||||
*.csproj
|
||||
*.unityproj
|
||||
*.sln
|
||||
*.suo
|
||||
*.tmp
|
||||
*.user
|
||||
*.userprefs
|
||||
*.pidb
|
||||
*.booproj
|
||||
*.svd
|
||||
*.pdb
|
||||
*.mdb
|
||||
*.opendb
|
||||
*.VC.db
|
||||
crashlytics-buildid.txt
|
||||
sysinfo.txt
|
||||
# Uncomment if using Unity:
|
||||
# [Aa]ssets/[Aa]sset[Ss]tore[Tt]ools/
|
||||
|
||||
# === Engine: Unreal ===
|
||||
Binaries/
|
||||
DerivedDataCache/
|
||||
Intermediate/
|
||||
Saved/
|
||||
*.VC.opendb
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.cachefile
|
||||
*.VC.db
|
||||
# Uncomment if using Unreal:
|
||||
# *.uasset
|
||||
# *.umap
|
||||
|
||||
# === Compiled Shaders ===
|
||||
*.spv
|
||||
*.cso
|
||||
*.dxbc
|
||||
|
||||
# === Temporary and Cache ===
|
||||
*.tmp
|
||||
*.temp
|
||||
*.cache
|
||||
*.log
|
||||
__pycache__/
|
||||
*.pyc
|
||||
node_modules/
|
||||
.npm/
|
||||
|
||||
# === Archives ===
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
*.7z
|
||||
|
||||
# === Secrets and Environment ===
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
*.pem
|
||||
*.key
|
||||
credentials.json
|
||||
secrets.json
|
||||
|
||||
# === Large Binary Assets (use Git LFS instead) ===
|
||||
# Uncomment and configure with Git LFS for your project:
|
||||
# *.png
|
||||
# *.jpg
|
||||
# *.jpeg
|
||||
# *.wav
|
||||
# *.mp3
|
||||
# *.ogg
|
||||
# *.fbx
|
||||
# *.blend
|
||||
# *.psd
|
||||
# *.tga
|
||||
# *.exr
|
||||
# *.hdr
|
||||
|
||||
# === OS Generated ===
|
||||
ehthumbs.db
|
||||
ehthumbs_vista.db
|
||||
[Dd]esktop.ini
|
||||
$RECYCLE.BIN/
|
||||
*.cab
|
||||
*.msi
|
||||
*.msix
|
||||
*.msm
|
||||
*.msp
|
||||
*.lnk
|
||||
Reference in New Issue
Block a user