pluribus-context 0.3.22 → 0.3.26

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.
Files changed (93) hide show
  1. package/CHANGELOG.md +25 -3
  2. package/README.md +2 -2
  3. package/docs/community-review-packet.md +2 -1
  4. package/docs/context-budget-receipts.md +150 -0
  5. package/docs/context-input-evidence.md +397 -0
  6. package/docs/context-receipts-for-agent-observability.md +177 -0
  7. package/docs/orchestration-search-receipts.md +102 -0
  8. package/docs/portability-fidelity-report.md +4 -2
  9. package/examples/context-input-evidence/AGENTS.md +12 -0
  10. package/examples/context-input-evidence/agent-overlay-log.jsonl +4 -0
  11. package/examples/context-input-evidence/agent-overlay-otel-trace.json +548 -0
  12. package/examples/context-input-evidence/agent-overlay-receipt.ndjson +3 -0
  13. package/examples/context-input-evidence/agentgateway-progressive-disclosure-otel-trace.json +393 -0
  14. package/examples/context-input-evidence/agentgateway-progressive-disclosure-receipt.ndjson +4 -0
  15. package/examples/context-input-evidence/brain-remediation-otel-trace.json +645 -0
  16. package/examples/context-input-evidence/brain-remediation-receipt.ndjson +7 -0
  17. package/examples/context-input-evidence/claudekit-mcp-manager-otel-trace.json +417 -0
  18. package/examples/context-input-evidence/claudekit-mcp-manager-receipt.ndjson +5 -0
  19. package/examples/context-input-evidence/cli-progressive-disclosure-otel-trace.json +399 -0
  20. package/examples/context-input-evidence/cli-progressive-disclosure-receipt.ndjson +4 -0
  21. package/examples/context-input-evidence/compaction-otel-trace.json +711 -0
  22. package/examples/context-input-evidence/compaction-receipt.ndjson +6 -0
  23. package/examples/context-input-evidence/context-selection-otel-trace.json +627 -0
  24. package/examples/context-input-evidence/context-selection-receipt.ndjson +7 -0
  25. package/examples/context-input-evidence/convert-agent-overlay-log.mjs +156 -0
  26. package/examples/context-input-evidence/convert-agentgateway-progressive-disclosure-log.mjs +251 -0
  27. package/examples/context-input-evidence/convert-brain-remediation-log.mjs +241 -0
  28. package/examples/context-input-evidence/convert-claudekit-mcp-manager-log.mjs +253 -0
  29. package/examples/context-input-evidence/convert-cli-progressive-disclosure-log.mjs +251 -0
  30. package/examples/context-input-evidence/convert-compaction-log.mjs +224 -0
  31. package/examples/context-input-evidence/convert-context-selection-log.mjs +247 -0
  32. package/examples/context-input-evidence/convert-mcp-tool-search-log.mjs +242 -0
  33. package/examples/context-input-evidence/convert-memory-consolidation-log.mjs +240 -0
  34. package/examples/context-input-evidence/convert-memory-governance-delete-log.mjs +223 -0
  35. package/examples/context-input-evidence/convert-memory-log.mjs +226 -0
  36. package/examples/context-input-evidence/convert-memory-provenance-log.mjs +263 -0
  37. package/examples/context-input-evidence/convert-secret-scanning-log.mjs +233 -0
  38. package/examples/context-input-evidence/convert-session-log.mjs +186 -0
  39. package/examples/context-input-evidence/convert-skill-log.mjs +161 -0
  40. package/examples/context-input-evidence/convert-skill-registry-log.mjs +246 -0
  41. package/examples/context-input-evidence/convert-skill-routing-log.mjs +253 -0
  42. package/examples/context-input-evidence/convert-subagent-context-budget-log.mjs +267 -0
  43. package/examples/context-input-evidence/convert-subagent-delegation-log.mjs +264 -0
  44. package/examples/context-input-evidence/export-otel-trace.mjs +128 -0
  45. package/examples/context-input-evidence/generate-receipt.mjs +188 -0
  46. package/examples/context-input-evidence/mcp-tool-search-otel-trace.json +477 -0
  47. package/examples/context-input-evidence/mcp-tool-search-receipt.ndjson +5 -0
  48. package/examples/context-input-evidence/memory-consolidation-otel-trace.json +492 -0
  49. package/examples/context-input-evidence/memory-consolidation-receipt.ndjson +4 -0
  50. package/examples/context-input-evidence/memory-governance-delete-otel-trace.json +614 -0
  51. package/examples/context-input-evidence/memory-governance-delete-receipt.ndjson +5 -0
  52. package/examples/context-input-evidence/memory-otel-trace.json +645 -0
  53. package/examples/context-input-evidence/memory-provenance-otel-trace.json +711 -0
  54. package/examples/context-input-evidence/memory-provenance-receipt.ndjson +5 -0
  55. package/examples/context-input-evidence/memory-receipt.ndjson +4 -0
  56. package/examples/context-input-evidence/otel-trace.json +1119 -0
  57. package/examples/context-input-evidence/receipt.ndjson +6 -0
  58. package/examples/context-input-evidence/sample-agentgateway-progressive-disclosure-log.jsonl +5 -0
  59. package/examples/context-input-evidence/sample-brain-remediation-log.jsonl +9 -0
  60. package/examples/context-input-evidence/sample-claudekit-mcp-manager-log.jsonl +6 -0
  61. package/examples/context-input-evidence/sample-cli-progressive-disclosure-log.jsonl +5 -0
  62. package/examples/context-input-evidence/sample-compaction-log.jsonl +7 -0
  63. package/examples/context-input-evidence/sample-context-selection-log.jsonl +7 -0
  64. package/examples/context-input-evidence/sample-mcp-tool-search-log.jsonl +6 -0
  65. package/examples/context-input-evidence/sample-memory-consolidation-log.jsonl +5 -0
  66. package/examples/context-input-evidence/sample-memory-governance-delete-log.jsonl +6 -0
  67. package/examples/context-input-evidence/sample-memory-provenance-log.jsonl +6 -0
  68. package/examples/context-input-evidence/sample-memory-retrieval-log.jsonl +6 -0
  69. package/examples/context-input-evidence/sample-secret-scanning-log.jsonl +7 -0
  70. package/examples/context-input-evidence/sample-session-log.jsonl +6 -0
  71. package/examples/context-input-evidence/sample-skill-registry-log.jsonl +5 -0
  72. package/examples/context-input-evidence/sample-skill-routing-log.jsonl +7 -0
  73. package/examples/context-input-evidence/sample-subagent-context-budget-log.jsonl +6 -0
  74. package/examples/context-input-evidence/sample-subagent-delegation-log.jsonl +5 -0
  75. package/examples/context-input-evidence/secret-scanning-otel-trace.json +794 -0
  76. package/examples/context-input-evidence/secret-scanning-receipt.ndjson +6 -0
  77. package/examples/context-input-evidence/session-otel-trace.json +411 -0
  78. package/examples/context-input-evidence/session-receipt.ndjson +2 -0
  79. package/examples/context-input-evidence/skill-invocation-log.jsonl +4 -0
  80. package/examples/context-input-evidence/skill-otel-trace.json +548 -0
  81. package/examples/context-input-evidence/skill-receipt.ndjson +3 -0
  82. package/examples/context-input-evidence/skill-registry-otel-trace.json +471 -0
  83. package/examples/context-input-evidence/skill-registry-receipt.ndjson +5 -0
  84. package/examples/context-input-evidence/skill-routing-otel-trace.json +567 -0
  85. package/examples/context-input-evidence/skill-routing-receipt.ndjson +6 -0
  86. package/examples/context-input-evidence/subagent-context-budget-otel-trace.json +507 -0
  87. package/examples/context-input-evidence/subagent-context-budget-receipt.ndjson +5 -0
  88. package/examples/context-input-evidence/subagent-delegation-otel-trace.json +388 -0
  89. package/examples/context-input-evidence/subagent-delegation-receipt.ndjson +4 -0
  90. package/package.json +6 -2
  91. package/schemas/audit-result.schema.json +409 -71
  92. package/src/commands/audit.js +64 -3
  93. package/src/utils/version.js +1 -1
@@ -0,0 +1,492 @@
1
+ {
2
+ "resourceSpans": [
3
+ {
4
+ "resource": {
5
+ "attributes": [
6
+ {
7
+ "key": "service.name",
8
+ "value": {
9
+ "stringValue": "pluribus-memory-consolidation-receipt-demo"
10
+ }
11
+ },
12
+ {
13
+ "key": "service.version",
14
+ "value": {
15
+ "stringValue": "0.0.0-fixture"
16
+ }
17
+ },
18
+ {
19
+ "key": "deployment.environment.name",
20
+ "value": {
21
+ "stringValue": "local-fixture"
22
+ }
23
+ }
24
+ ]
25
+ },
26
+ "scopeSpans": [
27
+ {
28
+ "scope": {
29
+ "name": "pluribus.context_input_evidence.memory_consolidation_demo",
30
+ "version": "0.0.0-fixture"
31
+ },
32
+ "spans": [
33
+ {
34
+ "traceId": "9e9f0d2944df7cacae490bb5cebd5bcf",
35
+ "spanId": "ff9a153652f2ab06",
36
+ "parentSpanId": "",
37
+ "name": "agent.session.memory.consolidation",
38
+ "kind": 1,
39
+ "startTimeUnixNano": "1779400981000000000",
40
+ "endTimeUnixNano": "1779400986000000000",
41
+ "attributes": [
42
+ {
43
+ "key": "session.id",
44
+ "value": {
45
+ "stringValue": "demo-session-memory-consolidation"
46
+ }
47
+ },
48
+ {
49
+ "key": "gen_ai.conversation.id",
50
+ "value": {
51
+ "stringValue": "conv-memory-consolidation-001"
52
+ }
53
+ },
54
+ {
55
+ "key": "agent.name",
56
+ "value": {
57
+ "stringValue": "claude-code"
58
+ }
59
+ },
60
+ {
61
+ "key": "workspace.name",
62
+ "value": {
63
+ "stringValue": "checkout-service"
64
+ }
65
+ },
66
+ {
67
+ "key": "gen_ai.request.model",
68
+ "value": {
69
+ "stringValue": "claude-opus-4.5"
70
+ }
71
+ },
72
+ {
73
+ "key": "memory.consolidation.mode",
74
+ "value": {
75
+ "stringValue": "incremental"
76
+ }
77
+ },
78
+ {
79
+ "key": "memory.consolidation.trigger",
80
+ "value": {
81
+ "stringValue": "session_end_hook"
82
+ }
83
+ }
84
+ ],
85
+ "events": [
86
+ {
87
+ "name": "memory.consolidation.precheck",
88
+ "timeUnixNano": "1779400981000000000",
89
+ "attributes": [
90
+ {
91
+ "key": "session.id",
92
+ "value": {
93
+ "stringValue": "demo-session-memory-consolidation"
94
+ }
95
+ },
96
+ {
97
+ "key": "gen_ai.conversation.id",
98
+ "value": {
99
+ "stringValue": "conv-memory-consolidation-001"
100
+ }
101
+ },
102
+ {
103
+ "key": "agent.name",
104
+ "value": {
105
+ "stringValue": "claude-code"
106
+ }
107
+ },
108
+ {
109
+ "key": "memory.provider",
110
+ "value": {
111
+ "stringValue": "mcp-memory-service"
112
+ }
113
+ },
114
+ {
115
+ "key": "memory.client",
116
+ "value": {
117
+ "stringValue": "claude-code-stop-hook"
118
+ }
119
+ },
120
+ {
121
+ "key": "memory.project.hash",
122
+ "value": {
123
+ "stringValue": "sha256:b201e758be78"
124
+ }
125
+ },
126
+ {
127
+ "key": "memory.consolidation.mode",
128
+ "value": {
129
+ "stringValue": "incremental"
130
+ }
131
+ },
132
+ {
133
+ "key": "memory.consolidation.trigger",
134
+ "value": {
135
+ "stringValue": "session_end_hook"
136
+ }
137
+ },
138
+ {
139
+ "key": "memory.consolidation.horizon",
140
+ "value": {
141
+ "stringValue": "incremental"
142
+ }
143
+ },
144
+ {
145
+ "key": "memory.consolidation.last_run_at_hash",
146
+ "value": {
147
+ "stringValue": "sha256:6fa4f8db83e4"
148
+ }
149
+ },
150
+ {
151
+ "key": "memory.consolidation.candidate_count",
152
+ "value": {
153
+ "intValue": "7"
154
+ }
155
+ },
156
+ {
157
+ "key": "memory.consolidation.candidate_count_bucket",
158
+ "value": {
159
+ "stringValue": "under_25"
160
+ }
161
+ },
162
+ {
163
+ "key": "memory.consolidation.candidate_ids_hash",
164
+ "value": {
165
+ "stringValue": "sha256:3a8e07fcf597224d433a0b7927f19d1f432220f19b7f4360328a2bd4589a242d"
166
+ }
167
+ },
168
+ {
169
+ "key": "memory.consolidation.project_path_hash",
170
+ "value": {
171
+ "stringValue": "sha256:40b7949cdc39c7bac6bc8459e704df6adfde115f3e79dd12ea14b016b86d558e"
172
+ }
173
+ },
174
+ {
175
+ "key": "memory.consolidation.precheck_latency_bucket",
176
+ "value": {
177
+ "stringValue": "under_1s"
178
+ }
179
+ },
180
+ {
181
+ "key": "privacy.raw_candidate_text_recorded",
182
+ "value": {
183
+ "boolValue": false
184
+ }
185
+ },
186
+ {
187
+ "key": "privacy.raw_project_path_recorded",
188
+ "value": {
189
+ "boolValue": false
190
+ }
191
+ }
192
+ ]
193
+ },
194
+ {
195
+ "name": "memory.consolidation.cluster.selected",
196
+ "timeUnixNano": "1779400982000000000",
197
+ "attributes": [
198
+ {
199
+ "key": "session.id",
200
+ "value": {
201
+ "stringValue": "demo-session-memory-consolidation"
202
+ }
203
+ },
204
+ {
205
+ "key": "gen_ai.conversation.id",
206
+ "value": {
207
+ "stringValue": "conv-memory-consolidation-001"
208
+ }
209
+ },
210
+ {
211
+ "key": "memory.consolidation.cluster.hash",
212
+ "value": {
213
+ "stringValue": "sha256:6ac5775289a2"
214
+ }
215
+ },
216
+ {
217
+ "key": "memory.consolidation.cluster.strategy",
218
+ "value": {
219
+ "stringValue": "semantic_similarity_recent_only"
220
+ }
221
+ },
222
+ {
223
+ "key": "memory.consolidation.cluster.source_count",
224
+ "value": {
225
+ "intValue": "3"
226
+ }
227
+ },
228
+ {
229
+ "key": "memory.consolidation.cluster.source_ids_hash",
230
+ "value": {
231
+ "stringValue": "sha256:656de53a20ba50d99398149fcfbb619a9dbc8af6b77ebc36321838cece2105d8"
232
+ }
233
+ },
234
+ {
235
+ "key": "memory.consolidation.cluster.topic_hash",
236
+ "value": {
237
+ "stringValue": "sha256:5e987bafa92903ad016d759a61b6fe1b7e235627e3d4bfaff5fb70e7f03ec38c"
238
+ }
239
+ },
240
+ {
241
+ "key": "memory.consolidation.cluster.similarity_bucket",
242
+ "value": {
243
+ "stringValue": "high"
244
+ }
245
+ },
246
+ {
247
+ "key": "memory.consolidation.cluster.max_source_age_minutes_bucket",
248
+ "value": {
249
+ "stringValue": "under_25"
250
+ }
251
+ },
252
+ {
253
+ "key": "privacy.raw_cluster_notes_recorded",
254
+ "value": {
255
+ "boolValue": false
256
+ }
257
+ },
258
+ {
259
+ "key": "privacy.raw_memory_text_recorded",
260
+ "value": {
261
+ "boolValue": false
262
+ }
263
+ }
264
+ ]
265
+ },
266
+ {
267
+ "name": "memory.consolidation.output.created",
268
+ "timeUnixNano": "1779400985000000000",
269
+ "attributes": [
270
+ {
271
+ "key": "session.id",
272
+ "value": {
273
+ "stringValue": "demo-session-memory-consolidation"
274
+ }
275
+ },
276
+ {
277
+ "key": "gen_ai.conversation.id",
278
+ "value": {
279
+ "stringValue": "conv-memory-consolidation-001"
280
+ }
281
+ },
282
+ {
283
+ "key": "memory.consolidation.output.hash",
284
+ "value": {
285
+ "stringValue": "sha256:bc3549d4c19f"
286
+ }
287
+ },
288
+ {
289
+ "key": "memory.consolidation.cluster.hash",
290
+ "value": {
291
+ "stringValue": "sha256:6ac5775289a2"
292
+ }
293
+ },
294
+ {
295
+ "key": "memory.consolidation.output.source_ids_hash",
296
+ "value": {
297
+ "stringValue": "sha256:656de53a20ba50d99398149fcfbb619a9dbc8af6b77ebc36321838cece2105d8"
298
+ }
299
+ },
300
+ {
301
+ "key": "memory.consolidation.output.memory_type",
302
+ "value": {
303
+ "stringValue": "runbook"
304
+ }
305
+ },
306
+ {
307
+ "key": "memory.consolidation.output.lineage_edge",
308
+ "value": {
309
+ "stringValue": "CONSOLIDATED_FROM"
310
+ }
311
+ },
312
+ {
313
+ "key": "memory.consolidation.output.content_hash",
314
+ "value": {
315
+ "stringValue": "sha256:935570ce28816bf02086a4f0e279be5674fcd5320e973a2030d3ccc52f82ee67"
316
+ }
317
+ },
318
+ {
319
+ "key": "memory.consolidation.quality_score_before_bucket",
320
+ "value": {
321
+ "stringValue": "medium"
322
+ }
323
+ },
324
+ {
325
+ "key": "memory.consolidation.quality_score_after_bucket",
326
+ "value": {
327
+ "stringValue": "high"
328
+ }
329
+ },
330
+ {
331
+ "key": "memory.consolidation.changed_entity_count_bucket",
332
+ "value": {
333
+ "stringValue": "under_5"
334
+ }
335
+ },
336
+ {
337
+ "key": "memory.consolidation.changed_entities_hash",
338
+ "value": {
339
+ "stringValue": "sha256:44de31988396739fbde8aa35604c41f3afa6faf29deb9fdae37459ce4b3557c5"
340
+ }
341
+ },
342
+ {
343
+ "key": "memory.consolidation.output_latency_bucket",
344
+ "value": {
345
+ "stringValue": "under_10s"
346
+ }
347
+ },
348
+ {
349
+ "key": "privacy.raw_consolidated_memory_recorded",
350
+ "value": {
351
+ "boolValue": false
352
+ }
353
+ },
354
+ {
355
+ "key": "privacy.raw_entity_names_recorded",
356
+ "value": {
357
+ "boolValue": false
358
+ }
359
+ }
360
+ ]
361
+ },
362
+ {
363
+ "name": "memory.consolidation.completed",
364
+ "timeUnixNano": "1779400986000000000",
365
+ "attributes": [
366
+ {
367
+ "key": "session.id",
368
+ "value": {
369
+ "stringValue": "demo-session-memory-consolidation"
370
+ }
371
+ },
372
+ {
373
+ "key": "gen_ai.conversation.id",
374
+ "value": {
375
+ "stringValue": "conv-memory-consolidation-001"
376
+ }
377
+ },
378
+ {
379
+ "key": "memory.provider",
380
+ "value": {
381
+ "stringValue": "mcp-memory-service"
382
+ }
383
+ },
384
+ {
385
+ "key": "memory.client",
386
+ "value": {
387
+ "stringValue": "claude-code-stop-hook"
388
+ }
389
+ },
390
+ {
391
+ "key": "memory.project.hash",
392
+ "value": {
393
+ "stringValue": "sha256:b201e758be78"
394
+ }
395
+ },
396
+ {
397
+ "key": "memory.consolidation.mode",
398
+ "value": {
399
+ "stringValue": "incremental"
400
+ }
401
+ },
402
+ {
403
+ "key": "memory.consolidation.trigger",
404
+ "value": {
405
+ "stringValue": "session_end_hook"
406
+ }
407
+ },
408
+ {
409
+ "key": "memory.consolidation.candidate_count",
410
+ "value": {
411
+ "intValue": "7"
412
+ }
413
+ },
414
+ {
415
+ "key": "memory.consolidation.cluster_count",
416
+ "value": {
417
+ "intValue": "1"
418
+ }
419
+ },
420
+ {
421
+ "key": "memory.consolidation.consolidated_count",
422
+ "value": {
423
+ "intValue": "1"
424
+ }
425
+ },
426
+ {
427
+ "key": "memory.consolidation.skipped_count",
428
+ "value": {
429
+ "intValue": "4"
430
+ }
431
+ },
432
+ {
433
+ "key": "memory.consolidation.duration_bucket",
434
+ "value": {
435
+ "stringValue": "under_10s"
436
+ }
437
+ },
438
+ {
439
+ "key": "memory.consolidation.latency_budget_bucket",
440
+ "value": {
441
+ "stringValue": "under_60s"
442
+ }
443
+ },
444
+ {
445
+ "key": "memory.consolidation.within_latency_budget",
446
+ "value": {
447
+ "boolValue": true
448
+ }
449
+ },
450
+ {
451
+ "key": "memory.consolidation.status",
452
+ "value": {
453
+ "stringValue": "completed"
454
+ }
455
+ },
456
+ {
457
+ "key": "memory.consolidation.next_cursor_hash",
458
+ "value": {
459
+ "stringValue": "sha256:1ff11bee84fd"
460
+ }
461
+ },
462
+ {
463
+ "key": "memory.consolidation.audit_gap",
464
+ "value": {
465
+ "stringValue": "receipt_proves_bounded_run_and_lineage_not_summary_correctness"
466
+ }
467
+ },
468
+ {
469
+ "key": "privacy.raw_operator_note_recorded",
470
+ "value": {
471
+ "boolValue": false
472
+ }
473
+ },
474
+ {
475
+ "key": "privacy.raw_memory_text_recorded",
476
+ "value": {
477
+ "boolValue": false
478
+ }
479
+ }
480
+ ]
481
+ }
482
+ ],
483
+ "status": {
484
+ "code": 1
485
+ }
486
+ }
487
+ ]
488
+ }
489
+ ]
490
+ }
491
+ ]
492
+ }
@@ -0,0 +1,4 @@
1
+ {"trace_id":"9e9f0d2944df7cacae490bb5cebd5bcf","span_id":"ff9a153652f2ab06","name":"memory.consolidation.precheck","time":"2026-05-21T22:03:01.000Z","attributes":{"session.id":"demo-session-memory-consolidation","gen_ai.conversation.id":"conv-memory-consolidation-001","agent.name":"claude-code","memory.provider":"mcp-memory-service","memory.client":"claude-code-stop-hook","memory.project.hash":"sha256:b201e758be78","memory.consolidation.mode":"incremental","memory.consolidation.trigger":"session_end_hook","memory.consolidation.horizon":"incremental","memory.consolidation.last_run_at_hash":"sha256:6fa4f8db83e4","memory.consolidation.candidate_count":7,"memory.consolidation.candidate_count_bucket":"under_25","memory.consolidation.candidate_ids_hash":"sha256:3a8e07fcf597224d433a0b7927f19d1f432220f19b7f4360328a2bd4589a242d","memory.consolidation.project_path_hash":"sha256:40b7949cdc39c7bac6bc8459e704df6adfde115f3e79dd12ea14b016b86d558e","memory.consolidation.precheck_latency_bucket":"under_1s","privacy.raw_candidate_text_recorded":false,"privacy.raw_project_path_recorded":false}}
2
+ {"trace_id":"9e9f0d2944df7cacae490bb5cebd5bcf","span_id":"ff9a153652f2ab06","name":"memory.consolidation.cluster.selected","time":"2026-05-21T22:03:02.000Z","attributes":{"session.id":"demo-session-memory-consolidation","gen_ai.conversation.id":"conv-memory-consolidation-001","memory.consolidation.cluster.hash":"sha256:6ac5775289a2","memory.consolidation.cluster.strategy":"semantic_similarity_recent_only","memory.consolidation.cluster.source_count":3,"memory.consolidation.cluster.source_ids_hash":"sha256:656de53a20ba50d99398149fcfbb619a9dbc8af6b77ebc36321838cece2105d8","memory.consolidation.cluster.topic_hash":"sha256:5e987bafa92903ad016d759a61b6fe1b7e235627e3d4bfaff5fb70e7f03ec38c","memory.consolidation.cluster.similarity_bucket":"high","memory.consolidation.cluster.max_source_age_minutes_bucket":"under_25","privacy.raw_cluster_notes_recorded":false,"privacy.raw_memory_text_recorded":false}}
3
+ {"trace_id":"9e9f0d2944df7cacae490bb5cebd5bcf","span_id":"ff9a153652f2ab06","name":"memory.consolidation.output.created","time":"2026-05-21T22:03:05.000Z","attributes":{"session.id":"demo-session-memory-consolidation","gen_ai.conversation.id":"conv-memory-consolidation-001","memory.consolidation.output.hash":"sha256:bc3549d4c19f","memory.consolidation.cluster.hash":"sha256:6ac5775289a2","memory.consolidation.output.source_ids_hash":"sha256:656de53a20ba50d99398149fcfbb619a9dbc8af6b77ebc36321838cece2105d8","memory.consolidation.output.memory_type":"runbook","memory.consolidation.output.lineage_edge":"CONSOLIDATED_FROM","memory.consolidation.output.content_hash":"sha256:935570ce28816bf02086a4f0e279be5674fcd5320e973a2030d3ccc52f82ee67","memory.consolidation.quality_score_before_bucket":"medium","memory.consolidation.quality_score_after_bucket":"high","memory.consolidation.changed_entity_count_bucket":"under_5","memory.consolidation.changed_entities_hash":"sha256:44de31988396739fbde8aa35604c41f3afa6faf29deb9fdae37459ce4b3557c5","memory.consolidation.output_latency_bucket":"under_10s","privacy.raw_consolidated_memory_recorded":false,"privacy.raw_entity_names_recorded":false}}
4
+ {"trace_id":"9e9f0d2944df7cacae490bb5cebd5bcf","span_id":"ff9a153652f2ab06","name":"memory.consolidation.completed","time":"2026-05-21T22:03:06.000Z","attributes":{"session.id":"demo-session-memory-consolidation","gen_ai.conversation.id":"conv-memory-consolidation-001","memory.provider":"mcp-memory-service","memory.client":"claude-code-stop-hook","memory.project.hash":"sha256:b201e758be78","memory.consolidation.mode":"incremental","memory.consolidation.trigger":"session_end_hook","memory.consolidation.candidate_count":7,"memory.consolidation.cluster_count":1,"memory.consolidation.consolidated_count":1,"memory.consolidation.skipped_count":4,"memory.consolidation.duration_bucket":"under_10s","memory.consolidation.latency_budget_bucket":"under_60s","memory.consolidation.within_latency_budget":true,"memory.consolidation.status":"completed","memory.consolidation.next_cursor_hash":"sha256:1ff11bee84fd","memory.consolidation.audit_gap":"receipt_proves_bounded_run_and_lineage_not_summary_correctness","privacy.raw_operator_note_recorded":false,"privacy.raw_memory_text_recorded":false}}