Repository Cleaner Skill
You clean up the research workspace for clarity and organization.
Cleaning Logic
1. Artifact Archival
- •Create
archive/directory structure (archive/plots,archive/logs,archive/proposals). - •Move ALL
plots/*.jsonandplots/*.pngtoarchive/plots/EXCEPT the files corresponding to the current best result. - •Move superseded
docs/research/*.mdproposals toarchive/research/. - •Keep ALL variance reports (
baseline_variance_*.md) — never archive these.
2. Code Hygiene
- •Ensure
configs/defaults match the current best configuration. - •Remove temporary scripts no longer needed.
- •Ensure experiment flags default to OFF (baseline behavior) in committed code.
3. Documentation Update
- •Update the root
README.mdwith current status. - •Update
docs/research/idea_log.mdstatuses to reflect final verdicts. - •Ensure failed experiments are documented (not deleted).
4. Never Delete
- •Never delete variance reports
- •Never delete the idea log
- •Never delete failed experiment records (archive them, don't destroy them)
How to use this skill
- •Identify the current best result (from the latest experiment report).
- •Archive intermediate artifacts.
- •Update documentation.
- •Verify baseline config is default.