# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
eggs/
*.egg
.installed.cfg

# Virtual environments
venv/
env/
.venv/

# IDE
.idea/
.vscode/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Project specific
projects
projects/*
vertex_keys/*
!vertex_keys/.gitkeep

# Runtime log directory (PROJECT_ROOT/logs from lib/logging_config.py)
logs/

# Keep project structure but ignore generated content
!projects/.gitkeep

# New unified ORM database (SQLite)
projects/.arcreel.db
# Old SQLite database backups (created by migration script)
projects/.*.db.bak

# Environment
.env
.env.local
.env.*
!.env.example
CLAUDE.local.md

# Local Codex runtime metadata
.codex/

# Frontend build artifacts
frontend/node_modules/
frontend/dist/
frontend/.vite/
*.tsbuildinfo

# Git backup
.git.backup

# Git worktrees
.worktrees/
.claude/worktrees/

# Claude Code 本地配置（.worktreeinclude 据此复制到新 worktree）
.claude/settings.local.json

# AFK 团队执行的批次账本（afk-team-workflow，本地运维状态，不提交）
.afk/

# Superpowers (Claude Code plugin cache)
.superpowers/

# Test coverage
htmlcov/
.coverage
coverage/
coverage.xml
coverage-pg.xml

# File locks (project_manager 原子写产物)
**/*.lock

# Docker runtime data
claude_data/

# Deploy runtime data (generated by docker compose)
deploy/.env
deploy/projects/
deploy/vertex_keys/
deploy/claude_data/
deploy/production/.env
deploy/production/projects/
deploy/production/vertex_keys/
deploy/production/claude_data/
deploy/production/pgdata/

# scripts/verify_reference_video_sdks.py 的输出目录，报告是运行时快照
docs/verification-reports/

# impeccable skill 的问答会话日志
.impeccable/questions/

# impeccable-ignore-start
# Ephemeral output, runtime state, and per-dev overrides.
# Unanchored: .impeccable may sit at the repo root or under a nested
# workspace (apps/web/.impeccable/...); anchored patterns would miss it.
# Shared artifacts stay tracked: config.json, live/config.json,
# design.json, critique/*.md.
.impeccable/config.local.json
.impeccable/hook.cache.json
.impeccable/hook.pending.json
.impeccable/*.png
.impeccable/live/server.json
.impeccable/live/sessions/
.impeccable/live/previews/
.impeccable/live/annotations/
.impeccable/live/cache/
.impeccable/live/manual-edit-apply-transaction.json
.impeccable/live/manual-edit-events.jsonl
.impeccable/live/manual-edit-evidence/
.impeccable/live/pending-manual-edits.json
.impeccable/live/deferred-svelte-component-accepts.json
.impeccable/live/*.png
# impeccable-ignore-end

# mutmut 变异测试的工作副本（`mutmut run` 生成的整仓复制品）
mutants/
