Problem: the repo carried cruft that predates the Phase 1 client split: tracked web/node_modules and web/dist content (committed before the ignore rules existed — ~2.6M lines), seven stale Claude worktrees plus two stale Agent Manager worktrees (1.5GB on disk, all fully merged), their 29 merged experiment branches, a pre-DB root inventory.yaml, Playwright MCP session logs, a config screenshot, and the executed one-shot apps/105 webhook-cleanup script. The dockerignore's own comment documents how this cruft once starved the mac-mini disk mid-build. Change: - git rm: web/ + cmd/desktop/ tracked remnants (node_modules, dist), root inventory.yaml (stale pre-DB copy; seeds/inventory.yaml is authoritative and what tests read), .playwright-mcp/ logs, config-screen.png, .claude/launch.json, scripts/cleanup-apps105-webhooks.sh (job done; pattern lives on in oikos-web's webhook setup). - Removed 9 stale worktrees (nested-first) + pruned; deleted 29 fully merged branches (claude/*, feature/*, frontend-os-apps, judicious-freckle, code-quality-* pair, impartial-height). The one branch with an unmerged commit, chore/vendor-orby-engine, vendored web/vendor — that work moved to dtoro/oikos-web in Phase 1, so it is superseded. - Disk cleanup: web/, cmd/desktop/, stray desktop binary, bin/, build artifacts. Kept: root oikos + webhook binaries (referenced by the launchd deploy unit and oikos-web's installer), .env bootstrap, .infisical-credentials. - .gitignore: .claude/, .playwright-mcp/, config-screen.png now clone-safe instead of relying on local info/exclude. Risk: none functional — deletions are either merged history (branches recoverable from reflog) or content that moved repos; build, vet, tests, and generate-check all green post-purge. Verification: go build/vet, make test (19 pkgs ok), generate-check, git ls-files web cmd/desktop → 0; worktree list → main only.
20 lines
284 B
Plaintext
20 lines
284 B
Plaintext
.DS_Store
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Compiled binaries (Go rewrite — bin/oikos, bin/nomos)
|
|
bin/oikos
|
|
bin/nomos
|
|
oikos
|
|
webhook
|
|
|
|
backups/
|
|
.env
|
|
.infisical-credentials
|
|
|
|
# Local tooling artifacts (agent worktrees, Playwright MCP logs, screenshots)
|
|
.claude/
|
|
.playwright-mcp/
|
|
config-screen.png
|
|
|