@@ -23,6 +23,8 @@ const Path = three_paths.Path;
2323const PREV_PATH = ".trinity/faculty_prev.dat" ;
2424const TG_HASH_PATH = ".trinity/faculty_tg_hash.dat" ;
2525const AGENT_CMD_LOG = ".trinity/agent_commands.log" ;
26+ const REGEN_REPORT = "specs/REGENERATION_REPORT.md" ;
27+ const MU_LEARNING_DB = ".trinity/mu/learning_db.json" ;
2628
2729// ═══════════════════════════════════════════════════════════════════════════════
2830// DATA COLLECTION
@@ -496,7 +498,7 @@ fn countBinaries() u8 {
496498const RegenStats = struct { pass : u16 , total : u16 };
497499
498500fn parseRegenReport (allocator : Allocator ) RegenStats {
499- const content = std .fs .cwd ().readFileAlloc (allocator , "specs/REGENERATION_REPORT.md" , 256 * 1024 ) catch
501+ const content = std .fs .cwd ().readFileAlloc (allocator , REGEN_REPORT , 256 * 1024 ) catch
500502 return .{ .pass = 0 , .total = 0 };
501503 defer allocator .free (content );
502504
@@ -551,7 +553,7 @@ fn countOpenIssues(allocator: Allocator) u16 {
551553}
552554
553555fn countMuPatterns (allocator : Allocator ) u16 {
554- const content = std .fs .cwd ().readFileAlloc (allocator , ".trinity/mu/learning_db.json" , 64 * 1024 ) catch
556+ const content = std .fs .cwd ().readFileAlloc (allocator , MU_LEARNING_DB , 64 * 1024 ) catch
555557 return 0 ;
556558 defer allocator .free (content );
557559 // Count pattern entries
0 commit comments