Context
Our research independently identified several code artifacts with zero references anywhere in the codebase — not even in tests. These are the safest possible deletions.
What to delete
factory/templates/ directory
factory/compress/ directory (351 lines)
- Contains:
evaluator.py, inner_loop.py, outer_loop.py
- Important: This is a third, unrelated "inner loop / outer loop" — a context-compression optimizer experiment. NOT the
factory/outer_loop/ (workflow topology evolution) or factory/inner_loop.py (benchmark eval bridge) that we want to keep
- Zero external references outside its own directory
factory/agents/prompts/reflector.md
factory/agents/prompts/evolver.md (38 lines)
Verification
All items verified via grep to have zero external references. Lowest-risk deletion possible. Run pytest -m smoke after to confirm nothing broke.
Related
Context
Our research independently identified several code artifacts with zero references anywhere in the codebase — not even in tests. These are the safest possible deletions.
What to delete
factory/templates/directoryfactory_config.md,score.py,design_checks/factory/,scripts/, or tests — not even as a bare filesystem path stringfactory/compress/directory (351 lines)evaluator.py,inner_loop.py,outer_loop.pyfactory/outer_loop/(workflow topology evolution) orfactory/inner_loop.py(benchmark eval bridge) that we want to keepfactory/agents/prompts/reflector.mdgrep -rn "reflector.md|prompts.reflector|resolve_prompt(\"reflector\")" factory/returns zero hitsevolver.md)factory/agents/prompts/evolver.md(38 lines)Verification
All items verified via grep to have zero external references. Lowest-risk deletion possible. Run
pytest -m smokeafter to confirm nothing broke.Related