garc-gws-agent-runtime/.gitignore
林 駿甫 (Shunsuke Hayashi) a69b9d9160 feat: initial release — GARC v0.1.0
Permission-first AI agent runtime for Google Workspace.
Ports the LARC/OpenClaw governance model (disclosure chain,
execution gates, queue/ingress) to Gmail, Calendar, Drive,
Sheets, Tasks, and People APIs with Claude Code as the
execution engine.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-15 08:59:12 +09:00

46 lines
453 B
Text

# Credentials — never commit
.garc/
~/.garc/
credentials.json
token.json
service_account.json
*.key
*.pem
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
.venv/
venv/
env/
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Editor
.idea/
.vscode/
*.swp
*.swo
# Local cache and runtime state
.cache/
*.log
*.pid
# Test artifacts
.pytest_cache/
.coverage
htmlcov/
# Env files (use config.env.example as template)
config.env
.env