Removes: - .mindmodel/ directory and related CI workflows (mindmodel-schedule.yml, mindmodel-validation.yml) - scripts/mindmodel/ and scripts/validate_mindmodel.py - src/types/ and src/validators/ (orphaned type modules, only used by mindmodel) - tests/ci/, tests/scripts/mindmodel/, tests/types/, tests/validators/ (mindmodel-only tests) - thoughts/ledgers/ and thoughts/shared/ (stale transient directories) - .venv_axis and .venv_plotly (orphaned virtual environments, ~1.1 GB) - outputs/blog-charts/ (stale generated HTML files) - data/*.json sidecars (empty cache artifacts) - __pycache__ and *.pyc files across repo Updates: - .gitignore: remove thoughts/shared/analyses/ entry Space reclaimed: ~1.1 GB+
35 lines
453 B
Plaintext
35 lines
453 B
Plaintext
# Python-generated files
|
|
__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info
|
|
|
|
# Virtual environments
|
|
.venv
|
|
|
|
# Database files (large binary, not suited for git)
|
|
data/*.db
|
|
data/*.bak
|
|
data/*.json
|
|
|
|
# Generated output files
|
|
outputs/
|
|
outputs_*/
|
|
|
|
# Stray temp files
|
|
dummy
|
|
|
|
.env
|
|
|
|
# Worktrees
|
|
.worktrees/
|
|
|
|
# Generated analysis files
|
|
thoughts/explorer/*.json
|
|
thoughts/explorer/*_report.md
|
|
|
|
# Compound Engineering local config
|
|
.compound-engineering/*.local.yaml
|