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,645 @@
1
+ {
2
+ "resourceSpans": [
3
+ {
4
+ "resource": {
5
+ "attributes": [
6
+ {
7
+ "key": "service.name",
8
+ "value": {
9
+ "stringValue": "pluribus-shared-memory-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_receipt_demo",
30
+ "version": "0.0.0-fixture"
31
+ },
32
+ "spans": [
33
+ {
34
+ "traceId": "7db8273c9ea646b50fc1e7860d3499b3",
35
+ "spanId": "222c7fc93a43ac64",
36
+ "parentSpanId": "",
37
+ "name": "agent.session",
38
+ "kind": 1,
39
+ "startTimeUnixNano": "1779375600000000000",
40
+ "endTimeUnixNano": "1779375608000000000",
41
+ "attributes": [
42
+ {
43
+ "key": "session.id",
44
+ "value": {
45
+ "stringValue": "demo-shared-memory-receipts"
46
+ }
47
+ },
48
+ {
49
+ "key": "gen_ai.conversation.id",
50
+ "value": {
51
+ "stringValue": "conv-shared-memory-receipts"
52
+ }
53
+ },
54
+ {
55
+ "key": "gen_ai.agent.name",
56
+ "value": {
57
+ "stringValue": "claude-code"
58
+ }
59
+ },
60
+ {
61
+ "key": "gen_ai.operation.name",
62
+ "value": {
63
+ "stringValue": "agent_session"
64
+ }
65
+ },
66
+ {
67
+ "key": "code.repository.name",
68
+ "value": {
69
+ "stringValue": "checkout-service"
70
+ }
71
+ },
72
+ {
73
+ "key": "pluribus.memory_search.count",
74
+ "value": {
75
+ "intValue": "2"
76
+ }
77
+ },
78
+ {
79
+ "key": "pluribus.memory_load.count",
80
+ "value": {
81
+ "intValue": "2"
82
+ }
83
+ }
84
+ ],
85
+ "events": [
86
+ {
87
+ "name": "memory.search.returned",
88
+ "timeUnixNano": "1779375601000000000",
89
+ "attributes": [
90
+ {
91
+ "key": "memory.provider",
92
+ "value": {
93
+ "stringValue": "supermemory-mcp"
94
+ }
95
+ },
96
+ {
97
+ "key": "memory.client",
98
+ "value": {
99
+ "stringValue": "claude-code"
100
+ }
101
+ },
102
+ {
103
+ "key": "memory.project.hash",
104
+ "value": {
105
+ "stringValue": "sha256:b201e758be78"
106
+ }
107
+ },
108
+ {
109
+ "key": "memory.retrieval.id_hash",
110
+ "value": {
111
+ "stringValue": "sha256:d774333941d2"
112
+ }
113
+ },
114
+ {
115
+ "key": "memory.query.hash",
116
+ "value": {
117
+ "stringValue": "sha256:b5a2e08368b25744a4128117656fbc97f8f6fa98928cc0afd8cb903c4653251c"
118
+ }
119
+ },
120
+ {
121
+ "key": "memory.snapshot.id_hash",
122
+ "value": {
123
+ "stringValue": "sha256:4e102eb94d93"
124
+ }
125
+ },
126
+ {
127
+ "key": "memory.result.count",
128
+ "value": {
129
+ "intValue": "2"
130
+ }
131
+ },
132
+ {
133
+ "key": "memory.result.ids_hash",
134
+ "value": {
135
+ "stringValue": "sha256:48c8b58cf32ee16490b0104d48dd9934c1f30addc91e064301183a42c5e429ab"
136
+ }
137
+ },
138
+ {
139
+ "key": "memory.result.payloads_hash",
140
+ "value": {
141
+ "stringValue": "sha256:24e4ba284b48b53982d533177888e427b60a29f29cf90c66b7a9b01888629a2e"
142
+ }
143
+ },
144
+ {
145
+ "key": "memory.result.top.id_hash",
146
+ "value": {
147
+ "stringValue": "sha256:0fbf9e7a2e62"
148
+ }
149
+ },
150
+ {
151
+ "key": "memory.result.top.score_bucket",
152
+ "value": {
153
+ "stringValue": "very_high"
154
+ }
155
+ },
156
+ {
157
+ "key": "memory.latency_ms",
158
+ "value": {
159
+ "intValue": "42"
160
+ }
161
+ },
162
+ {
163
+ "key": "memory.privacy.raw_query_recorded",
164
+ "value": {
165
+ "boolValue": false
166
+ }
167
+ },
168
+ {
169
+ "key": "memory.privacy.raw_result_recorded",
170
+ "value": {
171
+ "boolValue": false
172
+ }
173
+ },
174
+ {
175
+ "key": "session.id",
176
+ "value": {
177
+ "stringValue": "demo-shared-memory-receipts"
178
+ }
179
+ },
180
+ {
181
+ "key": "gen_ai.conversation.id",
182
+ "value": {
183
+ "stringValue": "conv-shared-memory-receipts"
184
+ }
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "name": "context.input.loaded",
190
+ "timeUnixNano": "1779375602000000000",
191
+ "attributes": [
192
+ {
193
+ "key": "context.input.kind",
194
+ "value": {
195
+ "stringValue": "mcp_memory"
196
+ }
197
+ },
198
+ {
199
+ "key": "context.input.source.uri_hash",
200
+ "value": {
201
+ "stringValue": "sha256:3b6ab8a75fd5"
202
+ }
203
+ },
204
+ {
205
+ "key": "context.input.source.memory_id_hash",
206
+ "value": {
207
+ "stringValue": "sha256:0fbf9e7a2e62"
208
+ }
209
+ },
210
+ {
211
+ "key": "context.input.source.bytes_hash",
212
+ "value": {
213
+ "stringValue": "sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
214
+ }
215
+ },
216
+ {
217
+ "key": "context.input.source.canonical.form",
218
+ "value": {
219
+ "stringValue": "otel.context.source.nfc_lf.v1_candidate"
220
+ }
221
+ },
222
+ {
223
+ "key": "context.input.source.canonical.hash",
224
+ "value": {
225
+ "stringValue": "sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
226
+ }
227
+ },
228
+ {
229
+ "key": "context.input.source.canonicalization",
230
+ "value": {
231
+ "stringValue": "utf8,unicode_nfc,crlf_to_lf"
232
+ }
233
+ },
234
+ {
235
+ "key": "context.input.delivered.hash",
236
+ "value": {
237
+ "stringValue": "sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
238
+ }
239
+ },
240
+ {
241
+ "key": "context.input.delivered.full_render.hash",
242
+ "value": {
243
+ "stringValue": "sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
244
+ }
245
+ },
246
+ {
247
+ "key": "context.input.delivered.full_render.status",
248
+ "value": {
249
+ "stringValue": "available"
250
+ }
251
+ },
252
+ {
253
+ "key": "context.input.delivered.transform",
254
+ "value": {
255
+ "stringValue": "as-returned-by-memory-client"
256
+ }
257
+ },
258
+ {
259
+ "key": "context.input.delivered.nondeterministic",
260
+ "value": {
261
+ "boolValue": false
262
+ }
263
+ },
264
+ {
265
+ "key": "context.input.delivered.truncated",
266
+ "value": {
267
+ "boolValue": false
268
+ }
269
+ },
270
+ {
271
+ "key": "context.input.loaded_by",
272
+ "value": {
273
+ "stringValue": "mcp-memory-client"
274
+ }
275
+ },
276
+ {
277
+ "key": "context.input.activation",
278
+ "value": {
279
+ "stringValue": "recall_before_edit"
280
+ }
281
+ },
282
+ {
283
+ "key": "context.input.scope",
284
+ "value": {
285
+ "stringValue": "project"
286
+ }
287
+ },
288
+ {
289
+ "key": "context.input.applies_to",
290
+ "value": {
291
+ "stringValue": "claude-code"
292
+ }
293
+ },
294
+ {
295
+ "key": "context.input.why_loaded",
296
+ "value": {
297
+ "stringValue": "top-ranked memory result for checkout retry edit"
298
+ }
299
+ },
300
+ {
301
+ "key": "context.input.expected_benefit",
302
+ "value": {
303
+ "stringValue": "avoid violating payment retry invariant"
304
+ }
305
+ },
306
+ {
307
+ "key": "context.input.retrieval.id_hash",
308
+ "value": {
309
+ "stringValue": "sha256:d774333941d2"
310
+ }
311
+ },
312
+ {
313
+ "key": "context.input.memory.id_hash",
314
+ "value": {
315
+ "stringValue": "sha256:0fbf9e7a2e62"
316
+ }
317
+ },
318
+ {
319
+ "key": "context.input.duplicate.dedupe_key",
320
+ "value": {
321
+ "stringValue": "conv-shared-memory-receipts:sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
322
+ }
323
+ },
324
+ {
325
+ "key": "context.input.duplicate.dedupe_scope",
326
+ "value": {
327
+ "stringValue": "conversation"
328
+ }
329
+ },
330
+ {
331
+ "key": "context.input.duplicate.suppression_policy",
332
+ "value": {
333
+ "stringValue": "suppress_equal_dedupe_key_within_scope"
334
+ }
335
+ },
336
+ {
337
+ "key": "context.input.duplicate.role",
338
+ "value": {
339
+ "stringValue": "selected"
340
+ }
341
+ },
342
+ {
343
+ "key": "context.input.duplicate.risk",
344
+ "value": {
345
+ "stringValue": "unknown"
346
+ }
347
+ },
348
+ {
349
+ "key": "session.id",
350
+ "value": {
351
+ "stringValue": "demo-shared-memory-receipts"
352
+ }
353
+ },
354
+ {
355
+ "key": "gen_ai.conversation.id",
356
+ "value": {
357
+ "stringValue": "conv-shared-memory-receipts"
358
+ }
359
+ }
360
+ ]
361
+ },
362
+ {
363
+ "name": "memory.search.returned",
364
+ "timeUnixNano": "1779375605000000000",
365
+ "attributes": [
366
+ {
367
+ "key": "memory.provider",
368
+ "value": {
369
+ "stringValue": "supermemory-mcp"
370
+ }
371
+ },
372
+ {
373
+ "key": "memory.client",
374
+ "value": {
375
+ "stringValue": "cursor"
376
+ }
377
+ },
378
+ {
379
+ "key": "memory.project.hash",
380
+ "value": {
381
+ "stringValue": "sha256:b201e758be78"
382
+ }
383
+ },
384
+ {
385
+ "key": "memory.retrieval.id_hash",
386
+ "value": {
387
+ "stringValue": "sha256:39018a6f3e6e"
388
+ }
389
+ },
390
+ {
391
+ "key": "memory.query.hash",
392
+ "value": {
393
+ "stringValue": "sha256:7f6c5cf3f52cd6d7a6863c686aa8fa420d69322686bd41a2edaf3de3a9286d6d"
394
+ }
395
+ },
396
+ {
397
+ "key": "memory.snapshot.id_hash",
398
+ "value": {
399
+ "stringValue": "sha256:4e102eb94d93"
400
+ }
401
+ },
402
+ {
403
+ "key": "memory.result.count",
404
+ "value": {
405
+ "intValue": "1"
406
+ }
407
+ },
408
+ {
409
+ "key": "memory.result.ids_hash",
410
+ "value": {
411
+ "stringValue": "sha256:1e66c6e66013b2fbe4063d0f233dca9b3ae249fc1b63b6aad8a23658035f091b"
412
+ }
413
+ },
414
+ {
415
+ "key": "memory.result.payloads_hash",
416
+ "value": {
417
+ "stringValue": "sha256:1eaabfc18b8336d6bd29278cbc8ce5b1e9e9517a0e252131340a959b185cba45"
418
+ }
419
+ },
420
+ {
421
+ "key": "memory.result.top.id_hash",
422
+ "value": {
423
+ "stringValue": "sha256:0fbf9e7a2e62"
424
+ }
425
+ },
426
+ {
427
+ "key": "memory.result.top.score_bucket",
428
+ "value": {
429
+ "stringValue": "high"
430
+ }
431
+ },
432
+ {
433
+ "key": "memory.latency_ms",
434
+ "value": {
435
+ "intValue": "39"
436
+ }
437
+ },
438
+ {
439
+ "key": "memory.privacy.raw_query_recorded",
440
+ "value": {
441
+ "boolValue": false
442
+ }
443
+ },
444
+ {
445
+ "key": "memory.privacy.raw_result_recorded",
446
+ "value": {
447
+ "boolValue": false
448
+ }
449
+ },
450
+ {
451
+ "key": "session.id",
452
+ "value": {
453
+ "stringValue": "demo-shared-memory-receipts"
454
+ }
455
+ },
456
+ {
457
+ "key": "gen_ai.conversation.id",
458
+ "value": {
459
+ "stringValue": "conv-shared-memory-receipts"
460
+ }
461
+ }
462
+ ]
463
+ },
464
+ {
465
+ "name": "context.input.loaded",
466
+ "timeUnixNano": "1779375606000000000",
467
+ "attributes": [
468
+ {
469
+ "key": "context.input.kind",
470
+ "value": {
471
+ "stringValue": "mcp_memory"
472
+ }
473
+ },
474
+ {
475
+ "key": "context.input.source.uri_hash",
476
+ "value": {
477
+ "stringValue": "sha256:3b6ab8a75fd5"
478
+ }
479
+ },
480
+ {
481
+ "key": "context.input.source.memory_id_hash",
482
+ "value": {
483
+ "stringValue": "sha256:0fbf9e7a2e62"
484
+ }
485
+ },
486
+ {
487
+ "key": "context.input.source.bytes_hash",
488
+ "value": {
489
+ "stringValue": "sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
490
+ }
491
+ },
492
+ {
493
+ "key": "context.input.source.canonical.form",
494
+ "value": {
495
+ "stringValue": "otel.context.source.nfc_lf.v1_candidate"
496
+ }
497
+ },
498
+ {
499
+ "key": "context.input.source.canonical.hash",
500
+ "value": {
501
+ "stringValue": "sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
502
+ }
503
+ },
504
+ {
505
+ "key": "context.input.source.canonicalization",
506
+ "value": {
507
+ "stringValue": "utf8,unicode_nfc,crlf_to_lf"
508
+ }
509
+ },
510
+ {
511
+ "key": "context.input.delivered.hash",
512
+ "value": {
513
+ "stringValue": "sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
514
+ }
515
+ },
516
+ {
517
+ "key": "context.input.delivered.full_render.hash",
518
+ "value": {
519
+ "stringValue": "sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
520
+ }
521
+ },
522
+ {
523
+ "key": "context.input.delivered.full_render.status",
524
+ "value": {
525
+ "stringValue": "available"
526
+ }
527
+ },
528
+ {
529
+ "key": "context.input.delivered.transform",
530
+ "value": {
531
+ "stringValue": "as-returned-by-memory-client"
532
+ }
533
+ },
534
+ {
535
+ "key": "context.input.delivered.nondeterministic",
536
+ "value": {
537
+ "boolValue": false
538
+ }
539
+ },
540
+ {
541
+ "key": "context.input.delivered.truncated",
542
+ "value": {
543
+ "boolValue": false
544
+ }
545
+ },
546
+ {
547
+ "key": "context.input.loaded_by",
548
+ "value": {
549
+ "stringValue": "cursor-memory-client"
550
+ }
551
+ },
552
+ {
553
+ "key": "context.input.activation",
554
+ "value": {
555
+ "stringValue": "recall_before_edit"
556
+ }
557
+ },
558
+ {
559
+ "key": "context.input.scope",
560
+ "value": {
561
+ "stringValue": "project"
562
+ }
563
+ },
564
+ {
565
+ "key": "context.input.applies_to",
566
+ "value": {
567
+ "stringValue": "cursor"
568
+ }
569
+ },
570
+ {
571
+ "key": "context.input.why_loaded",
572
+ "value": {
573
+ "stringValue": "same shared memory result surfaced in a second client"
574
+ }
575
+ },
576
+ {
577
+ "key": "context.input.expected_benefit",
578
+ "value": {
579
+ "stringValue": "compare cross-client recall without exposing memory body"
580
+ }
581
+ },
582
+ {
583
+ "key": "context.input.retrieval.id_hash",
584
+ "value": {
585
+ "stringValue": "sha256:39018a6f3e6e"
586
+ }
587
+ },
588
+ {
589
+ "key": "context.input.memory.id_hash",
590
+ "value": {
591
+ "stringValue": "sha256:0fbf9e7a2e62"
592
+ }
593
+ },
594
+ {
595
+ "key": "context.input.duplicate.dedupe_key",
596
+ "value": {
597
+ "stringValue": "conv-shared-memory-receipts:sha256:00f7bc7be2725eb4963ac5fd331b1653bd365bc16d17f86cad15dc7115f37a59"
598
+ }
599
+ },
600
+ {
601
+ "key": "context.input.duplicate.dedupe_scope",
602
+ "value": {
603
+ "stringValue": "conversation"
604
+ }
605
+ },
606
+ {
607
+ "key": "context.input.duplicate.suppression_policy",
608
+ "value": {
609
+ "stringValue": "keep_distinct_cross_client_load_until_loaded_receipt_proves_suppression"
610
+ }
611
+ },
612
+ {
613
+ "key": "context.input.duplicate.role",
614
+ "value": {
615
+ "stringValue": "candidate_duplicate"
616
+ }
617
+ },
618
+ {
619
+ "key": "context.input.duplicate.risk",
620
+ "value": {
621
+ "stringValue": "cross_client_duplicate_possible"
622
+ }
623
+ },
624
+ {
625
+ "key": "session.id",
626
+ "value": {
627
+ "stringValue": "demo-shared-memory-receipts"
628
+ }
629
+ },
630
+ {
631
+ "key": "gen_ai.conversation.id",
632
+ "value": {
633
+ "stringValue": "conv-shared-memory-receipts"
634
+ }
635
+ }
636
+ ]
637
+ }
638
+ ]
639
+ }
640
+ ]
641
+ }
642
+ ]
643
+ }
644
+ ]
645
+ }