- scripts/bootstrap.sh: curl-pipe-sh one-liner that clones to ~/.agents/skills/ and symlinks to all detected global platforms - install.sh: symlink self-installer for cloned repos with --dry-run and --uninstall - scripts/install-skill.sh: universal installer for any skill (git URL or local path) to all detected platforms with format adapters - SKILL.md: add silent git-based update check instruction - README.md: document all new install options and update project structure - .gitignore: add *.mdc for generated adapter files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
49 lines
405 B
Plaintext
49 lines
405 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Linter cache
|
|
.ruff_cache/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Runtime directories
|
|
cache/
|
|
data/
|
|
|
|
# AgentDB databases
|
|
*.db
|
|
agentdb.db
|
|
|
|
# Test files
|
|
test_*.py
|
|
!test_agentdb_learning.py
|
|
tests/
|
|
|
|
# Generated format adapter files
|
|
*.mdc
|