Files
hyperguild/.gitignore
Mathias Bergqvist 48d2d7dd73 fix: remove committed binary and stop leaking API key in prompt
Remove cmd/supervisor/supervisor binary from git (was accidentally
committed) and add it to .gitignore. Move LITELLM_API_KEY from the
prompt string into the subprocess env, preventing it from appearing
in error log output when JSON parsing fails.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-17 08:49:44 +02:00

43 lines
608 B
Plaintext

# Worktrees
.worktrees/
# Binaries
bin/
*.exe
cmd/supervisor/supervisor
# Go
vendor/
# ── Generated context files (adapter outputs) ──
# Canonical sources: .context/PROJECT.md + .skills/*/SKILL.md
# Everything below is disposable — regenerate with: task context:sync
AGENTS.md
CLAUDE.md
.cursorrules
.aider.conventions.md
.aider.conf.yml
.context/system-prompt.txt
# ── Sensitive ──
.env
.env.local
.env.*.local
*.key
*.pem
secrets/
# ── Documented examples (commit these) ──
!.env.example
!config/supervisor/CLAUDE.md
# IDE
.idea/
.vscode/
*.swp
*~
# OS
.DS_Store
Thumbs.db