3212dc19ee
scripts/cleanup-open-human-model.sh is the one-off used on 2026-05-25 to hard-delete the exploratory open-human-model RFC from wiggleverse/meta, reserving the RFC #1 slot for the eventual `human` RFC. Kept in-tree as the audit artifact for that removal. .claude/launch.json captures the frontend dev-server invocation (port 5180, --strictPort) so contributors and tooling can launch the same way. .gitignore now excludes .claude/settings.local.json, which is per-machine permissions and not appropriate to share. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
29 lines
311 B
Plaintext
29 lines
311 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
.vite/
|
|
|
|
# Local state
|
|
.env
|
|
.env.local
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
data/
|
|
|
|
# OS
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Claude Code (per-machine settings only; shared config under .claude/ is committed)
|
|
.claude/settings.local.json
|