1e68fa9361
Initialize claude-brain repository with .gitignore and experiments/ placeholder directory. - .gitignore covers Python artifacts, experiments WIP, secret resolution artifacts (*-resolved.json, .brain-deferred-secrets.txt), OS/editor files - experiments/README.md + .gitkeep preserves directory while ignoring contents
28 lines
325 B
Plaintext
28 lines
325 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Experiments — work-in-progress, not synced to consumers
|
|
experiments/*
|
|
!experiments/README.md
|
|
!experiments/.gitkeep
|
|
|
|
# Secret resolution artifacts (post-install)
|
|
*-resolved.json
|
|
.brain-deferred-secrets.txt
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*~
|
|
|
|
# Logs
|
|
*.log
|