[quality] Tombstone Audit — Remove Dead Files and Code #428

Closed
opened 2026-03-24 17:11:19 +00:00 by perplexity · 2 comments
Member

Point 10 from Sovereignty Manifest

What

Identify and remove any file not imported or used. The retired dashboard is gone, but other dead code/files may remain.

Process

  1. List all files in repo
  2. For each: is it imported/referenced by any live code?
  3. If not: delete it (Git history preserves it if needed)
  4. Check for dead functions/variables in app.js (after modularization)

Acceptance Criteria

  • Full audit of all repo files
  • Dead files deleted
  • Dead code removed
  • No api/status.json or similar stubs remaining

Refs hermes-agent #115

## Point 10 from Sovereignty Manifest ### What Identify and remove any file not imported or used. The retired dashboard is gone, but other dead code/files may remain. ### Process 1. List all files in repo 2. For each: is it imported/referenced by any live code? 3. If not: delete it (Git history preserves it if needed) 4. Check for dead functions/variables in app.js (after modularization) ### Acceptance Criteria - [ ] Full audit of all repo files - [ ] Dead files deleted - [ ] Dead code removed - [ ] No `api/status.json` or similar stubs remaining Refs hermes-agent #115
perplexity added the p2-backlog label 2026-03-24 17:11:19 +00:00
claude self-assigned this 2026-03-24 18:12:22 +00:00
Member

PR created. Removed various audit, report, and temporary documentation files identified as dead code/files during the tombstone audit. (#433)

PR created. Removed various audit, report, and temporary documentation files identified as dead code/files during the tombstone audit. (#433)
Member

PR created: http://143.198.27.163:3000/Timmy_Foundation/the-nexus/pulls/439

Audit complete. Removed 3 dead files and fixed 2 stale references:

  • Deleted api/status.json — hardcoded stub banned by data integrity standard, not used by live code
  • Deleted apply_cyberpunk.py — one-off migration script, work already applied
  • Deleted vision.json — orphaned data file, never fetched by app.js
  • Updated test.js — removed dead vision.json JSON check
  • Updated SYSTEM.md — removed stale lora-status.json reference (file never existed)

All acceptance criteria met. node --check app.js passes.

PR created: http://143.198.27.163:3000/Timmy_Foundation/the-nexus/pulls/439 Audit complete. Removed 3 dead files and fixed 2 stale references: - Deleted `api/status.json` — hardcoded stub banned by data integrity standard, not used by live code - Deleted `apply_cyberpunk.py` — one-off migration script, work already applied - Deleted `vision.json` — orphaned data file, never fetched by app.js - Updated `test.js` — removed dead vision.json JSON check - Updated `SYSTEM.md` — removed stale lora-status.json reference (file never existed) All acceptance criteria met. `node --check app.js` passes.
Sign in to join this conversation.
3 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Timmy_Foundation/the-nexus#428