The 250+ generated files in integrations/ were adding repo bloat and would cause merge conflicts when agents change. Run scripts/convert.sh to regenerate them locally. What's committed: - scripts/convert.sh and scripts/install.sh (the actual value) - integrations/*/README.md (docs for each tool) - integrations/README.md (overview) - .gitignore updated to exclude all generated output dirs What's excluded (add to .gitignore): - integrations/antigravity/agency-*/ - integrations/gemini-cli/skills/ + gemini-extension.json - integrations/opencode/agent/ - integrations/cursor/rules/ - integrations/aider/CONVENTIONS.md - integrations/windsurf/.windsurfrules
76 lines
1.1 KiB
Plaintext
76 lines
1.1 KiB
Plaintext
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|
|
|
|
# Thumbnails
|
|
Thumbs.db
|
|
|
|
# Editor directories and files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Node.js (if adding web tools later)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Python (if adding scripts)
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
.venv
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
*.lcov
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Personal notes and scratch files
|
|
scratch/
|
|
notes/
|
|
TODO.md
|
|
NOTES.md
|
|
|
|
# Generated integration files — run scripts/convert.sh to regenerate locally
|
|
# The scripts/ and integrations/*/README.md files ARE committed; only generated
|
|
# agent/skill files are excluded.
|
|
integrations/antigravity/agency-*/
|
|
integrations/gemini-cli/skills/
|
|
integrations/gemini-cli/gemini-extension.json
|
|
integrations/opencode/agent/
|
|
integrations/cursor/rules/
|
|
integrations/aider/CONVENTIONS.md
|
|
integrations/windsurf/.windsurfrules
|