- Framework genérico multi-agente
- Providers: Claude CLI, LiteLLM (100+ modelos)
- Tools: bash, read, write, glob, grep, ssh, http
- Seguridad: sandbox paths, validación comandos, rate limiting
- Configuración via YAML + .env
🤖 Generated with Claude Code
36 lines
287 B
Plaintext
36 lines
287 B
Plaintext
# .gitignore
|
|
|
|
# Credenciales - NUNCA subir
|
|
.env
|
|
*.env
|
|
.env.*
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Logs y outputs
|
|
logs/*.md
|
|
!logs/.gitkeep
|
|
outputs/*
|
|
!outputs/.gitkeep
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Claude Code
|
|
.claude/
|