pluribus-context 0.3.22 → 0.3.27
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.
- package/CHANGELOG.md +33 -3
- package/README.md +9 -2
- package/docs/community-review-packet.md +10 -2
- package/docs/context-budget-receipts.md +152 -0
- package/docs/context-input-evidence.md +397 -0
- package/docs/context-receipts-for-agent-observability.md +177 -0
- package/docs/orchestration-search-receipts.md +102 -0
- package/docs/portability-fidelity-report.md +4 -2
- package/examples/agent-skills/context-receipts/README.md +22 -0
- package/examples/agent-skills/context-receipts/SKILL.md +89 -0
- package/examples/context-input-evidence/AGENTS.md +12 -0
- package/examples/context-input-evidence/agent-overlay-log.jsonl +4 -0
- package/examples/context-input-evidence/agent-overlay-otel-trace.json +548 -0
- package/examples/context-input-evidence/agent-overlay-receipt.ndjson +3 -0
- package/examples/context-input-evidence/agentgateway-progressive-disclosure-otel-trace.json +393 -0
- package/examples/context-input-evidence/agentgateway-progressive-disclosure-receipt.ndjson +4 -0
- package/examples/context-input-evidence/brain-remediation-otel-trace.json +645 -0
- package/examples/context-input-evidence/brain-remediation-receipt.ndjson +7 -0
- package/examples/context-input-evidence/claudekit-mcp-manager-otel-trace.json +417 -0
- package/examples/context-input-evidence/claudekit-mcp-manager-receipt.ndjson +5 -0
- package/examples/context-input-evidence/cli-progressive-disclosure-otel-trace.json +399 -0
- package/examples/context-input-evidence/cli-progressive-disclosure-receipt.ndjson +4 -0
- package/examples/context-input-evidence/compaction-otel-trace.json +711 -0
- package/examples/context-input-evidence/compaction-receipt.ndjson +6 -0
- package/examples/context-input-evidence/context-selection-otel-trace.json +627 -0
- package/examples/context-input-evidence/context-selection-receipt.ndjson +7 -0
- package/examples/context-input-evidence/convert-agent-overlay-log.mjs +156 -0
- package/examples/context-input-evidence/convert-agentgateway-progressive-disclosure-log.mjs +251 -0
- package/examples/context-input-evidence/convert-brain-remediation-log.mjs +241 -0
- package/examples/context-input-evidence/convert-claudekit-mcp-manager-log.mjs +253 -0
- package/examples/context-input-evidence/convert-cli-progressive-disclosure-log.mjs +251 -0
- package/examples/context-input-evidence/convert-compaction-log.mjs +224 -0
- package/examples/context-input-evidence/convert-context-selection-log.mjs +247 -0
- package/examples/context-input-evidence/convert-mcp-tool-search-log.mjs +242 -0
- package/examples/context-input-evidence/convert-memory-consolidation-log.mjs +240 -0
- package/examples/context-input-evidence/convert-memory-governance-delete-log.mjs +223 -0
- package/examples/context-input-evidence/convert-memory-log.mjs +226 -0
- package/examples/context-input-evidence/convert-memory-provenance-log.mjs +263 -0
- package/examples/context-input-evidence/convert-secret-scanning-log.mjs +233 -0
- package/examples/context-input-evidence/convert-session-log.mjs +186 -0
- package/examples/context-input-evidence/convert-skill-log.mjs +161 -0
- package/examples/context-input-evidence/convert-skill-registry-log.mjs +246 -0
- package/examples/context-input-evidence/convert-skill-routing-log.mjs +253 -0
- package/examples/context-input-evidence/convert-subagent-context-budget-log.mjs +267 -0
- package/examples/context-input-evidence/convert-subagent-delegation-log.mjs +264 -0
- package/examples/context-input-evidence/export-otel-trace.mjs +128 -0
- package/examples/context-input-evidence/generate-receipt.mjs +188 -0
- package/examples/context-input-evidence/mcp-tool-search-otel-trace.json +477 -0
- package/examples/context-input-evidence/mcp-tool-search-receipt.ndjson +5 -0
- package/examples/context-input-evidence/memory-consolidation-otel-trace.json +492 -0
- package/examples/context-input-evidence/memory-consolidation-receipt.ndjson +4 -0
- package/examples/context-input-evidence/memory-governance-delete-otel-trace.json +614 -0
- package/examples/context-input-evidence/memory-governance-delete-receipt.ndjson +5 -0
- package/examples/context-input-evidence/memory-otel-trace.json +645 -0
- package/examples/context-input-evidence/memory-provenance-otel-trace.json +711 -0
- package/examples/context-input-evidence/memory-provenance-receipt.ndjson +5 -0
- package/examples/context-input-evidence/memory-receipt.ndjson +4 -0
- package/examples/context-input-evidence/otel-trace.json +1119 -0
- package/examples/context-input-evidence/receipt.ndjson +6 -0
- package/examples/context-input-evidence/sample-agentgateway-progressive-disclosure-log.jsonl +5 -0
- package/examples/context-input-evidence/sample-brain-remediation-log.jsonl +9 -0
- package/examples/context-input-evidence/sample-claudekit-mcp-manager-log.jsonl +6 -0
- package/examples/context-input-evidence/sample-cli-progressive-disclosure-log.jsonl +5 -0
- package/examples/context-input-evidence/sample-compaction-log.jsonl +7 -0
- package/examples/context-input-evidence/sample-context-selection-log.jsonl +7 -0
- package/examples/context-input-evidence/sample-mcp-tool-search-log.jsonl +6 -0
- package/examples/context-input-evidence/sample-memory-consolidation-log.jsonl +5 -0
- package/examples/context-input-evidence/sample-memory-governance-delete-log.jsonl +6 -0
- package/examples/context-input-evidence/sample-memory-provenance-log.jsonl +6 -0
- package/examples/context-input-evidence/sample-memory-retrieval-log.jsonl +6 -0
- package/examples/context-input-evidence/sample-secret-scanning-log.jsonl +7 -0
- package/examples/context-input-evidence/sample-session-log.jsonl +6 -0
- package/examples/context-input-evidence/sample-skill-registry-log.jsonl +5 -0
- package/examples/context-input-evidence/sample-skill-routing-log.jsonl +7 -0
- package/examples/context-input-evidence/sample-subagent-context-budget-log.jsonl +6 -0
- package/examples/context-input-evidence/sample-subagent-delegation-log.jsonl +5 -0
- package/examples/context-input-evidence/secret-scanning-otel-trace.json +794 -0
- package/examples/context-input-evidence/secret-scanning-receipt.ndjson +6 -0
- package/examples/context-input-evidence/session-otel-trace.json +411 -0
- package/examples/context-input-evidence/session-receipt.ndjson +2 -0
- package/examples/context-input-evidence/skill-invocation-log.jsonl +4 -0
- package/examples/context-input-evidence/skill-otel-trace.json +548 -0
- package/examples/context-input-evidence/skill-receipt.ndjson +3 -0
- package/examples/context-input-evidence/skill-registry-otel-trace.json +471 -0
- package/examples/context-input-evidence/skill-registry-receipt.ndjson +5 -0
- package/examples/context-input-evidence/skill-routing-otel-trace.json +567 -0
- package/examples/context-input-evidence/skill-routing-receipt.ndjson +6 -0
- package/examples/context-input-evidence/subagent-context-budget-otel-trace.json +507 -0
- package/examples/context-input-evidence/subagent-context-budget-receipt.ndjson +5 -0
- package/examples/context-input-evidence/subagent-delegation-otel-trace.json +388 -0
- package/examples/context-input-evidence/subagent-delegation-receipt.ndjson +4 -0
- package/package.json +6 -2
- package/schemas/audit-result.schema.json +409 -71
- package/src/commands/audit.js +64 -3
- package/src/utils/version.js +1 -1
|
@@ -0,0 +1,417 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceSpans": [
|
|
3
|
+
{
|
|
4
|
+
"resource": {
|
|
5
|
+
"attributes": [
|
|
6
|
+
{
|
|
7
|
+
"key": "service.name",
|
|
8
|
+
"value": {
|
|
9
|
+
"stringValue": "pluribus-claudekit-mcp-manager-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.claudekit_mcp_manager_demo",
|
|
30
|
+
"version": "0.0.0-fixture"
|
|
31
|
+
},
|
|
32
|
+
"spans": [
|
|
33
|
+
{
|
|
34
|
+
"traceId": "b92588d79ef2b2bee064fa00b98ddd22",
|
|
35
|
+
"spanId": "9372c1ee00f589ec",
|
|
36
|
+
"parentSpanId": "",
|
|
37
|
+
"name": "agent.session.mcp.manager.subagent_boundary",
|
|
38
|
+
"kind": 1,
|
|
39
|
+
"startTimeUnixNano": "1779638581000000000",
|
|
40
|
+
"endTimeUnixNano": "1779638585000000000",
|
|
41
|
+
"attributes": [
|
|
42
|
+
{
|
|
43
|
+
"key": "session.id",
|
|
44
|
+
"value": {
|
|
45
|
+
"stringValue": "claudekit-mcp-manager-demo-001"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"key": "gen_ai.conversation.id",
|
|
50
|
+
"value": {
|
|
51
|
+
"stringValue": "conv-claudekit-mcp-manager-001"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"key": "agent.name",
|
|
56
|
+
"value": {
|
|
57
|
+
"stringValue": "claude-code"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"key": "workspace.name",
|
|
62
|
+
"value": {
|
|
63
|
+
"stringValue": "private-enterprise-repo"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"key": "gen_ai.request.model",
|
|
68
|
+
"value": {
|
|
69
|
+
"stringValue": "claude-sonnet-4.6"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"key": "mcp.manager.pattern",
|
|
74
|
+
"value": {
|
|
75
|
+
"stringValue": "mcp-manager-subagent"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"key": "mcp.manager.receipt.scope",
|
|
80
|
+
"value": {
|
|
81
|
+
"stringValue": "parent_vs_manager_subagent_context_budget"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"events": [
|
|
86
|
+
{
|
|
87
|
+
"name": "mcp.manager.parent_context.evaluated",
|
|
88
|
+
"timeUnixNano": "1779638581000000000",
|
|
89
|
+
"attributes": [
|
|
90
|
+
{
|
|
91
|
+
"key": "session.id",
|
|
92
|
+
"value": {
|
|
93
|
+
"stringValue": "claudekit-mcp-manager-demo-001"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"key": "gen_ai.conversation.id",
|
|
98
|
+
"value": {
|
|
99
|
+
"stringValue": "conv-claudekit-mcp-manager-001"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"key": "agent.name",
|
|
104
|
+
"value": {
|
|
105
|
+
"stringValue": "claude-code"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"key": "mcp.manager.pattern",
|
|
110
|
+
"value": {
|
|
111
|
+
"stringValue": "mcp-manager-subagent"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"key": "mcp.manager.parent_visible_skill_hash",
|
|
116
|
+
"value": {
|
|
117
|
+
"stringValue": "sha256:d5542d0f13b8"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"key": "mcp.manager.parent_visible_token_bucket",
|
|
122
|
+
"value": {
|
|
123
|
+
"stringValue": "under_1k"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"key": "mcp.manager.hidden_server_count_bucket",
|
|
128
|
+
"value": {
|
|
129
|
+
"stringValue": "under_25"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"key": "mcp.manager.hidden_tool_schema_count_bucket",
|
|
134
|
+
"value": {
|
|
135
|
+
"stringValue": "over_500"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"key": "mcp.manager.hidden_full_schema_token_bucket",
|
|
140
|
+
"value": {
|
|
141
|
+
"stringValue": "over_100k"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"key": "mcp.manager.full_schemas_loaded_in_parent",
|
|
146
|
+
"value": {
|
|
147
|
+
"boolValue": false
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"key": "privacy.raw_parent_prompt_recorded",
|
|
152
|
+
"value": {
|
|
153
|
+
"boolValue": false
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"key": "privacy.raw_hidden_schemas_recorded",
|
|
158
|
+
"value": {
|
|
159
|
+
"boolValue": false
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
]
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "mcp.manager.subagent.booted",
|
|
166
|
+
"timeUnixNano": "1779638582000000000",
|
|
167
|
+
"attributes": [
|
|
168
|
+
{
|
|
169
|
+
"key": "session.id",
|
|
170
|
+
"value": {
|
|
171
|
+
"stringValue": "claudekit-mcp-manager-demo-001"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"key": "gen_ai.conversation.id",
|
|
176
|
+
"value": {
|
|
177
|
+
"stringValue": "conv-claudekit-mcp-manager-001"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"key": "mcp.manager.subagent_id_hash",
|
|
182
|
+
"value": {
|
|
183
|
+
"stringValue": "sha256:fca03b66c32f"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"key": "mcp.manager.tools_policy",
|
|
188
|
+
"value": {
|
|
189
|
+
"stringValue": "mcp_isolated_allowlist"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"key": "mcp.manager.server_count_bucket",
|
|
194
|
+
"value": {
|
|
195
|
+
"stringValue": "under_25"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"key": "mcp.manager.tool_schema_count_bucket",
|
|
200
|
+
"value": {
|
|
201
|
+
"stringValue": "over_500"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"key": "mcp.manager.subagent_startup_token_bucket",
|
|
206
|
+
"value": {
|
|
207
|
+
"stringValue": "over_100k"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"key": "mcp.manager.context_window_token_bucket",
|
|
212
|
+
"value": {
|
|
213
|
+
"stringValue": "over_100k"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"key": "privacy.raw_subagent_tool_catalog_recorded",
|
|
218
|
+
"value": {
|
|
219
|
+
"boolValue": false
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "mcp.manager.tool_selected",
|
|
226
|
+
"timeUnixNano": "1779638583000000000",
|
|
227
|
+
"attributes": [
|
|
228
|
+
{
|
|
229
|
+
"key": "session.id",
|
|
230
|
+
"value": {
|
|
231
|
+
"stringValue": "claudekit-mcp-manager-demo-001"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"key": "gen_ai.conversation.id",
|
|
236
|
+
"value": {
|
|
237
|
+
"stringValue": "conv-claudekit-mcp-manager-001"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"key": "mcp.manager.selection_strategy",
|
|
242
|
+
"value": {
|
|
243
|
+
"stringValue": "subagent_tool_search_then_execute"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"key": "mcp.manager.selected_server_hash",
|
|
248
|
+
"value": {
|
|
249
|
+
"stringValue": "sha256:84697d2be544"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"key": "mcp.manager.selected_tool_hash",
|
|
254
|
+
"value": {
|
|
255
|
+
"stringValue": "sha256:196b075dce74"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"key": "mcp.manager.candidate_tool_count_bucket",
|
|
260
|
+
"value": {
|
|
261
|
+
"stringValue": "over_500"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"key": "mcp.manager.expanded_tool_count",
|
|
266
|
+
"value": {
|
|
267
|
+
"intValue": "1"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"key": "mcp.manager.suppressed_tool_count_bucket",
|
|
272
|
+
"value": {
|
|
273
|
+
"stringValue": "over_500"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"key": "mcp.manager.selection_reason_hash",
|
|
278
|
+
"value": {
|
|
279
|
+
"stringValue": "sha256:d6d7e11a2a69454cd92e3a8e7b58a95f715e6f19459d33387842eddbf98c461d"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"key": "privacy.raw_selection_reason_recorded",
|
|
284
|
+
"value": {
|
|
285
|
+
"boolValue": false
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
]
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"name": "mcp.manager.tool_invoked",
|
|
292
|
+
"timeUnixNano": "1779638584000000000",
|
|
293
|
+
"attributes": [
|
|
294
|
+
{
|
|
295
|
+
"key": "session.id",
|
|
296
|
+
"value": {
|
|
297
|
+
"stringValue": "claudekit-mcp-manager-demo-001"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"key": "gen_ai.conversation.id",
|
|
302
|
+
"value": {
|
|
303
|
+
"stringValue": "conv-claudekit-mcp-manager-001"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"key": "mcp.tool.name_hash",
|
|
308
|
+
"value": {
|
|
309
|
+
"stringValue": "sha256:196b075dce74"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"key": "mcp.tool_call.status",
|
|
314
|
+
"value": {
|
|
315
|
+
"stringValue": "ok"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"key": "mcp.tool_call.result_count_bucket",
|
|
320
|
+
"value": {
|
|
321
|
+
"stringValue": "under_5"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"key": "mcp.tool_call.latency_ms",
|
|
326
|
+
"value": {
|
|
327
|
+
"intValue": "840"
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"key": "mcp.tool_call.arguments_hash",
|
|
332
|
+
"value": {
|
|
333
|
+
"stringValue": "sha256:8115d3c86ebb64db232eb52479a614fe40fc006e99aee46895435be20c8e9a00"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"key": "mcp.tool_call.result_sample_hash",
|
|
338
|
+
"value": {
|
|
339
|
+
"stringValue": "sha256:0876c290141dd344bda2ed4852573c8a0ce834d33ada29b823bd2a7d140619bf"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"key": "privacy.raw_tool_arguments_recorded",
|
|
344
|
+
"value": {
|
|
345
|
+
"boolValue": false
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"key": "privacy.raw_tool_results_recorded",
|
|
350
|
+
"value": {
|
|
351
|
+
"boolValue": false
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
]
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "mcp.manager.parent_summary.returned",
|
|
358
|
+
"timeUnixNano": "1779638585000000000",
|
|
359
|
+
"attributes": [
|
|
360
|
+
{
|
|
361
|
+
"key": "session.id",
|
|
362
|
+
"value": {
|
|
363
|
+
"stringValue": "claudekit-mcp-manager-demo-001"
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"key": "gen_ai.conversation.id",
|
|
368
|
+
"value": {
|
|
369
|
+
"stringValue": "conv-claudekit-mcp-manager-001"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"key": "mcp.manager.summary.status",
|
|
374
|
+
"value": {
|
|
375
|
+
"stringValue": "summary_returned"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"key": "mcp.manager.summary_token_bucket",
|
|
380
|
+
"value": {
|
|
381
|
+
"stringValue": "under_1k"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"key": "mcp.manager.parent_context_after_token_bucket",
|
|
386
|
+
"value": {
|
|
387
|
+
"stringValue": "under_10k"
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"key": "mcp.manager.summary_hash",
|
|
392
|
+
"value": {
|
|
393
|
+
"stringValue": "sha256:52e6a5a19df81e2f33cdb01239d619dae9bd5e3c6e2de8adc23e681b9602f724"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"key": "mcp.manager.audit_gap",
|
|
398
|
+
"value": {
|
|
399
|
+
"stringValue": "receipt proves MCP schemas stayed isolated in the manager subagent and only a bounded summary returned; it does not prove the selected tool was semantically optimal"
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"key": "privacy.raw_summary_recorded",
|
|
404
|
+
"value": {
|
|
405
|
+
"boolValue": false
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
]
|
|
409
|
+
}
|
|
410
|
+
]
|
|
411
|
+
}
|
|
412
|
+
]
|
|
413
|
+
}
|
|
414
|
+
]
|
|
415
|
+
}
|
|
416
|
+
]
|
|
417
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{"trace_id":"b92588d79ef2b2bee064fa00b98ddd22","span_id":"9372c1ee00f589ec","name":"mcp.manager.parent_context.evaluated","time":"2026-05-24T16:03:01.000Z","attributes":{"session.id":"claudekit-mcp-manager-demo-001","gen_ai.conversation.id":"conv-claudekit-mcp-manager-001","agent.name":"claude-code","mcp.manager.pattern":"mcp-manager-subagent","mcp.manager.parent_visible_skill_hash":"sha256:d5542d0f13b8","mcp.manager.parent_visible_token_bucket":"under_1k","mcp.manager.hidden_server_count_bucket":"under_25","mcp.manager.hidden_tool_schema_count_bucket":"over_500","mcp.manager.hidden_full_schema_token_bucket":"over_100k","mcp.manager.full_schemas_loaded_in_parent":false,"privacy.raw_parent_prompt_recorded":false,"privacy.raw_hidden_schemas_recorded":false}}
|
|
2
|
+
{"trace_id":"b92588d79ef2b2bee064fa00b98ddd22","span_id":"9372c1ee00f589ec","name":"mcp.manager.subagent.booted","time":"2026-05-24T16:03:02.000Z","attributes":{"session.id":"claudekit-mcp-manager-demo-001","gen_ai.conversation.id":"conv-claudekit-mcp-manager-001","mcp.manager.subagent_id_hash":"sha256:fca03b66c32f","mcp.manager.tools_policy":"mcp_isolated_allowlist","mcp.manager.server_count_bucket":"under_25","mcp.manager.tool_schema_count_bucket":"over_500","mcp.manager.subagent_startup_token_bucket":"over_100k","mcp.manager.context_window_token_bucket":"over_100k","privacy.raw_subagent_tool_catalog_recorded":false}}
|
|
3
|
+
{"trace_id":"b92588d79ef2b2bee064fa00b98ddd22","span_id":"9372c1ee00f589ec","name":"mcp.manager.tool_selected","time":"2026-05-24T16:03:03.000Z","attributes":{"session.id":"claudekit-mcp-manager-demo-001","gen_ai.conversation.id":"conv-claudekit-mcp-manager-001","mcp.manager.selection_strategy":"subagent_tool_search_then_execute","mcp.manager.selected_server_hash":"sha256:84697d2be544","mcp.manager.selected_tool_hash":"sha256:196b075dce74","mcp.manager.candidate_tool_count_bucket":"over_500","mcp.manager.expanded_tool_count":1,"mcp.manager.suppressed_tool_count_bucket":"over_500","mcp.manager.selection_reason_hash":"sha256:d6d7e11a2a69454cd92e3a8e7b58a95f715e6f19459d33387842eddbf98c461d","privacy.raw_selection_reason_recorded":false}}
|
|
4
|
+
{"trace_id":"b92588d79ef2b2bee064fa00b98ddd22","span_id":"9372c1ee00f589ec","name":"mcp.manager.tool_invoked","time":"2026-05-24T16:03:04.000Z","attributes":{"session.id":"claudekit-mcp-manager-demo-001","gen_ai.conversation.id":"conv-claudekit-mcp-manager-001","mcp.tool.name_hash":"sha256:196b075dce74","mcp.tool_call.status":"ok","mcp.tool_call.result_count_bucket":"under_5","mcp.tool_call.latency_ms":840,"mcp.tool_call.arguments_hash":"sha256:8115d3c86ebb64db232eb52479a614fe40fc006e99aee46895435be20c8e9a00","mcp.tool_call.result_sample_hash":"sha256:0876c290141dd344bda2ed4852573c8a0ce834d33ada29b823bd2a7d140619bf","privacy.raw_tool_arguments_recorded":false,"privacy.raw_tool_results_recorded":false}}
|
|
5
|
+
{"trace_id":"b92588d79ef2b2bee064fa00b98ddd22","span_id":"9372c1ee00f589ec","name":"mcp.manager.parent_summary.returned","time":"2026-05-24T16:03:05.000Z","attributes":{"session.id":"claudekit-mcp-manager-demo-001","gen_ai.conversation.id":"conv-claudekit-mcp-manager-001","mcp.manager.summary.status":"summary_returned","mcp.manager.summary_token_bucket":"under_1k","mcp.manager.parent_context_after_token_bucket":"under_10k","mcp.manager.summary_hash":"sha256:52e6a5a19df81e2f33cdb01239d619dae9bd5e3c6e2de8adc23e681b9602f724","mcp.manager.audit_gap":"receipt proves MCP schemas stayed isolated in the manager subagent and only a bounded summary returned; it does not prove the selected tool was semantically optimal","privacy.raw_summary_recorded":false}}
|