pluribus-context 0.3.21 → 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 +31 -3
  2. package/README.md +2 -2
  3. package/docs/community-review-packet.md +4 -2
  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 +10 -6
  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 +468 -43
  92. package/src/commands/audit.js +105 -5
  93. package/src/utils/version.js +1 -1
@@ -0,0 +1,794 @@
1
+ {
2
+ "resourceSpans": [
3
+ {
4
+ "resource": {
5
+ "attributes": [
6
+ {
7
+ "key": "service.name",
8
+ "value": {
9
+ "stringValue": "pluribus-context-input-evidence-demo"
10
+ }
11
+ },
12
+ {
13
+ "key": "service.version",
14
+ "value": {
15
+ "stringValue": "0.3.23"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ "scopeSpans": [
21
+ {
22
+ "scope": {
23
+ "name": "pluribus.context_input_evidence.secret_scanning",
24
+ "version": "0.1.0"
25
+ },
26
+ "spans": [
27
+ {
28
+ "traceId": "739544dd256cb1c92a7518a1dc7a220f",
29
+ "spanId": "f2013e6856aa653b",
30
+ "name": "agent.session",
31
+ "kind": 1,
32
+ "startTimeUnixNano": "1779411600000000000",
33
+ "endTimeUnixNano": "1779411631000000000",
34
+ "attributes": [
35
+ {
36
+ "key": "session.id",
37
+ "value": {
38
+ "stringValue": "demo-secret-scan-session"
39
+ }
40
+ },
41
+ {
42
+ "key": "gen_ai.conversation.id",
43
+ "value": {
44
+ "stringValue": "conv-secret-scan-demo"
45
+ }
46
+ },
47
+ {
48
+ "key": "agent.name",
49
+ "value": {
50
+ "stringValue": "copilot-cli"
51
+ }
52
+ },
53
+ {
54
+ "key": "mcp.provider",
55
+ "value": {
56
+ "stringValue": "github-mcp-server"
57
+ }
58
+ },
59
+ {
60
+ "key": "mcp.client",
61
+ "value": {
62
+ "stringValue": "github-copilot-cli"
63
+ }
64
+ },
65
+ {
66
+ "key": "repository.hash",
67
+ "value": {
68
+ "stringValue": "sha256:181c8327396b"
69
+ }
70
+ },
71
+ {
72
+ "key": "repository.path_hash",
73
+ "value": {
74
+ "stringValue": "sha256:ae5f25a41241d512bee36d07730f022985bf10649639ff9ab99ef32e538aece9"
75
+ }
76
+ }
77
+ ],
78
+ "events": [
79
+ {
80
+ "name": "security.secret_scanning.requested",
81
+ "timeUnixNano": "1779411603000000000",
82
+ "attributes": [
83
+ {
84
+ "key": "session.id",
85
+ "value": {
86
+ "stringValue": "demo-secret-scan-session"
87
+ }
88
+ },
89
+ {
90
+ "key": "gen_ai.conversation.id",
91
+ "value": {
92
+ "stringValue": "conv-secret-scan-demo"
93
+ }
94
+ },
95
+ {
96
+ "key": "agent.name",
97
+ "value": {
98
+ "stringValue": "copilot-cli"
99
+ }
100
+ },
101
+ {
102
+ "key": "mcp.provider",
103
+ "value": {
104
+ "stringValue": "github-mcp-server"
105
+ }
106
+ },
107
+ {
108
+ "key": "mcp.client",
109
+ "value": {
110
+ "stringValue": "github-copilot-cli"
111
+ }
112
+ },
113
+ {
114
+ "key": "repository.hash",
115
+ "value": {
116
+ "stringValue": "sha256:181c8327396b"
117
+ }
118
+ },
119
+ {
120
+ "key": "repository.path_hash",
121
+ "value": {
122
+ "stringValue": "sha256:ae5f25a41241d512bee36d07730f022985bf10649639ff9ab99ef32e538aece9"
123
+ }
124
+ },
125
+ {
126
+ "key": "security.scan.request.hash",
127
+ "value": {
128
+ "stringValue": "sha256:39e4a6f44d4d"
129
+ }
130
+ },
131
+ {
132
+ "key": "security.scan.trigger",
133
+ "value": {
134
+ "stringValue": "pre_commit_agent_prompt"
135
+ }
136
+ },
137
+ {
138
+ "key": "security.scan.toolset",
139
+ "value": {
140
+ "stringValue": "secret_protection"
141
+ }
142
+ },
143
+ {
144
+ "key": "security.scan.tool",
145
+ "value": {
146
+ "stringValue": "run_secret_scanning"
147
+ }
148
+ },
149
+ {
150
+ "key": "security.scan.scope",
151
+ "value": {
152
+ "stringValue": "current_changes"
153
+ }
154
+ },
155
+ {
156
+ "key": "security.scan.diff_path_count",
157
+ "value": {
158
+ "intValue": "3"
159
+ }
160
+ },
161
+ {
162
+ "key": "security.scan.diff_paths_hash",
163
+ "value": {
164
+ "stringValue": "sha256:3923a610ceb0197ebbbad5f3838177969b8632a8bd4da1419d5da3b48dce2a7e"
165
+ }
166
+ },
167
+ {
168
+ "key": "security.scan.prompt_hash",
169
+ "value": {
170
+ "stringValue": "sha256:6c18550f453b1efb9b8a9d0b16652a63d6eaa5e35dbd867016bba7750335214a"
171
+ }
172
+ },
173
+ {
174
+ "key": "security.secret_scanning.push_protection_customization",
175
+ "value": {
176
+ "stringValue": "org-default-block-with-documented-bypass"
177
+ }
178
+ },
179
+ {
180
+ "key": "security.secret_scanning.persisted_as_github_alert",
181
+ "value": {
182
+ "boolValue": false
183
+ }
184
+ },
185
+ {
186
+ "key": "privacy.raw_prompt_recorded",
187
+ "value": {
188
+ "boolValue": false
189
+ }
190
+ },
191
+ {
192
+ "key": "privacy.raw_diff_paths_recorded",
193
+ "value": {
194
+ "boolValue": false
195
+ }
196
+ },
197
+ {
198
+ "key": "privacy.raw_secret_values_recorded",
199
+ "value": {
200
+ "boolValue": false
201
+ }
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ "name": "security.secret_scanning.completed",
207
+ "timeUnixNano": "1779411609000000000",
208
+ "attributes": [
209
+ {
210
+ "key": "session.id",
211
+ "value": {
212
+ "stringValue": "demo-secret-scan-session"
213
+ }
214
+ },
215
+ {
216
+ "key": "gen_ai.conversation.id",
217
+ "value": {
218
+ "stringValue": "conv-secret-scan-demo"
219
+ }
220
+ },
221
+ {
222
+ "key": "agent.name",
223
+ "value": {
224
+ "stringValue": "copilot-cli"
225
+ }
226
+ },
227
+ {
228
+ "key": "mcp.provider",
229
+ "value": {
230
+ "stringValue": "github-mcp-server"
231
+ }
232
+ },
233
+ {
234
+ "key": "mcp.client",
235
+ "value": {
236
+ "stringValue": "github-copilot-cli"
237
+ }
238
+ },
239
+ {
240
+ "key": "repository.hash",
241
+ "value": {
242
+ "stringValue": "sha256:181c8327396b"
243
+ }
244
+ },
245
+ {
246
+ "key": "repository.path_hash",
247
+ "value": {
248
+ "stringValue": "sha256:ae5f25a41241d512bee36d07730f022985bf10649639ff9ab99ef32e538aece9"
249
+ }
250
+ },
251
+ {
252
+ "key": "security.scan.request.hash",
253
+ "value": {
254
+ "stringValue": "sha256:39e4a6f44d4d"
255
+ }
256
+ },
257
+ {
258
+ "key": "security.scan.status",
259
+ "value": {
260
+ "stringValue": "findings_presented"
261
+ }
262
+ },
263
+ {
264
+ "key": "security.scan.files_scanned",
265
+ "value": {
266
+ "intValue": "3"
267
+ }
268
+ },
269
+ {
270
+ "key": "security.scan.line_count_bucket",
271
+ "value": {
272
+ "stringValue": "under_2"
273
+ }
274
+ },
275
+ {
276
+ "key": "security.secret_scanning.finding_count",
277
+ "value": {
278
+ "intValue": "2"
279
+ }
280
+ },
281
+ {
282
+ "key": "security.secret_scanning.finding_count_bucket",
283
+ "value": {
284
+ "stringValue": "under_2"
285
+ }
286
+ },
287
+ {
288
+ "key": "security.secret_scanning.detector_count",
289
+ "value": {
290
+ "intValue": "39"
291
+ }
292
+ },
293
+ {
294
+ "key": "security.secret_scanning.engine_snapshot_hash",
295
+ "value": {
296
+ "stringValue": "sha256:cadae81726f1"
297
+ }
298
+ },
299
+ {
300
+ "key": "security.scan.latency_bucket",
301
+ "value": {
302
+ "stringValue": "under_10s"
303
+ }
304
+ },
305
+ {
306
+ "key": "security.scan.tool_response_hash",
307
+ "value": {
308
+ "stringValue": "sha256:f10bf3bfb0fa6c47f564e6f5e2fd6267323d1fa2a70c1e0acfdcdae469bc25b5"
309
+ }
310
+ },
311
+ {
312
+ "key": "privacy.raw_tool_response_recorded",
313
+ "value": {
314
+ "boolValue": false
315
+ }
316
+ },
317
+ {
318
+ "key": "privacy.raw_secret_values_recorded",
319
+ "value": {
320
+ "boolValue": false
321
+ }
322
+ }
323
+ ]
324
+ },
325
+ {
326
+ "name": "security.secret_scanning.finding.presented",
327
+ "timeUnixNano": "1779411610000000000",
328
+ "attributes": [
329
+ {
330
+ "key": "session.id",
331
+ "value": {
332
+ "stringValue": "demo-secret-scan-session"
333
+ }
334
+ },
335
+ {
336
+ "key": "gen_ai.conversation.id",
337
+ "value": {
338
+ "stringValue": "conv-secret-scan-demo"
339
+ }
340
+ },
341
+ {
342
+ "key": "agent.name",
343
+ "value": {
344
+ "stringValue": "copilot-cli"
345
+ }
346
+ },
347
+ {
348
+ "key": "mcp.provider",
349
+ "value": {
350
+ "stringValue": "github-mcp-server"
351
+ }
352
+ },
353
+ {
354
+ "key": "mcp.client",
355
+ "value": {
356
+ "stringValue": "github-copilot-cli"
357
+ }
358
+ },
359
+ {
360
+ "key": "repository.hash",
361
+ "value": {
362
+ "stringValue": "sha256:181c8327396b"
363
+ }
364
+ },
365
+ {
366
+ "key": "repository.path_hash",
367
+ "value": {
368
+ "stringValue": "sha256:ae5f25a41241d512bee36d07730f022985bf10649639ff9ab99ef32e538aece9"
369
+ }
370
+ },
371
+ {
372
+ "key": "security.scan.request.hash",
373
+ "value": {
374
+ "stringValue": "sha256:39e4a6f44d4d"
375
+ }
376
+ },
377
+ {
378
+ "key": "security.finding.hash",
379
+ "value": {
380
+ "stringValue": "sha256:28e963989ee7"
381
+ }
382
+ },
383
+ {
384
+ "key": "security.secret_scanning.secret_type",
385
+ "value": {
386
+ "stringValue": "stripe_webhook_secret"
387
+ }
388
+ },
389
+ {
390
+ "key": "security.finding.severity",
391
+ "value": {
392
+ "stringValue": "high"
393
+ }
394
+ },
395
+ {
396
+ "key": "security.finding.location_path_hash",
397
+ "value": {
398
+ "stringValue": "sha256:842f919923a9d0a0081ca3e70ae7cb88c8ae346413a16a3d78fd29bf27b0a5cb"
399
+ }
400
+ },
401
+ {
402
+ "key": "security.finding.line_bucket",
403
+ "value": {
404
+ "stringValue": "1_20"
405
+ }
406
+ },
407
+ {
408
+ "key": "security.finding.secret_value_hash",
409
+ "value": {
410
+ "stringValue": "sha256:38189798d422645b9474920b028be60324b65373b3b44251fa043ea9ce0ae6e1"
411
+ }
412
+ },
413
+ {
414
+ "key": "security.finding.remediation_hash",
415
+ "value": {
416
+ "stringValue": "sha256:602395d5766723df6f364c52a6132b9aa71aef7d9c0cfd3fa66d3619a8eccc0f"
417
+ }
418
+ },
419
+ {
420
+ "key": "security.secret_scanning.push_protection_action",
421
+ "value": {
422
+ "stringValue": "block"
423
+ }
424
+ },
425
+ {
426
+ "key": "security.secret_scanning.bypass_allowed",
427
+ "value": {
428
+ "boolValue": false
429
+ }
430
+ },
431
+ {
432
+ "key": "privacy.raw_location_path_recorded",
433
+ "value": {
434
+ "boolValue": false
435
+ }
436
+ },
437
+ {
438
+ "key": "privacy.raw_secret_value_recorded",
439
+ "value": {
440
+ "boolValue": false
441
+ }
442
+ },
443
+ {
444
+ "key": "privacy.raw_remediation_text_recorded",
445
+ "value": {
446
+ "boolValue": false
447
+ }
448
+ }
449
+ ]
450
+ },
451
+ {
452
+ "name": "security.secret_scanning.finding.presented",
453
+ "timeUnixNano": "1779411610500000000",
454
+ "attributes": [
455
+ {
456
+ "key": "session.id",
457
+ "value": {
458
+ "stringValue": "demo-secret-scan-session"
459
+ }
460
+ },
461
+ {
462
+ "key": "gen_ai.conversation.id",
463
+ "value": {
464
+ "stringValue": "conv-secret-scan-demo"
465
+ }
466
+ },
467
+ {
468
+ "key": "agent.name",
469
+ "value": {
470
+ "stringValue": "copilot-cli"
471
+ }
472
+ },
473
+ {
474
+ "key": "mcp.provider",
475
+ "value": {
476
+ "stringValue": "github-mcp-server"
477
+ }
478
+ },
479
+ {
480
+ "key": "mcp.client",
481
+ "value": {
482
+ "stringValue": "github-copilot-cli"
483
+ }
484
+ },
485
+ {
486
+ "key": "repository.hash",
487
+ "value": {
488
+ "stringValue": "sha256:181c8327396b"
489
+ }
490
+ },
491
+ {
492
+ "key": "repository.path_hash",
493
+ "value": {
494
+ "stringValue": "sha256:ae5f25a41241d512bee36d07730f022985bf10649639ff9ab99ef32e538aece9"
495
+ }
496
+ },
497
+ {
498
+ "key": "security.scan.request.hash",
499
+ "value": {
500
+ "stringValue": "sha256:39e4a6f44d4d"
501
+ }
502
+ },
503
+ {
504
+ "key": "security.finding.hash",
505
+ "value": {
506
+ "stringValue": "sha256:f75f745c015f"
507
+ }
508
+ },
509
+ {
510
+ "key": "security.secret_scanning.secret_type",
511
+ "value": {
512
+ "stringValue": "github_personal_access_token"
513
+ }
514
+ },
515
+ {
516
+ "key": "security.finding.severity",
517
+ "value": {
518
+ "stringValue": "critical"
519
+ }
520
+ },
521
+ {
522
+ "key": "security.finding.location_path_hash",
523
+ "value": {
524
+ "stringValue": "sha256:a96dedf7aea119254c328e6f83265ccb3954034121e22ea90538c1c7a235212e"
525
+ }
526
+ },
527
+ {
528
+ "key": "security.finding.line_bucket",
529
+ "value": {
530
+ "stringValue": "21_100"
531
+ }
532
+ },
533
+ {
534
+ "key": "security.finding.secret_value_hash",
535
+ "value": {
536
+ "stringValue": "sha256:a28adec774fdc7744c1996c4a6eda2d89ec2c36c3a4c464cedcfb504900b9c2b"
537
+ }
538
+ },
539
+ {
540
+ "key": "security.finding.remediation_hash",
541
+ "value": {
542
+ "stringValue": "sha256:ea7421a264ef997696101319f6d964fd8c82d6cb0ab2ff4c84dbcce5f2d03164"
543
+ }
544
+ },
545
+ {
546
+ "key": "security.secret_scanning.push_protection_action",
547
+ "value": {
548
+ "stringValue": "block"
549
+ }
550
+ },
551
+ {
552
+ "key": "security.secret_scanning.bypass_allowed",
553
+ "value": {
554
+ "boolValue": false
555
+ }
556
+ },
557
+ {
558
+ "key": "privacy.raw_location_path_recorded",
559
+ "value": {
560
+ "boolValue": false
561
+ }
562
+ },
563
+ {
564
+ "key": "privacy.raw_secret_value_recorded",
565
+ "value": {
566
+ "boolValue": false
567
+ }
568
+ },
569
+ {
570
+ "key": "privacy.raw_remediation_text_recorded",
571
+ "value": {
572
+ "boolValue": false
573
+ }
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "name": "security.secret_scanning.bypass.evaluated",
579
+ "timeUnixNano": "1779411612000000000",
580
+ "attributes": [
581
+ {
582
+ "key": "session.id",
583
+ "value": {
584
+ "stringValue": "demo-secret-scan-session"
585
+ }
586
+ },
587
+ {
588
+ "key": "gen_ai.conversation.id",
589
+ "value": {
590
+ "stringValue": "conv-secret-scan-demo"
591
+ }
592
+ },
593
+ {
594
+ "key": "agent.name",
595
+ "value": {
596
+ "stringValue": "copilot-cli"
597
+ }
598
+ },
599
+ {
600
+ "key": "mcp.provider",
601
+ "value": {
602
+ "stringValue": "github-mcp-server"
603
+ }
604
+ },
605
+ {
606
+ "key": "mcp.client",
607
+ "value": {
608
+ "stringValue": "github-copilot-cli"
609
+ }
610
+ },
611
+ {
612
+ "key": "repository.hash",
613
+ "value": {
614
+ "stringValue": "sha256:181c8327396b"
615
+ }
616
+ },
617
+ {
618
+ "key": "repository.path_hash",
619
+ "value": {
620
+ "stringValue": "sha256:ae5f25a41241d512bee36d07730f022985bf10649639ff9ab99ef32e538aece9"
621
+ }
622
+ },
623
+ {
624
+ "key": "security.scan.request.hash",
625
+ "value": {
626
+ "stringValue": "sha256:39e4a6f44d4d"
627
+ }
628
+ },
629
+ {
630
+ "key": "security.policy.hash",
631
+ "value": {
632
+ "stringValue": "sha256:cf2826a34eba"
633
+ }
634
+ },
635
+ {
636
+ "key": "security.secret_scanning.bypass_requested",
637
+ "value": {
638
+ "boolValue": false
639
+ }
640
+ },
641
+ {
642
+ "key": "security.secret_scanning.bypass_allowed",
643
+ "value": {
644
+ "boolValue": false
645
+ }
646
+ },
647
+ {
648
+ "key": "security.secret_scanning.bypass_reason",
649
+ "value": {
650
+ "stringValue": "not_applicable"
651
+ }
652
+ },
653
+ {
654
+ "key": "security.secret_scanning.decision",
655
+ "value": {
656
+ "stringValue": "block_until_removed"
657
+ }
658
+ },
659
+ {
660
+ "key": "security.operator_note_hash",
661
+ "value": {
662
+ "stringValue": "sha256:5e261d3b2549fdda2ee5dd91b13ec86f409f2a890fa2f76e45e7b56d0d7f6cb1"
663
+ }
664
+ },
665
+ {
666
+ "key": "privacy.raw_operator_note_recorded",
667
+ "value": {
668
+ "boolValue": false
669
+ }
670
+ }
671
+ ]
672
+ },
673
+ {
674
+ "name": "security.secret_scanning.remediation.verified",
675
+ "timeUnixNano": "1779411631000000000",
676
+ "attributes": [
677
+ {
678
+ "key": "session.id",
679
+ "value": {
680
+ "stringValue": "demo-secret-scan-session"
681
+ }
682
+ },
683
+ {
684
+ "key": "gen_ai.conversation.id",
685
+ "value": {
686
+ "stringValue": "conv-secret-scan-demo"
687
+ }
688
+ },
689
+ {
690
+ "key": "agent.name",
691
+ "value": {
692
+ "stringValue": "copilot-cli"
693
+ }
694
+ },
695
+ {
696
+ "key": "mcp.provider",
697
+ "value": {
698
+ "stringValue": "github-mcp-server"
699
+ }
700
+ },
701
+ {
702
+ "key": "mcp.client",
703
+ "value": {
704
+ "stringValue": "github-copilot-cli"
705
+ }
706
+ },
707
+ {
708
+ "key": "repository.hash",
709
+ "value": {
710
+ "stringValue": "sha256:181c8327396b"
711
+ }
712
+ },
713
+ {
714
+ "key": "repository.path_hash",
715
+ "value": {
716
+ "stringValue": "sha256:ae5f25a41241d512bee36d07730f022985bf10649639ff9ab99ef32e538aece9"
717
+ }
718
+ },
719
+ {
720
+ "key": "security.scan.request.hash",
721
+ "value": {
722
+ "stringValue": "sha256:39e4a6f44d4d"
723
+ }
724
+ },
725
+ {
726
+ "key": "security.scan.rescan.hash",
727
+ "value": {
728
+ "stringValue": "sha256:b55991d4f92f"
729
+ }
730
+ },
731
+ {
732
+ "key": "security.scan.status",
733
+ "value": {
734
+ "stringValue": "clean"
735
+ }
736
+ },
737
+ {
738
+ "key": "security.scan.changed_path_count",
739
+ "value": {
740
+ "intValue": "2"
741
+ }
742
+ },
743
+ {
744
+ "key": "security.scan.changed_paths_hash",
745
+ "value": {
746
+ "stringValue": "sha256:ac83d426b4016f9a21d2fbbeb3851b6ddbea3a154a9ec037c77c8cb315d2b79d"
747
+ }
748
+ },
749
+ {
750
+ "key": "security.secret_scanning.finding_count_after",
751
+ "value": {
752
+ "intValue": "0"
753
+ }
754
+ },
755
+ {
756
+ "key": "security.remediation.rotation_ticket_hash",
757
+ "value": {
758
+ "stringValue": "sha256:b4cd09aa218698ca93ec8f1650cf22574ea931fc522d6b1fa89d0f1798ca51a4"
759
+ }
760
+ },
761
+ {
762
+ "key": "security.scan.latency_bucket",
763
+ "value": {
764
+ "stringValue": "under_10s"
765
+ }
766
+ },
767
+ {
768
+ "key": "privacy.raw_changed_paths_recorded",
769
+ "value": {
770
+ "boolValue": false
771
+ }
772
+ },
773
+ {
774
+ "key": "privacy.raw_rotation_ticket_recorded",
775
+ "value": {
776
+ "boolValue": false
777
+ }
778
+ },
779
+ {
780
+ "key": "audit.gap",
781
+ "value": {
782
+ "stringValue": "receipt_proves_scan_findings_policy_and_clean_rescan_not_secret_revocation_completion"
783
+ }
784
+ }
785
+ ]
786
+ }
787
+ ]
788
+ }
789
+ ]
790
+ }
791
+ ]
792
+ }
793
+ ]
794
+ }