mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 03:49:31 +00:00
- Replace `echo -e` with `printf` in cli/install.sh for macOS bash 3.x compat
- Remove `-u` (nounset) from test/run.sh — use `${VAR:-}` pattern instead
- Replace `source <(curl ...)` with `eval "$(curl ...)"` in test/run.sh for curl|bash compat
- Add .gitignore patterns for sensitive files (.env, *.pem, *.key, credentials)
Refs #753
Agent: security-auditor
Co-authored-by: A <6723574+louisgv@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
225 B
Text
17 lines
225 B
Text
node_modules/
|
|
.docs/
|
|
__pycache__/
|
|
.claude/skills/*/start-*.sh
|
|
cli/cli.js
|
|
|
|
# Sensitive files — never commit secrets or private keys
|
|
.env
|
|
.env.*
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
id_rsa
|
|
id_ed25519
|
|
credentials.json
|
|
service-account.json
|