You've already forked adk-python
mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
d45b31fb45
Merge https://github.com/google/adk-python/pull/3333 ## Summary Add ignore patterns for popular AI coding assistant configuration files to prevent committing developer-specific settings. This aligns with the project's approach of providing `AGENTS.md` as a general starting point that developers can symlink or copy and customize locally. ## Changes Added `.gitignore` patterns for 10 popular AI coding tools: - **Claude Code** - `.claude/`, `CLAUDE.md` - **Cursor** - `.cursor/`, `.cursorrules`, `.cursorignore` - **Windsurf** - `.windsurfrules` - **Aider** - `.aider*` - **Continue.dev** - `.continue/` - **Codeium** - `.codeium/` - **GitHub Next** - `.githubnext/` - **Roo Code** - `.roo/`, `.rooignore` - **Bolt** - `.bolt/` - **v0** - `.v0/` ## Rationale Each developer may want different AI tool configurations and personal instructions. By ignoring these files, we: - Prevent accidental commits of personal AI assistant settings - Keep the repository clean of developer-specific configurations - Allow developers to customize their AI tools without affecting others - Maintain consistency with the project's `AGENTS.md` approach Co-authored-by: Yvonne Yu <yyyu@google.com> COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/3333 from google:chore/ignore-ai-tool-configs 0abe4ccdf130ac93c3d2c353556f0ce7c305c429 PiperOrigin-RevId: 825682646
118 lines
1.2 KiB
Plaintext
118 lines
1.2 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.env
|
|
.venv
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Testing
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.pytest_cache/
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
log/
|
|
|
|
# Local development settings
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
uv.lock
|
|
|
|
# Google Cloud specific
|
|
.gcloudignore
|
|
.gcloudignore.local
|
|
|
|
# Documentation
|
|
docs/_build/
|
|
site/
|
|
|
|
# Misc
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.bak
|
|
*.tmp
|
|
*.temp
|
|
|
|
# AI Coding Tools - Project-specific configs
|
|
# Developers should symlink or copy AGENTS.md and add their own overrides locally
|
|
.claude/
|
|
CLAUDE.md
|
|
.cursor/
|
|
.cursorrules
|
|
.cursorignore
|
|
.windsurfrules
|
|
.aider*
|
|
.continue/
|
|
.codeium/
|
|
.githubnext/
|
|
.roo/
|
|
.rooignore
|
|
.bolt/
|
|
.v0/
|