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,567 @@
1
+ {
2
+ "resourceSpans": [
3
+ {
4
+ "resource": {
5
+ "attributes": [
6
+ {
7
+ "key": "service.name",
8
+ "value": {
9
+ "stringValue": "pluribus-skill-routing-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.skill_routing_demo",
30
+ "version": "0.0.0-fixture"
31
+ },
32
+ "spans": [
33
+ {
34
+ "traceId": "64cef50bc214e80e43a818b8af38a6e5",
35
+ "spanId": "c9801b2c0c402faa",
36
+ "parentSpanId": "",
37
+ "name": "agent.session.skill.routing_benchmark",
38
+ "kind": 1,
39
+ "startTimeUnixNano": "1779404460000000000",
40
+ "endTimeUnixNano": "1779404472000000000",
41
+ "attributes": [
42
+ {
43
+ "key": "session.id",
44
+ "value": {
45
+ "stringValue": "demo-session-skill-routing-receipt"
46
+ }
47
+ },
48
+ {
49
+ "key": "gen_ai.conversation.id",
50
+ "value": {
51
+ "stringValue": "demo-conversation-skill-routing"
52
+ }
53
+ },
54
+ {
55
+ "key": "agent.name",
56
+ "value": {
57
+ "stringValue": "claude-code"
58
+ }
59
+ },
60
+ {
61
+ "key": "workspace.name",
62
+ "value": {
63
+ "stringValue": "agent-skills-benchmark-fixture"
64
+ }
65
+ },
66
+ {
67
+ "key": "gen_ai.request.model",
68
+ "value": {
69
+ "stringValue": "router-eval-model"
70
+ }
71
+ },
72
+ {
73
+ "key": "skill.router.version_hash",
74
+ "value": {
75
+ "stringValue": "sha256:0aea98d97835"
76
+ }
77
+ },
78
+ {
79
+ "key": "skill.router.case_count",
80
+ "value": {
81
+ "intValue": "3"
82
+ }
83
+ }
84
+ ],
85
+ "events": [
86
+ {
87
+ "name": "skill.router.index.loaded",
88
+ "timeUnixNano": "1779404461000000000",
89
+ "attributes": [
90
+ {
91
+ "key": "session.id",
92
+ "value": {
93
+ "stringValue": "demo-session-skill-routing-receipt"
94
+ }
95
+ },
96
+ {
97
+ "key": "gen_ai.conversation.id",
98
+ "value": {
99
+ "stringValue": "demo-conversation-skill-routing"
100
+ }
101
+ },
102
+ {
103
+ "key": "agent.name",
104
+ "value": {
105
+ "stringValue": "claude-code"
106
+ }
107
+ },
108
+ {
109
+ "key": "skill.catalog.id_hash",
110
+ "value": {
111
+ "stringValue": "sha256:e2d6a68c4242"
112
+ }
113
+ },
114
+ {
115
+ "key": "skill.catalog.skill_count",
116
+ "value": {
117
+ "intValue": "4"
118
+ }
119
+ },
120
+ {
121
+ "key": "skill.catalog.names_hash",
122
+ "value": {
123
+ "stringValue": "sha256:8d183d41a1fa44f02fc6343bed88dd47c38196f21e6702d8b4351d0d42ec3d8a"
124
+ }
125
+ },
126
+ {
127
+ "key": "skill.router.startup_strategy",
128
+ "value": {
129
+ "stringValue": "description_index_only"
130
+ }
131
+ },
132
+ {
133
+ "key": "skill.router.description_token_count_bucket",
134
+ "value": {
135
+ "stringValue": "under_1k"
136
+ }
137
+ },
138
+ {
139
+ "key": "skill.router.full_body_token_count_bucket",
140
+ "value": {
141
+ "stringValue": "under_50k"
142
+ }
143
+ },
144
+ {
145
+ "key": "skill.router.full_bodies_loaded_at_startup",
146
+ "value": {
147
+ "boolValue": false
148
+ }
149
+ },
150
+ {
151
+ "key": "privacy.raw_skill_descriptions_recorded",
152
+ "value": {
153
+ "boolValue": false
154
+ }
155
+ },
156
+ {
157
+ "key": "privacy.raw_skill_bodies_recorded",
158
+ "value": {
159
+ "boolValue": false
160
+ }
161
+ }
162
+ ]
163
+ },
164
+ {
165
+ "name": "skill.router.case.evaluated",
166
+ "timeUnixNano": "1779404464000000000",
167
+ "attributes": [
168
+ {
169
+ "key": "session.id",
170
+ "value": {
171
+ "stringValue": "demo-session-skill-routing-receipt"
172
+ }
173
+ },
174
+ {
175
+ "key": "gen_ai.conversation.id",
176
+ "value": {
177
+ "stringValue": "demo-conversation-skill-routing"
178
+ }
179
+ },
180
+ {
181
+ "key": "skill.router.benchmark.id_hash",
182
+ "value": {
183
+ "stringValue": "sha256:9b63a57126cd"
184
+ }
185
+ },
186
+ {
187
+ "key": "skill.router.case.id_hash",
188
+ "value": {
189
+ "stringValue": "sha256:e1ad9bf98d3a"
190
+ }
191
+ },
192
+ {
193
+ "key": "skill.router.prompt_hash",
194
+ "value": {
195
+ "stringValue": "sha256:9b3c85947416c97046881635928ab149e9e05ca4fb22de45b9da4315579f448b"
196
+ }
197
+ },
198
+ {
199
+ "key": "skill.router.expected_skill_hash",
200
+ "value": {
201
+ "stringValue": "sha256:291f08887af0"
202
+ }
203
+ },
204
+ {
205
+ "key": "skill.router.selected_skill_hash",
206
+ "value": {
207
+ "stringValue": "sha256:291f08887af0"
208
+ }
209
+ },
210
+ {
211
+ "key": "skill.router.top_k_hash",
212
+ "value": {
213
+ "stringValue": "sha256:531a8459fdd15efb45966916891175cf87c888e1d8042180abe9ad14599ab466"
214
+ }
215
+ },
216
+ {
217
+ "key": "skill.router.match",
218
+ "value": {
219
+ "stringValue": "top1"
220
+ }
221
+ },
222
+ {
223
+ "key": "skill.router.confidence_bucket",
224
+ "value": {
225
+ "stringValue": "gte_0_75"
226
+ }
227
+ },
228
+ {
229
+ "key": "skill.router.reason_hash",
230
+ "value": {
231
+ "stringValue": "sha256:bb735d654b66dafdd437dc7804e6961f49e73eb0490ec15f1f521695d5ed6730"
232
+ }
233
+ },
234
+ {
235
+ "key": "privacy.raw_prompt_recorded",
236
+ "value": {
237
+ "boolValue": false
238
+ }
239
+ },
240
+ {
241
+ "key": "privacy.raw_selection_reason_recorded",
242
+ "value": {
243
+ "boolValue": false
244
+ }
245
+ }
246
+ ]
247
+ },
248
+ {
249
+ "name": "skill.router.case.evaluated",
250
+ "timeUnixNano": "1779404466000000000",
251
+ "attributes": [
252
+ {
253
+ "key": "session.id",
254
+ "value": {
255
+ "stringValue": "demo-session-skill-routing-receipt"
256
+ }
257
+ },
258
+ {
259
+ "key": "gen_ai.conversation.id",
260
+ "value": {
261
+ "stringValue": "demo-conversation-skill-routing"
262
+ }
263
+ },
264
+ {
265
+ "key": "skill.router.benchmark.id_hash",
266
+ "value": {
267
+ "stringValue": "sha256:9b63a57126cd"
268
+ }
269
+ },
270
+ {
271
+ "key": "skill.router.case.id_hash",
272
+ "value": {
273
+ "stringValue": "sha256:636fd1543c8d"
274
+ }
275
+ },
276
+ {
277
+ "key": "skill.router.prompt_hash",
278
+ "value": {
279
+ "stringValue": "sha256:1f719b758e30e8f246bb7c51ef15c3b74957a56f1c5b07e82e5b42971d1b9cd5"
280
+ }
281
+ },
282
+ {
283
+ "key": "skill.router.expected_skill_hash",
284
+ "value": {
285
+ "stringValue": "sha256:21253146a983"
286
+ }
287
+ },
288
+ {
289
+ "key": "skill.router.selected_skill_hash",
290
+ "value": {
291
+ "stringValue": "sha256:21253146a983"
292
+ }
293
+ },
294
+ {
295
+ "key": "skill.router.top_k_hash",
296
+ "value": {
297
+ "stringValue": "sha256:b7d1a408e012dc5f723f81ca9438e0838a954bc4438b07ab693400edc41ecd16"
298
+ }
299
+ },
300
+ {
301
+ "key": "skill.router.match",
302
+ "value": {
303
+ "stringValue": "top1"
304
+ }
305
+ },
306
+ {
307
+ "key": "skill.router.confidence_bucket",
308
+ "value": {
309
+ "stringValue": "gte_0_75"
310
+ }
311
+ },
312
+ {
313
+ "key": "skill.router.reason_hash",
314
+ "value": {
315
+ "stringValue": "sha256:21162d5681490fd8d453bd3d170930682d49a1b4fb0520f94603dd9e76759fca"
316
+ }
317
+ },
318
+ {
319
+ "key": "privacy.raw_prompt_recorded",
320
+ "value": {
321
+ "boolValue": false
322
+ }
323
+ },
324
+ {
325
+ "key": "privacy.raw_selection_reason_recorded",
326
+ "value": {
327
+ "boolValue": false
328
+ }
329
+ }
330
+ ]
331
+ },
332
+ {
333
+ "name": "skill.router.case.evaluated",
334
+ "timeUnixNano": "1779404468000000000",
335
+ "attributes": [
336
+ {
337
+ "key": "session.id",
338
+ "value": {
339
+ "stringValue": "demo-session-skill-routing-receipt"
340
+ }
341
+ },
342
+ {
343
+ "key": "gen_ai.conversation.id",
344
+ "value": {
345
+ "stringValue": "demo-conversation-skill-routing"
346
+ }
347
+ },
348
+ {
349
+ "key": "skill.router.benchmark.id_hash",
350
+ "value": {
351
+ "stringValue": "sha256:9b63a57126cd"
352
+ }
353
+ },
354
+ {
355
+ "key": "skill.router.case.id_hash",
356
+ "value": {
357
+ "stringValue": "sha256:144621dce308"
358
+ }
359
+ },
360
+ {
361
+ "key": "skill.router.prompt_hash",
362
+ "value": {
363
+ "stringValue": "sha256:f7a5d57c62a008eee15ba0cadfbede4cb5bc1d0bd440bdb7948210f6445c3bde"
364
+ }
365
+ },
366
+ {
367
+ "key": "skill.router.expected_skill_hash",
368
+ "value": {
369
+ "stringValue": "sha256:2f8e0ed343f4"
370
+ }
371
+ },
372
+ {
373
+ "key": "skill.router.selected_skill_hash",
374
+ "value": {
375
+ "stringValue": "sha256:291f08887af0"
376
+ }
377
+ },
378
+ {
379
+ "key": "skill.router.top_k_hash",
380
+ "value": {
381
+ "stringValue": "sha256:531a8459fdd15efb45966916891175cf87c888e1d8042180abe9ad14599ab466"
382
+ }
383
+ },
384
+ {
385
+ "key": "skill.router.match",
386
+ "value": {
387
+ "stringValue": "top2"
388
+ }
389
+ },
390
+ {
391
+ "key": "skill.router.confidence_bucket",
392
+ "value": {
393
+ "stringValue": "gte_0_50"
394
+ }
395
+ },
396
+ {
397
+ "key": "skill.router.reason_hash",
398
+ "value": {
399
+ "stringValue": "sha256:05ddd0a6c9aa1e8c1a59436fe3f32b7aa171557eeddc26b293239cf1627bcfa4"
400
+ }
401
+ },
402
+ {
403
+ "key": "privacy.raw_prompt_recorded",
404
+ "value": {
405
+ "boolValue": false
406
+ }
407
+ },
408
+ {
409
+ "key": "privacy.raw_selection_reason_recorded",
410
+ "value": {
411
+ "boolValue": false
412
+ }
413
+ }
414
+ ]
415
+ },
416
+ {
417
+ "name": "skill.body.loaded",
418
+ "timeUnixNano": "1779404469000000000",
419
+ "attributes": [
420
+ {
421
+ "key": "session.id",
422
+ "value": {
423
+ "stringValue": "demo-session-skill-routing-receipt"
424
+ }
425
+ },
426
+ {
427
+ "key": "gen_ai.conversation.id",
428
+ "value": {
429
+ "stringValue": "demo-conversation-skill-routing"
430
+ }
431
+ },
432
+ {
433
+ "key": "skill.router.case.id_hash",
434
+ "value": {
435
+ "stringValue": "sha256:e1ad9bf98d3a"
436
+ }
437
+ },
438
+ {
439
+ "key": "skill.name_hash",
440
+ "value": {
441
+ "stringValue": "sha256:291f08887af0"
442
+ }
443
+ },
444
+ {
445
+ "key": "skill.body.hash",
446
+ "value": {
447
+ "stringValue": "sha256:f1e47296b79c0fed5a99f6fdfdce319fca1bb2fc8eb5f1f11d3f64db4c99b450"
448
+ }
449
+ },
450
+ {
451
+ "key": "skill.body.load_reason",
452
+ "value": {
453
+ "stringValue": "top1_selected"
454
+ }
455
+ },
456
+ {
457
+ "key": "skill.body.loaded_after_route",
458
+ "value": {
459
+ "boolValue": true
460
+ }
461
+ },
462
+ {
463
+ "key": "privacy.raw_skill_body_recorded",
464
+ "value": {
465
+ "boolValue": false
466
+ }
467
+ }
468
+ ]
469
+ },
470
+ {
471
+ "name": "skill.router.benchmark.completed",
472
+ "timeUnixNano": "1779404472000000000",
473
+ "attributes": [
474
+ {
475
+ "key": "session.id",
476
+ "value": {
477
+ "stringValue": "demo-session-skill-routing-receipt"
478
+ }
479
+ },
480
+ {
481
+ "key": "gen_ai.conversation.id",
482
+ "value": {
483
+ "stringValue": "demo-conversation-skill-routing"
484
+ }
485
+ },
486
+ {
487
+ "key": "skill.router.benchmark.id_hash",
488
+ "value": {
489
+ "stringValue": "sha256:9b63a57126cd"
490
+ }
491
+ },
492
+ {
493
+ "key": "skill.router.golden_set_hash",
494
+ "value": {
495
+ "stringValue": "sha256:7e3e39a2b2f5"
496
+ }
497
+ },
498
+ {
499
+ "key": "skill.router.records_total",
500
+ "value": {
501
+ "intValue": "3"
502
+ }
503
+ },
504
+ {
505
+ "key": "skill.router.usable_records",
506
+ "value": {
507
+ "intValue": "3"
508
+ }
509
+ },
510
+ {
511
+ "key": "skill.router.format_failures",
512
+ "value": {
513
+ "intValue": "0"
514
+ }
515
+ },
516
+ {
517
+ "key": "skill.router.top1_rate_bucket",
518
+ "value": {
519
+ "stringValue": "gte_0_50"
520
+ }
521
+ },
522
+ {
523
+ "key": "skill.router.top2_rate_bucket",
524
+ "value": {
525
+ "stringValue": "gte_0_95"
526
+ }
527
+ },
528
+ {
529
+ "key": "skill.router.model_results_hash",
530
+ "value": {
531
+ "stringValue": "sha256:8ce3763abce2175a48af094585769d766f959ec9af40b18c155646f8b7fb2a0b"
532
+ }
533
+ },
534
+ {
535
+ "key": "skill.router.next_action_hash",
536
+ "value": {
537
+ "stringValue": "sha256:5478efdcb7e778c66bc231dad57fc4bcae5a5b4e1ad472ebdc23d56ce75c3fcd"
538
+ }
539
+ },
540
+ {
541
+ "key": "skill.router.audit_gap",
542
+ "value": {
543
+ "stringValue": "receipt_proves_routing_boundary_not_task_effectiveness"
544
+ }
545
+ },
546
+ {
547
+ "key": "privacy.raw_benchmark_prompts_recorded",
548
+ "value": {
549
+ "boolValue": false
550
+ }
551
+ },
552
+ {
553
+ "key": "privacy.raw_skill_text_recorded",
554
+ "value": {
555
+ "boolValue": false
556
+ }
557
+ }
558
+ ]
559
+ }
560
+ ]
561
+ }
562
+ ]
563
+ }
564
+ ]
565
+ }
566
+ ]
567
+ }
@@ -0,0 +1,6 @@
1
+ {"trace_id":"64cef50bc214e80e43a818b8af38a6e5","span_id":"c9801b2c0c402faa","name":"skill.router.index.loaded","time":"2026-05-21T23:01:01.000Z","attributes":{"session.id":"demo-session-skill-routing-receipt","gen_ai.conversation.id":"demo-conversation-skill-routing","agent.name":"claude-code","skill.catalog.id_hash":"sha256:e2d6a68c4242","skill.catalog.skill_count":4,"skill.catalog.names_hash":"sha256:8d183d41a1fa44f02fc6343bed88dd47c38196f21e6702d8b4351d0d42ec3d8a","skill.router.startup_strategy":"description_index_only","skill.router.description_token_count_bucket":"under_1k","skill.router.full_body_token_count_bucket":"under_50k","skill.router.full_bodies_loaded_at_startup":false,"privacy.raw_skill_descriptions_recorded":false,"privacy.raw_skill_bodies_recorded":false}}
2
+ {"trace_id":"64cef50bc214e80e43a818b8af38a6e5","span_id":"c9801b2c0c402faa","name":"skill.router.case.evaluated","time":"2026-05-21T23:01:04.000Z","attributes":{"session.id":"demo-session-skill-routing-receipt","gen_ai.conversation.id":"demo-conversation-skill-routing","skill.router.benchmark.id_hash":"sha256:9b63a57126cd","skill.router.case.id_hash":"sha256:e1ad9bf98d3a","skill.router.prompt_hash":"sha256:9b3c85947416c97046881635928ab149e9e05ca4fb22de45b9da4315579f448b","skill.router.expected_skill_hash":"sha256:291f08887af0","skill.router.selected_skill_hash":"sha256:291f08887af0","skill.router.top_k_hash":"sha256:531a8459fdd15efb45966916891175cf87c888e1d8042180abe9ad14599ab466","skill.router.match":"top1","skill.router.confidence_bucket":"gte_0_75","skill.router.reason_hash":"sha256:bb735d654b66dafdd437dc7804e6961f49e73eb0490ec15f1f521695d5ed6730","privacy.raw_prompt_recorded":false,"privacy.raw_selection_reason_recorded":false}}
3
+ {"trace_id":"64cef50bc214e80e43a818b8af38a6e5","span_id":"c9801b2c0c402faa","name":"skill.router.case.evaluated","time":"2026-05-21T23:01:06.000Z","attributes":{"session.id":"demo-session-skill-routing-receipt","gen_ai.conversation.id":"demo-conversation-skill-routing","skill.router.benchmark.id_hash":"sha256:9b63a57126cd","skill.router.case.id_hash":"sha256:636fd1543c8d","skill.router.prompt_hash":"sha256:1f719b758e30e8f246bb7c51ef15c3b74957a56f1c5b07e82e5b42971d1b9cd5","skill.router.expected_skill_hash":"sha256:21253146a983","skill.router.selected_skill_hash":"sha256:21253146a983","skill.router.top_k_hash":"sha256:b7d1a408e012dc5f723f81ca9438e0838a954bc4438b07ab693400edc41ecd16","skill.router.match":"top1","skill.router.confidence_bucket":"gte_0_75","skill.router.reason_hash":"sha256:21162d5681490fd8d453bd3d170930682d49a1b4fb0520f94603dd9e76759fca","privacy.raw_prompt_recorded":false,"privacy.raw_selection_reason_recorded":false}}
4
+ {"trace_id":"64cef50bc214e80e43a818b8af38a6e5","span_id":"c9801b2c0c402faa","name":"skill.router.case.evaluated","time":"2026-05-21T23:01:08.000Z","attributes":{"session.id":"demo-session-skill-routing-receipt","gen_ai.conversation.id":"demo-conversation-skill-routing","skill.router.benchmark.id_hash":"sha256:9b63a57126cd","skill.router.case.id_hash":"sha256:144621dce308","skill.router.prompt_hash":"sha256:f7a5d57c62a008eee15ba0cadfbede4cb5bc1d0bd440bdb7948210f6445c3bde","skill.router.expected_skill_hash":"sha256:2f8e0ed343f4","skill.router.selected_skill_hash":"sha256:291f08887af0","skill.router.top_k_hash":"sha256:531a8459fdd15efb45966916891175cf87c888e1d8042180abe9ad14599ab466","skill.router.match":"top2","skill.router.confidence_bucket":"gte_0_50","skill.router.reason_hash":"sha256:05ddd0a6c9aa1e8c1a59436fe3f32b7aa171557eeddc26b293239cf1627bcfa4","privacy.raw_prompt_recorded":false,"privacy.raw_selection_reason_recorded":false}}
5
+ {"trace_id":"64cef50bc214e80e43a818b8af38a6e5","span_id":"c9801b2c0c402faa","name":"skill.body.loaded","time":"2026-05-21T23:01:09.000Z","attributes":{"session.id":"demo-session-skill-routing-receipt","gen_ai.conversation.id":"demo-conversation-skill-routing","skill.router.case.id_hash":"sha256:e1ad9bf98d3a","skill.name_hash":"sha256:291f08887af0","skill.body.hash":"sha256:f1e47296b79c0fed5a99f6fdfdce319fca1bb2fc8eb5f1f11d3f64db4c99b450","skill.body.load_reason":"top1_selected","skill.body.loaded_after_route":true,"privacy.raw_skill_body_recorded":false}}
6
+ {"trace_id":"64cef50bc214e80e43a818b8af38a6e5","span_id":"c9801b2c0c402faa","name":"skill.router.benchmark.completed","time":"2026-05-21T23:01:12.000Z","attributes":{"session.id":"demo-session-skill-routing-receipt","gen_ai.conversation.id":"demo-conversation-skill-routing","skill.router.benchmark.id_hash":"sha256:9b63a57126cd","skill.router.golden_set_hash":"sha256:7e3e39a2b2f5","skill.router.records_total":3,"skill.router.usable_records":3,"skill.router.format_failures":0,"skill.router.top1_rate_bucket":"gte_0_50","skill.router.top2_rate_bucket":"gte_0_95","skill.router.model_results_hash":"sha256:8ce3763abce2175a48af094585769d766f959ec9af40b18c155646f8b7fb2a0b","skill.router.next_action_hash":"sha256:5478efdcb7e778c66bc231dad57fc4bcae5a5b4e1ad472ebdc23d56ce75c3fcd","skill.router.audit_gap":"receipt_proves_routing_boundary_not_task_effectiveness","privacy.raw_benchmark_prompts_recorded":false,"privacy.raw_skill_text_recorded":false}}