@riddledc/riddle-proof 0.5.47 → 0.5.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -199,6 +199,18 @@ interface RiddleProofRunCard {
199
199
  proof_evidence_present?: boolean;
200
200
  artifacts?: RiddleProofCheckpointArtifact[];
201
201
  };
202
+ observability?: {
203
+ engine_call_count?: number;
204
+ agent_call_count?: number;
205
+ engine_total_ms?: number;
206
+ agent_total_ms?: number;
207
+ max_agent_prompt_chars?: number;
208
+ total_agent_prompt_chars?: number;
209
+ recent_engine_timings?: Array<Record<string, unknown>>;
210
+ recent_agent_timings?: Array<Record<string, unknown>>;
211
+ retry_event_count?: number;
212
+ recent_retry_reasons?: Array<Record<string, unknown>>;
213
+ };
202
214
  stop_condition: {
203
215
  status: RiddleProofStatus;
204
216
  terminal?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riddledc/riddle-proof",
3
- "version": "0.5.47",
3
+ "version": "0.5.49",
4
4
  "description": "Reusable Riddle Proof contracts and helpers for evidence-backed agent changes.",
5
5
  "license": "MIT",
6
6
  "author": "RiddleDC",