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
Copy file name to clipboardExpand all lines: src/context-registry/usage-ledger.ts
+32-5Lines changed: 32 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,13 @@ function contextAdvice(result: ContextFetchResult): ContextAdviceDecision[] {
81
81
constdecisions: ContextAdviceDecision[]=[];
82
82
if(result.selectedFiles.length){
83
83
decisions.push(
84
-
decision(result,"file-location","adopted",`Use ${result.selectedFiles.length} Context file(s) to locate relevant implementation details.`,"Files were explicitly selected for inspection.")
84
+
decision(
85
+
result,
86
+
"file-location",
87
+
"adopted",
88
+
`Use ${result.selectedFiles.length} Context file(s) to locate relevant implementation details.`,
decisions.push(decision(result,"error-handling","available",`Error-handling guidance is available from ${file.path}.`,"Guidance may inform a repair but cannot prove it worked.",file.path));
106
+
decisions.push(
107
+
decision(
108
+
result,
109
+
"error-handling",
110
+
"available",
111
+
`Error-handling guidance is available from ${file.path}.`,
112
+
"Guidance may inform a repair but cannot prove it worked.",
Copy file name to clipboardExpand all lines: src/harness/observability/intervention-mapper.ts
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,11 @@ export function recordIterationInterventions(input: RecordIterationInterventions
72
72
findingId: suggestion.id,
73
73
category: "context",
74
74
problem: suggestion.summary,
75
-
action: rejected ? "do not execute or treat as verification" : suggestion.disposition==="adopted" ? "use as contextual guidance" : "keep available for review",
0 commit comments