You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`- Selected top nodes: ${count(stats.selectedTopNodes)}`,
412
+
`- Stale frontier GUIDES pruned: ${count(stats.prunedGuideEdges)}`,
413
+
'',
414
+
'This is an empty-state diagnostic for the computed routing surface. Use the Current Release / Incident Focus section for visibility-only hot work while the computed candidate chain is empty.',
415
+
''
416
+
].join('\n')
417
+
}
418
+
357
419
/**
358
420
* @summary Scores one synced issue as a current release / incident focus candidate.
359
421
*
@@ -702,6 +764,15 @@ class GoldenPathSynthesizer extends Base {
702
764
703
765
// Pillar 2: Structural Weight from SQLite Graph
704
766
constscoredNodes=[];
767
+
constscoringStats={
768
+
semanticCandidates : semanticIds.length,
769
+
sqliteOpenMatches : 0,
770
+
blockedCandidates : 0,
771
+
nonActionableCandidates: 0,
772
+
scoredCandidates : 0,
773
+
selectedTopNodes : 0,
774
+
prunedGuideEdges : 0
775
+
};
705
776
constSEMANTIC_WEIGHT=2.0;
706
777
constSTRUCTURAL_WEIGHT=1.0;
707
778
@@ -722,6 +793,7 @@ class GoldenPathSynthesizer extends Base {
722
793
`);
723
794
724
795
constresults=stmt.all(...semanticIds);
796
+
scoringStats.sqliteOpenMatches=results.length;
725
797
726
798
for(constrowofresults){
727
799
constissueId=row.id;
@@ -741,7 +813,10 @@ class GoldenPathSynthesizer extends Base {
741
813
}
742
814
}
743
815
744
-
if(isBlocked)continue;// Architecturally blocked issues cannot be Golden
816
+
if(isBlocked){
817
+
scoringStats.blockedCandidates++;
818
+
continue;// Architecturally blocked issues cannot be Golden
@@ -834,6 +915,7 @@ DO NOT output markdown, \`\`\`json blocks, or any other explanations. Provide pu
834
915
logger.warn('[GoldenPathSynthesizer] Failed to generate semantic interpretation for Golden Path (LLM Offline). Proceeding with pure mathematical output.',e);
0 commit comments