d8d9d23a55
Agent memory files can contain secrets (API keys, credentials, infra details). These must not be committed to git. Memory persists on the pod's persistent volume. Git is for board-authored config only. - Added life/ and memory/ back to .gitignore - Removed git add/commit/push from CEO heartbeat sync (pull-only now) - Removed auto-merge workflow (no longer needed) Co-Authored-By: Paperclip <noreply@paperclip.ing>
31 lines
390 B
Plaintext
31 lines
390 B
Plaintext
# Agent runtime artifacts (transient, not worth tracking)
|
|
.claude/
|
|
.claude.json
|
|
.cache/
|
|
.config/
|
|
.local/
|
|
.npm/
|
|
.profile
|
|
.zshrc
|
|
.gitconfig
|
|
.kube/
|
|
|
|
# Agent memory (persists on volume, contains secrets — never commit)
|
|
life/
|
|
memory/
|
|
|
|
# Editor swap files
|
|
*.swp
|
|
*.swo
|
|
|
|
# Secrets (never commit)
|
|
secrets/
|
|
*.pem
|
|
|
|
# Sync state (local only)
|
|
.last-synced-sha
|
|
|
|
# Node artifacts
|
|
node_modules/
|
|
bun.lock
|