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,548 @@
1
+ {
2
+ "resourceSpans": [
3
+ {
4
+ "resource": {
5
+ "attributes": [
6
+ {
7
+ "key": "service.name",
8
+ "value": {
9
+ "stringValue": "pluribus-context-input-evidence"
10
+ }
11
+ },
12
+ {
13
+ "key": "telemetry.sdk.language",
14
+ "value": {
15
+ "stringValue": "javascript"
16
+ }
17
+ },
18
+ {
19
+ "key": "pluribus.demo",
20
+ "value": {
21
+ "stringValue": "agent-overlay-receipts"
22
+ }
23
+ }
24
+ ]
25
+ },
26
+ "scopeSpans": [
27
+ {
28
+ "scope": {
29
+ "name": "pluribus.context-input-evidence",
30
+ "version": "0.0.0-demo"
31
+ },
32
+ "spans": [
33
+ {
34
+ "traceId": "demo-trace-agent-overlays",
35
+ "spanId": "demo-session-agent-overlays",
36
+ "name": "agent.session",
37
+ "kind": "SPAN_KIND_INTERNAL",
38
+ "startTimeUnixNano": "0",
39
+ "endTimeUnixNano": "0",
40
+ "attributes": [
41
+ {
42
+ "key": "session.id",
43
+ "value": {
44
+ "stringValue": "demo-session-agent-overlays"
45
+ }
46
+ },
47
+ {
48
+ "key": "gen_ai.conversation.id",
49
+ "value": {
50
+ "stringValue": "demo-conversation-agent-overlays"
51
+ }
52
+ },
53
+ {
54
+ "key": "agent.name",
55
+ "value": {
56
+ "stringValue": "cursor"
57
+ }
58
+ },
59
+ {
60
+ "key": "workspace.name",
61
+ "value": {
62
+ "stringValue": "example/portable-agent-context"
63
+ }
64
+ },
65
+ {
66
+ "key": "privacy.raw_context_recorded",
67
+ "value": {
68
+ "boolValue": false
69
+ }
70
+ }
71
+ ],
72
+ "events": [
73
+ {
74
+ "name": "context.input.loaded",
75
+ "timeUnixNano": "0",
76
+ "attributes": [
77
+ {
78
+ "key": "context.input.kind",
79
+ "value": {
80
+ "stringValue": "agent_instructions"
81
+ }
82
+ },
83
+ {
84
+ "key": "context.input.source.path",
85
+ "value": {
86
+ "stringValue": "AGENTS.md"
87
+ }
88
+ },
89
+ {
90
+ "key": "context.input.source.role",
91
+ "value": {
92
+ "stringValue": "base"
93
+ }
94
+ },
95
+ {
96
+ "key": "context.input.source.bytes_hash",
97
+ "value": {
98
+ "stringValue": "sha256:9749e3bc4fe5a6b650ac7b189eb9481f33b31b8547f6206c369760dad15d30f5"
99
+ }
100
+ },
101
+ {
102
+ "key": "context.input.delivered.hash",
103
+ "value": {
104
+ "stringValue": "sha256:9749e3bc4fe5a6b650ac7b189eb9481f33b31b8547f6206c369760dad15d30f5"
105
+ }
106
+ },
107
+ {
108
+ "key": "context.input.delivered.truncated",
109
+ "value": {
110
+ "boolValue": false
111
+ }
112
+ },
113
+ {
114
+ "key": "session.id",
115
+ "value": {
116
+ "stringValue": "demo-session-agent-overlays"
117
+ }
118
+ },
119
+ {
120
+ "key": "gen_ai.conversation.id",
121
+ "value": {
122
+ "stringValue": "demo-conversation-agent-overlays"
123
+ }
124
+ },
125
+ {
126
+ "key": "agent.name",
127
+ "value": {
128
+ "stringValue": "cursor"
129
+ }
130
+ },
131
+ {
132
+ "key": "workspace.name",
133
+ "value": {
134
+ "stringValue": "example/portable-agent-context"
135
+ }
136
+ },
137
+ {
138
+ "key": "context.input.loaded_by",
139
+ "value": {
140
+ "stringValue": "native-file-discovery"
141
+ }
142
+ },
143
+ {
144
+ "key": "context.input.activation",
145
+ "value": {
146
+ "stringValue": "native-file-discovery"
147
+ }
148
+ },
149
+ {
150
+ "key": "context.input.scope",
151
+ "value": {
152
+ "stringValue": "repo"
153
+ }
154
+ },
155
+ {
156
+ "key": "context.input.applies_to",
157
+ "value": {
158
+ "stringValue": "all"
159
+ }
160
+ },
161
+ {
162
+ "key": "context.input.load_order",
163
+ "value": {
164
+ "intValue": 1
165
+ }
166
+ },
167
+ {
168
+ "key": "context.input.composition_policy",
169
+ "value": {
170
+ "stringValue": "base_then_agent_overlay"
171
+ }
172
+ },
173
+ {
174
+ "key": "context.input.fallback_policy",
175
+ "value": {
176
+ "stringValue": "base_only_when_overlay_missing"
177
+ }
178
+ },
179
+ {
180
+ "key": "context.input.why_loaded",
181
+ "value": {
182
+ "stringValue": "shared repository invariants"
183
+ }
184
+ },
185
+ {
186
+ "key": "context.input.expected_benefit",
187
+ "value": {
188
+ "stringValue": "keep cross-agent behavior aligned while avoiding duplicated per-agent rules"
189
+ }
190
+ },
191
+ {
192
+ "key": "context.input.duplicate.dedupe_scope",
193
+ "value": {
194
+ "stringValue": "conversation"
195
+ }
196
+ },
197
+ {
198
+ "key": "context.input.duplicate.suppression_policy",
199
+ "value": {
200
+ "stringValue": "keep_distinct_source_roles_in_order"
201
+ }
202
+ },
203
+ {
204
+ "key": "context.input.duplicate.role",
205
+ "value": {
206
+ "stringValue": "selected"
207
+ }
208
+ },
209
+ {
210
+ "key": "privacy.raw_context_recorded",
211
+ "value": {
212
+ "boolValue": false
213
+ }
214
+ },
215
+ {
216
+ "key": "privacy.raw_prompt_recorded",
217
+ "value": {
218
+ "boolValue": false
219
+ }
220
+ },
221
+ {
222
+ "key": "privacy.raw_tool_args_recorded",
223
+ "value": {
224
+ "boolValue": false
225
+ }
226
+ }
227
+ ]
228
+ },
229
+ {
230
+ "name": "context.input.loaded",
231
+ "timeUnixNano": "0",
232
+ "attributes": [
233
+ {
234
+ "key": "context.input.kind",
235
+ "value": {
236
+ "stringValue": "agent_instructions"
237
+ }
238
+ },
239
+ {
240
+ "key": "context.input.source.path",
241
+ "value": {
242
+ "stringValue": "AGENTS.cursor.md"
243
+ }
244
+ },
245
+ {
246
+ "key": "context.input.source.role",
247
+ "value": {
248
+ "stringValue": "agent_overlay"
249
+ }
250
+ },
251
+ {
252
+ "key": "context.input.source.bytes_hash",
253
+ "value": {
254
+ "stringValue": "sha256:e9abda725bbbaf941c8b515081c72bd3a977db2856310d36782950f46ffa1e53"
255
+ }
256
+ },
257
+ {
258
+ "key": "context.input.delivered.hash",
259
+ "value": {
260
+ "stringValue": "sha256:e9abda725bbbaf941c8b515081c72bd3a977db2856310d36782950f46ffa1e53"
261
+ }
262
+ },
263
+ {
264
+ "key": "context.input.delivered.truncated",
265
+ "value": {
266
+ "boolValue": false
267
+ }
268
+ },
269
+ {
270
+ "key": "session.id",
271
+ "value": {
272
+ "stringValue": "demo-session-agent-overlays"
273
+ }
274
+ },
275
+ {
276
+ "key": "gen_ai.conversation.id",
277
+ "value": {
278
+ "stringValue": "demo-conversation-agent-overlays"
279
+ }
280
+ },
281
+ {
282
+ "key": "agent.name",
283
+ "value": {
284
+ "stringValue": "cursor"
285
+ }
286
+ },
287
+ {
288
+ "key": "workspace.name",
289
+ "value": {
290
+ "stringValue": "example/portable-agent-context"
291
+ }
292
+ },
293
+ {
294
+ "key": "context.input.loaded_by",
295
+ "value": {
296
+ "stringValue": "native-file-discovery"
297
+ }
298
+ },
299
+ {
300
+ "key": "context.input.activation",
301
+ "value": {
302
+ "stringValue": "native-file-discovery"
303
+ }
304
+ },
305
+ {
306
+ "key": "context.input.scope",
307
+ "value": {
308
+ "stringValue": "repo"
309
+ }
310
+ },
311
+ {
312
+ "key": "context.input.applies_to",
313
+ "value": {
314
+ "stringValue": "cursor"
315
+ }
316
+ },
317
+ {
318
+ "key": "context.input.load_order",
319
+ "value": {
320
+ "intValue": 2
321
+ }
322
+ },
323
+ {
324
+ "key": "context.input.composition_policy",
325
+ "value": {
326
+ "stringValue": "base_then_agent_overlay"
327
+ }
328
+ },
329
+ {
330
+ "key": "context.input.fallback_policy",
331
+ "value": {
332
+ "stringValue": "base_only_when_overlay_missing"
333
+ }
334
+ },
335
+ {
336
+ "key": "context.input.why_loaded",
337
+ "value": {
338
+ "stringValue": "Cursor-specific rule semantics and workspace hints"
339
+ }
340
+ },
341
+ {
342
+ "key": "context.input.expected_benefit",
343
+ "value": {
344
+ "stringValue": "preserve agent-specific activation semantics without forking the shared repository guidance"
345
+ }
346
+ },
347
+ {
348
+ "key": "context.input.duplicate.dedupe_scope",
349
+ "value": {
350
+ "stringValue": "conversation"
351
+ }
352
+ },
353
+ {
354
+ "key": "context.input.duplicate.suppression_policy",
355
+ "value": {
356
+ "stringValue": "keep_distinct_source_roles_in_order"
357
+ }
358
+ },
359
+ {
360
+ "key": "context.input.duplicate.role",
361
+ "value": {
362
+ "stringValue": "selected"
363
+ }
364
+ },
365
+ {
366
+ "key": "privacy.raw_context_recorded",
367
+ "value": {
368
+ "boolValue": false
369
+ }
370
+ },
371
+ {
372
+ "key": "privacy.raw_prompt_recorded",
373
+ "value": {
374
+ "boolValue": false
375
+ }
376
+ },
377
+ {
378
+ "key": "privacy.raw_tool_args_recorded",
379
+ "value": {
380
+ "boolValue": false
381
+ }
382
+ }
383
+ ]
384
+ },
385
+ {
386
+ "name": "context.input.candidate_suppressed",
387
+ "timeUnixNano": "0",
388
+ "attributes": [
389
+ {
390
+ "key": "context.input.kind",
391
+ "value": {
392
+ "stringValue": "agent_instructions"
393
+ }
394
+ },
395
+ {
396
+ "key": "context.input.source.path",
397
+ "value": {
398
+ "stringValue": "AGENTS.codex.md"
399
+ }
400
+ },
401
+ {
402
+ "key": "context.input.source.role",
403
+ "value": {
404
+ "stringValue": "agent_overlay_candidate"
405
+ }
406
+ },
407
+ {
408
+ "key": "context.input.source.bytes_hash",
409
+ "value": {
410
+ "stringValue": "sha256:6b9c84a7222925b0738d7d6eb6848c6527615b3be25e227eaca8aec51e1194ca"
411
+ }
412
+ },
413
+ {
414
+ "key": "context.input.delivered.hash",
415
+ "value": {
416
+ "stringValue": ""
417
+ }
418
+ },
419
+ {
420
+ "key": "context.input.delivered.truncated",
421
+ "value": {
422
+ "boolValue": false
423
+ }
424
+ },
425
+ {
426
+ "key": "session.id",
427
+ "value": {
428
+ "stringValue": "demo-session-agent-overlays"
429
+ }
430
+ },
431
+ {
432
+ "key": "gen_ai.conversation.id",
433
+ "value": {
434
+ "stringValue": "demo-conversation-agent-overlays"
435
+ }
436
+ },
437
+ {
438
+ "key": "agent.name",
439
+ "value": {
440
+ "stringValue": "cursor"
441
+ }
442
+ },
443
+ {
444
+ "key": "workspace.name",
445
+ "value": {
446
+ "stringValue": "example/portable-agent-context"
447
+ }
448
+ },
449
+ {
450
+ "key": "context.input.loaded_by",
451
+ "value": {
452
+ "stringValue": "overlay-selector"
453
+ }
454
+ },
455
+ {
456
+ "key": "context.input.activation",
457
+ "value": {
458
+ "stringValue": "not_loaded_wrong_agent"
459
+ }
460
+ },
461
+ {
462
+ "key": "context.input.scope",
463
+ "value": {
464
+ "stringValue": "repo"
465
+ }
466
+ },
467
+ {
468
+ "key": "context.input.applies_to",
469
+ "value": {
470
+ "stringValue": "codex"
471
+ }
472
+ },
473
+ {
474
+ "key": "context.input.load_order",
475
+ "value": {
476
+ "intValue": 0
477
+ }
478
+ },
479
+ {
480
+ "key": "context.input.composition_policy",
481
+ "value": {
482
+ "stringValue": "base_then_agent_overlay"
483
+ }
484
+ },
485
+ {
486
+ "key": "context.input.fallback_policy",
487
+ "value": {
488
+ "stringValue": "base_only_when_overlay_missing"
489
+ }
490
+ },
491
+ {
492
+ "key": "context.input.why_loaded",
493
+ "value": {
494
+ "stringValue": "candidate discovered but not applicable to Cursor session"
495
+ }
496
+ },
497
+ {
498
+ "key": "context.input.expected_benefit",
499
+ "value": {
500
+ "stringValue": "avoid mixing Codex-only instructions into Cursor context"
501
+ }
502
+ },
503
+ {
504
+ "key": "context.input.duplicate.dedupe_scope",
505
+ "value": {
506
+ "stringValue": "conversation"
507
+ }
508
+ },
509
+ {
510
+ "key": "context.input.duplicate.suppression_policy",
511
+ "value": {
512
+ "stringValue": "suppress_overlay_for_non_target_agent"
513
+ }
514
+ },
515
+ {
516
+ "key": "context.input.duplicate.role",
517
+ "value": {
518
+ "stringValue": "suppressed"
519
+ }
520
+ },
521
+ {
522
+ "key": "privacy.raw_context_recorded",
523
+ "value": {
524
+ "boolValue": false
525
+ }
526
+ },
527
+ {
528
+ "key": "privacy.raw_prompt_recorded",
529
+ "value": {
530
+ "boolValue": false
531
+ }
532
+ },
533
+ {
534
+ "key": "privacy.raw_tool_args_recorded",
535
+ "value": {
536
+ "boolValue": false
537
+ }
538
+ }
539
+ ]
540
+ }
541
+ ]
542
+ }
543
+ ]
544
+ }
545
+ ]
546
+ }
547
+ ]
548
+ }
@@ -0,0 +1,3 @@
1
+ {"trace_id":"demo-trace-agent-overlays","span_id":"demo-session-agent-overlays","name":"context.input.loaded","time":"2026-05-21T19:00:01.000Z","attributes":{"context.input.kind":"agent_instructions","context.input.source.path":"AGENTS.md","context.input.source.role":"base","context.input.source.bytes_hash":"sha256:9749e3bc4fe5a6b650ac7b189eb9481f33b31b8547f6206c369760dad15d30f5","context.input.delivered.hash":"sha256:9749e3bc4fe5a6b650ac7b189eb9481f33b31b8547f6206c369760dad15d30f5","context.input.delivered.truncated":false,"session.id":"demo-session-agent-overlays","gen_ai.conversation.id":"demo-conversation-agent-overlays","agent.name":"cursor","workspace.name":"example/portable-agent-context","context.input.loaded_by":"native-file-discovery","context.input.activation":"native-file-discovery","context.input.scope":"repo","context.input.applies_to":"all","context.input.load_order":1,"context.input.composition_policy":"base_then_agent_overlay","context.input.fallback_policy":"base_only_when_overlay_missing","context.input.why_loaded":"shared repository invariants","context.input.expected_benefit":"keep cross-agent behavior aligned while avoiding duplicated per-agent rules","context.input.duplicate.dedupe_scope":"conversation","context.input.duplicate.suppression_policy":"keep_distinct_source_roles_in_order","context.input.duplicate.role":"selected","privacy.raw_context_recorded":false,"privacy.raw_prompt_recorded":false,"privacy.raw_tool_args_recorded":false}}
2
+ {"trace_id":"demo-trace-agent-overlays","span_id":"demo-session-agent-overlays","name":"context.input.loaded","time":"2026-05-21T19:00:02.000Z","attributes":{"context.input.kind":"agent_instructions","context.input.source.path":"AGENTS.cursor.md","context.input.source.role":"agent_overlay","context.input.source.bytes_hash":"sha256:e9abda725bbbaf941c8b515081c72bd3a977db2856310d36782950f46ffa1e53","context.input.delivered.hash":"sha256:e9abda725bbbaf941c8b515081c72bd3a977db2856310d36782950f46ffa1e53","context.input.delivered.truncated":false,"session.id":"demo-session-agent-overlays","gen_ai.conversation.id":"demo-conversation-agent-overlays","agent.name":"cursor","workspace.name":"example/portable-agent-context","context.input.loaded_by":"native-file-discovery","context.input.activation":"native-file-discovery","context.input.scope":"repo","context.input.applies_to":"cursor","context.input.load_order":2,"context.input.composition_policy":"base_then_agent_overlay","context.input.fallback_policy":"base_only_when_overlay_missing","context.input.why_loaded":"Cursor-specific rule semantics and workspace hints","context.input.expected_benefit":"preserve agent-specific activation semantics without forking the shared repository guidance","context.input.duplicate.dedupe_scope":"conversation","context.input.duplicate.suppression_policy":"keep_distinct_source_roles_in_order","context.input.duplicate.role":"selected","privacy.raw_context_recorded":false,"privacy.raw_prompt_recorded":false,"privacy.raw_tool_args_recorded":false}}
3
+ {"trace_id":"demo-trace-agent-overlays","span_id":"demo-session-agent-overlays","name":"context.input.candidate_suppressed","time":"2026-05-21T19:00:03.000Z","attributes":{"context.input.kind":"agent_instructions","context.input.source.path":"AGENTS.codex.md","context.input.source.role":"agent_overlay_candidate","context.input.source.bytes_hash":"sha256:6b9c84a7222925b0738d7d6eb6848c6527615b3be25e227eaca8aec51e1194ca","context.input.delivered.hash":"","context.input.delivered.truncated":false,"session.id":"demo-session-agent-overlays","gen_ai.conversation.id":"demo-conversation-agent-overlays","agent.name":"cursor","workspace.name":"example/portable-agent-context","context.input.loaded_by":"overlay-selector","context.input.activation":"not_loaded_wrong_agent","context.input.scope":"repo","context.input.applies_to":"codex","context.input.load_order":0,"context.input.composition_policy":"base_then_agent_overlay","context.input.fallback_policy":"base_only_when_overlay_missing","context.input.why_loaded":"candidate discovered but not applicable to Cursor session","context.input.expected_benefit":"avoid mixing Codex-only instructions into Cursor context","context.input.duplicate.dedupe_scope":"conversation","context.input.duplicate.suppression_policy":"suppress_overlay_for_non_target_agent","context.input.duplicate.role":"suppressed","privacy.raw_context_recorded":false,"privacy.raw_prompt_recorded":false,"privacy.raw_tool_args_recorded":false}}