pandora-cli-skills 1.1.128 → 1.1.130
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/README.md +7 -1
- package/README_FOR_SHARING.md +3 -0
- package/SKILL.md +2 -1
- package/benchmarks/latest/core-bundle.json +93 -35
- package/benchmarks/latest/core-history.json +61 -3
- package/benchmarks/latest/core-report.json +31 -31
- package/benchmarks/locks/core.lock.json +29 -29
- package/cli/lib/agent_contract_registry.cjs +13 -12
- package/cli/lib/doctor_service.cjs +11 -7
- package/cli/lib/mirror_command_service.cjs +6 -4
- package/cli/lib/mirror_deploy_guard_store.cjs +128 -0
- package/cli/lib/mirror_handlers/hedge.cjs +75 -10
- package/cli/lib/mirror_handlers/sync.cjs +3 -0
- package/cli/lib/mirror_hedge/planning.cjs +24 -0
- package/cli/lib/mirror_hedge/status.cjs +231 -3
- package/cli/lib/mirror_hedge_service.cjs +312 -18
- package/cli/lib/mirror_hedge_state_store.cjs +60 -0
- package/cli/lib/mirror_manifest_store.cjs +114 -4
- package/cli/lib/mirror_replay_service.cjs +383 -38
- package/cli/lib/mirror_service.cjs +242 -5
- package/cli/lib/mirror_state_store.cjs +2 -0
- package/cli/lib/mirror_sync_service.cjs +4 -13
- package/cli/lib/pandora_deploy_service.cjs +210 -132
- package/cli/lib/polymarket_trade_adapter.cjs +7 -3
- package/cli/lib/setup_plan_service.cjs +12 -12
- package/docs/benchmarks/README.md +28 -2
- package/docs/benchmarks/history.json +61 -3
- package/docs/benchmarks/scenario-catalog.md +14 -3
- package/docs/benchmarks/scorecard.md +48 -7
- package/docs/proving-ground/README.md +70 -0
- package/docs/skills/capabilities.md +4 -4
- package/docs/skills/command-reference.md +4 -2
- package/docs/skills/mirror-operations.md +8 -2
- package/docs/skills/setup-and-onboarding.md +9 -9
- package/package.json +2 -1
- package/sdk/generated/command-descriptors.json +9 -8
- package/sdk/generated/contract-registry.json +93 -86
- package/sdk/generated/manifest.json +10 -10
- package/sdk/generated/mcp-tool-definitions.json +21 -18
- package/sdk/python/pandora_agent/generated/manifest.json +8 -8
- package/sdk/typescript/generated/manifest.json +8 -8
package/README.md
CHANGED
|
@@ -95,6 +95,7 @@ npm install
|
|
|
95
95
|
npx pandora setup --interactive
|
|
96
96
|
npm run doctor
|
|
97
97
|
npm run build
|
|
98
|
+
npm run verify:repo
|
|
98
99
|
npx pandora help
|
|
99
100
|
```
|
|
100
101
|
|
|
@@ -103,7 +104,8 @@ What each step is for:
|
|
|
103
104
|
- `npm install`: install the local CLI and docs/test dependencies
|
|
104
105
|
- `npx pandora setup --interactive`: scaffold and validate the first-run onboarding path
|
|
105
106
|
- `npm run doctor`: inspect local runtime readiness before live work
|
|
106
|
-
- `npm run build`: run the
|
|
107
|
+
- `npm run build`: run the TypeScript typecheck gate
|
|
108
|
+
- `npm run verify:repo`: run repo-wide verification for docs, trust, SDK parity, and hygiene
|
|
107
109
|
- `npx pandora help`: browse the command surface manually
|
|
108
110
|
|
|
109
111
|
If you prefer manual control, use `npm run init-env` first and then `npm run doctor`. Guided onboarding is optional and can be skipped at any step.
|
|
@@ -263,6 +265,7 @@ npx pandora --output json profile explain --id market_observer_ro
|
|
|
263
265
|
- Policies, profiles, and scopes: [`docs/skills/policy-profiles.md`](./docs/skills/policy-profiles.md)
|
|
264
266
|
- Recipes: [`docs/skills/recipes.md`](./docs/skills/recipes.md)
|
|
265
267
|
- Benchmarks and scorecards: [`docs/benchmarks/README.md`](./docs/benchmarks/README.md), [`docs/benchmarks/scenario-catalog.md`](./docs/benchmarks/scenario-catalog.md), [`docs/benchmarks/scorecard.md`](./docs/benchmarks/scorecard.md)
|
|
268
|
+
- Proving-ground research lane: [`docs/proving-ground/README.md`](./docs/proving-ground/README.md)
|
|
266
269
|
- Trust and release posture: [`docs/trust/release-verification.md`](./docs/trust/release-verification.md), [`docs/trust/release-bundle-playbook.md`](./docs/trust/release-bundle-playbook.md), [`docs/trust/security-model.md`](./docs/trust/security-model.md), [`docs/trust/support-matrix.md`](./docs/trust/support-matrix.md)
|
|
267
270
|
|
|
268
271
|
## SDK Surfaces
|
|
@@ -286,6 +289,9 @@ Notes:
|
|
|
286
289
|
|-- docs/skills/ operator and agent documentation
|
|
287
290
|
|-- docs/trust/ release, security, and support docs
|
|
288
291
|
|-- docs/benchmarks/ benchmark methodology and scorecards
|
|
292
|
+
|-- docs/proving-ground/ proving-ground explainer docs
|
|
293
|
+
|-- knowledge-base/ maintained repo wiki layer
|
|
294
|
+
|-- proving-ground/ sandbox research lane and generated local evidence
|
|
289
295
|
|-- sdk/typescript/ TypeScript SDK surface
|
|
290
296
|
|-- sdk/python/ Python SDK surface
|
|
291
297
|
|-- sdk/generated/ shared generated contract bundle
|
package/README_FOR_SHARING.md
CHANGED
|
@@ -64,6 +64,7 @@ docs/
|
|
|
64
64
|
skills/ human and agent documentation
|
|
65
65
|
trust/ release, security, and support docs
|
|
66
66
|
benchmarks/ benchmark methodology and scorecards
|
|
67
|
+
proving-ground/ research-lane explainer docs
|
|
67
68
|
sdk/
|
|
68
69
|
typescript/ TypeScript SDK surface
|
|
69
70
|
python/ Python SDK surface
|
|
@@ -81,6 +82,7 @@ Included files of interest:
|
|
|
81
82
|
- `docs/skills/*.md`
|
|
82
83
|
- `docs/trust/*.md`
|
|
83
84
|
- `docs/benchmarks/**`
|
|
85
|
+
- `docs/proving-ground/**`
|
|
84
86
|
- `benchmarks/latest/core-report.json`
|
|
85
87
|
- `sdk/generated/*`
|
|
86
88
|
- `sdk/typescript/**`
|
|
@@ -247,6 +249,7 @@ bootstrap
|
|
|
247
249
|
- Policies, profiles, and scopes: [`docs/skills/policy-profiles.md`](./docs/skills/policy-profiles.md)
|
|
248
250
|
- Recipes: [`docs/skills/recipes.md`](./docs/skills/recipes.md)
|
|
249
251
|
- Benchmarks: [`docs/benchmarks/README.md`](./docs/benchmarks/README.md), [`docs/benchmarks/scenario-catalog.md`](./docs/benchmarks/scenario-catalog.md), [`docs/benchmarks/scorecard.md`](./docs/benchmarks/scorecard.md)
|
|
252
|
+
- Proving-ground research lane: [`docs/proving-ground/README.md`](./docs/proving-ground/README.md)
|
|
250
253
|
- Trust docs: [`docs/trust/release-verification.md`](./docs/trust/release-verification.md), [`docs/trust/release-bundle-playbook.md`](./docs/trust/release-bundle-playbook.md), [`docs/trust/security-model.md`](./docs/trust/security-model.md), [`docs/trust/support-matrix.md`](./docs/trust/support-matrix.md)
|
|
251
254
|
|
|
252
255
|
## SDK Surfaces
|
package/SKILL.md
CHANGED
|
@@ -133,10 +133,11 @@ First move:
|
|
|
133
133
|
- Anthropic skill install and evaluation docs:
|
|
134
134
|
- [`docs/skills/install-anthropic-skill.md`](./docs/skills/install-anthropic-skill.md)
|
|
135
135
|
- [`docs/skills/anthropic-skill-evals.md`](./docs/skills/anthropic-skill-evals.md)
|
|
136
|
-
- Benchmark
|
|
136
|
+
- Benchmark and proving-ground evaluation docs:
|
|
137
137
|
- [`docs/benchmarks/README.md`](./docs/benchmarks/README.md)
|
|
138
138
|
- [`docs/benchmarks/scenario-catalog.md`](./docs/benchmarks/scenario-catalog.md)
|
|
139
139
|
- [`docs/benchmarks/scorecard.md`](./docs/benchmarks/scorecard.md)
|
|
140
|
+
- [`docs/proving-ground/README.md`](./docs/proving-ground/README.md)
|
|
140
141
|
- Release verification and trust posture:
|
|
141
142
|
- [`docs/trust/release-verification.md`](./docs/trust/release-verification.md)
|
|
142
143
|
- [`docs/trust/security-model.md`](./docs/trust/security-model.md)
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
3
|
"suite": "core",
|
|
4
|
-
"generatedAt": "2026-
|
|
4
|
+
"generatedAt": "2026-04-06T21:49:08.476Z",
|
|
5
5
|
"package": {
|
|
6
6
|
"name": "pandora-cli-skills",
|
|
7
|
-
"version": "1.1.
|
|
7
|
+
"version": "1.1.130"
|
|
8
8
|
},
|
|
9
9
|
"assets": {
|
|
10
10
|
"reportPath": "benchmarks/latest/core-report.json",
|
|
11
11
|
"lockPath": "benchmarks/locks/core.lock.json",
|
|
12
12
|
"historyPath": "benchmarks/latest/core-history.json",
|
|
13
13
|
"docsHistoryPath": "docs/benchmarks/history.json",
|
|
14
|
-
"reportSha256": "
|
|
15
|
-
"lockSha256": "
|
|
14
|
+
"reportSha256": "2e3c414a7935e15d62791ccf837573237eca1904b478725c93cfe6d08b609469",
|
|
15
|
+
"lockSha256": "66b0d4e052a69bc225e43c40e1d8c5eacab4b8d425dd5e4a57f787ffd7b921e8"
|
|
16
16
|
},
|
|
17
17
|
"latest": {
|
|
18
18
|
"summary": {
|
|
@@ -144,68 +144,126 @@
|
|
|
144
144
|
]
|
|
145
145
|
},
|
|
146
146
|
"runtime": {
|
|
147
|
-
"packageVersion": "1.1.
|
|
147
|
+
"packageVersion": "1.1.130"
|
|
148
148
|
},
|
|
149
149
|
"contractLock": {
|
|
150
|
-
"capabilitiesLocalHash": "
|
|
151
|
-
"capabilitiesRemoteTemplateHash": "
|
|
150
|
+
"capabilitiesLocalHash": "6102d7d83bddc9560b71c0b473964c09f44fcdf7e53330eeae74a0cc747de42b",
|
|
151
|
+
"capabilitiesRemoteTemplateHash": "dd1c11aa54c4c24d970136c0ad9b63de3e8358dae4dd81c1a682282fdfb6ff40",
|
|
152
152
|
"commandDescriptorVersion": "1.4.3",
|
|
153
|
-
"documentationContentHash": "
|
|
154
|
-
"documentationRegistryHash": "
|
|
153
|
+
"documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
|
|
154
|
+
"documentationRegistryHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
|
|
155
155
|
"generatedArtifactHashes": {
|
|
156
|
-
"generatedCommandDescriptors": "
|
|
157
|
-
"generatedContractRegistry": "
|
|
158
|
-
"generatedManifest": "
|
|
159
|
-
"generatedMcpToolDefinitions": "
|
|
160
|
-
"pyCommandDescriptors": "
|
|
161
|
-
"pyContractRegistry": "
|
|
162
|
-
"pyManifest": "
|
|
163
|
-
"pyMcpToolDefinitions": "
|
|
164
|
-
"tsCommandDescriptors": "
|
|
165
|
-
"tsContractRegistry": "
|
|
166
|
-
"tsManifest": "
|
|
167
|
-
"tsMcpToolDefinitions": "
|
|
156
|
+
"generatedCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
157
|
+
"generatedContractRegistry": "5914ebf699a5247e85573951e2190e157df7773c9dd0755e862346dc1fdeeeee",
|
|
158
|
+
"generatedManifest": "466a2de3df182401299a291dadc04f9407426e91f764f960bc4cca53c423326d",
|
|
159
|
+
"generatedMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
160
|
+
"pyCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
161
|
+
"pyContractRegistry": "5914ebf699a5247e85573951e2190e157df7773c9dd0755e862346dc1fdeeeee",
|
|
162
|
+
"pyManifest": "9888c6133300d09cee59846d65daa58d74fff2c05d3bc0043c9aaf71bd57722d",
|
|
163
|
+
"pyMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
164
|
+
"tsCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
165
|
+
"tsContractRegistry": "5914ebf699a5247e85573951e2190e157df7773c9dd0755e862346dc1fdeeeee",
|
|
166
|
+
"tsManifest": "af391f43d5f126e11fa4999a1251e56178f3136f3e1abf0617daa348e0879ce4",
|
|
167
|
+
"tsMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6"
|
|
168
168
|
},
|
|
169
169
|
"generatedManifestCommandDescriptorVersion": "1.4.3",
|
|
170
170
|
"generatedManifestPackageVersion": "0.1.0-alpha.21",
|
|
171
171
|
"generatedManifestRegistryDigest": {
|
|
172
172
|
"canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
|
|
173
|
-
"commandDigestHash": "
|
|
174
|
-
"descriptorHash": "
|
|
175
|
-
"documentationHash": "
|
|
176
|
-
"fullDescriptorHash": "
|
|
173
|
+
"commandDigestHash": "85f685455fdf85b757674a3086eb03354a628f22ada1a25afee0fd86b14b92c7",
|
|
174
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
175
|
+
"documentationHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
|
|
176
|
+
"fullDescriptorHash": "422f7c73ce499d926c92ea792b0c590c41c916dac377cf6790c5465d1eb5f384",
|
|
177
177
|
"namespaceHash": "cd39afc4f4e8b76473a4768c07d979c44e0421973786c54e12bb6d7888f5952a",
|
|
178
178
|
"policyProfilesHash": "9fb054a4f29be73c2ebf33f643bc17d904b2872dd8e7d564a690db828071a7ce",
|
|
179
179
|
"principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
|
|
180
180
|
"routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
|
|
181
181
|
"topLevelHash": "04e58344eaec2c14dfa336b13eff952a584c7c5355d90775c3bc8336ab0752ee",
|
|
182
|
-
"trustDistributionHash": "
|
|
182
|
+
"trustDistributionHash": "c46b02e1d58f85458978cbf40bbae951c64e82a0dd4f4dfa73fde6de94b1aa32"
|
|
183
183
|
},
|
|
184
184
|
"generatedManifestVersion": "1.0.0",
|
|
185
185
|
"registryDigest": {
|
|
186
186
|
"canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
|
|
187
|
-
"commandDigestHash": "
|
|
188
|
-
"descriptorHash": "
|
|
189
|
-
"documentationHash": "
|
|
190
|
-
"fullDescriptorHash": "
|
|
187
|
+
"commandDigestHash": "85f685455fdf85b757674a3086eb03354a628f22ada1a25afee0fd86b14b92c7",
|
|
188
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
189
|
+
"documentationHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
|
|
190
|
+
"fullDescriptorHash": "422f7c73ce499d926c92ea792b0c590c41c916dac377cf6790c5465d1eb5f384",
|
|
191
191
|
"namespaceHash": "cd39afc4f4e8b76473a4768c07d979c44e0421973786c54e12bb6d7888f5952a",
|
|
192
192
|
"policyProfilesHash": "9fb054a4f29be73c2ebf33f643bc17d904b2872dd8e7d564a690db828071a7ce",
|
|
193
193
|
"principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
|
|
194
194
|
"routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
|
|
195
195
|
"topLevelHash": "04e58344eaec2c14dfa336b13eff952a584c7c5355d90775c3bc8336ab0752ee",
|
|
196
|
-
"trustDistributionHash": "
|
|
196
|
+
"trustDistributionHash": "c46b02e1d58f85458978cbf40bbae951c64e82a0dd4f4dfa73fde6de94b1aa32"
|
|
197
197
|
},
|
|
198
|
-
"schemaHash": "
|
|
198
|
+
"schemaHash": "497fd61bc7fb511b18987a6f30c194f1d4b08efdcf63d91798ff6b183727e797"
|
|
199
199
|
},
|
|
200
200
|
"contractLockMatchesExpected": true
|
|
201
201
|
},
|
|
202
202
|
"history": {
|
|
203
203
|
"schemaVersion": "1.0.0",
|
|
204
204
|
"suite": "core",
|
|
205
|
-
"generatedAt": "2026-
|
|
206
|
-
"latestVersion": "1.1.
|
|
207
|
-
"latestGeneratedAt": "2026-
|
|
205
|
+
"generatedAt": "2026-04-06T21:49:08.476Z",
|
|
206
|
+
"latestVersion": "1.1.130",
|
|
207
|
+
"latestGeneratedAt": "2026-04-06T21:49:08.476Z",
|
|
208
208
|
"entries": [
|
|
209
|
+
{
|
|
210
|
+
"schemaVersion": "1.0.0",
|
|
211
|
+
"suite": "core",
|
|
212
|
+
"packageName": "pandora-cli-skills",
|
|
213
|
+
"version": "1.1.130",
|
|
214
|
+
"packageVersion": "1.1.130",
|
|
215
|
+
"generatedAt": "2026-04-06T21:49:08.476Z",
|
|
216
|
+
"summary": {
|
|
217
|
+
"weightedScore": 100,
|
|
218
|
+
"overallPass": true,
|
|
219
|
+
"scenarioCount": 19,
|
|
220
|
+
"passedCount": 19,
|
|
221
|
+
"failedCount": 0,
|
|
222
|
+
"failedParityGroupCount": 0
|
|
223
|
+
},
|
|
224
|
+
"weightedScore": 100,
|
|
225
|
+
"overallPass": true,
|
|
226
|
+
"scenarioCount": 19,
|
|
227
|
+
"passedCount": 19,
|
|
228
|
+
"failedCount": 0,
|
|
229
|
+
"failedParityGroupCount": 0,
|
|
230
|
+
"contractLockMatchesExpected": true,
|
|
231
|
+
"parityFailedGroups": [],
|
|
232
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
233
|
+
"documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
|
|
234
|
+
"reportSha256": "2e3c414a7935e15d62791ccf837573237eca1904b478725c93cfe6d08b609469",
|
|
235
|
+
"lockSha256": "66b0d4e052a69bc225e43c40e1d8c5eacab4b8d425dd5e4a57f787ffd7b921e8",
|
|
236
|
+
"lockSchemaVersion": "1.0.0"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"schemaVersion": "1.0.0",
|
|
240
|
+
"suite": "core",
|
|
241
|
+
"packageName": "pandora-cli-skills",
|
|
242
|
+
"version": "1.1.129",
|
|
243
|
+
"packageVersion": "1.1.129",
|
|
244
|
+
"generatedAt": "2026-04-05T22:25:33.752Z",
|
|
245
|
+
"summary": {
|
|
246
|
+
"weightedScore": 100,
|
|
247
|
+
"overallPass": true,
|
|
248
|
+
"scenarioCount": 19,
|
|
249
|
+
"passedCount": 19,
|
|
250
|
+
"failedCount": 0,
|
|
251
|
+
"failedParityGroupCount": 0
|
|
252
|
+
},
|
|
253
|
+
"weightedScore": 100,
|
|
254
|
+
"overallPass": true,
|
|
255
|
+
"scenarioCount": 19,
|
|
256
|
+
"passedCount": 19,
|
|
257
|
+
"failedCount": 0,
|
|
258
|
+
"failedParityGroupCount": 0,
|
|
259
|
+
"contractLockMatchesExpected": true,
|
|
260
|
+
"parityFailedGroups": [],
|
|
261
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
262
|
+
"documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
|
|
263
|
+
"reportSha256": "94caa32a45f24ebaf36ade64d92b642e36fa333be330b4e70502c606415ad0be",
|
|
264
|
+
"lockSha256": "7df51d1d695ce33ac0dc1292766d9f62d4ea224b30054613e93ef83d11626000",
|
|
265
|
+
"lockSchemaVersion": "1.0.0"
|
|
266
|
+
},
|
|
209
267
|
{
|
|
210
268
|
"schemaVersion": "1.0.0",
|
|
211
269
|
"suite": "core",
|
|
@@ -1,10 +1,68 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
3
|
"suite": "core",
|
|
4
|
-
"generatedAt": "2026-
|
|
5
|
-
"latestVersion": "1.1.
|
|
6
|
-
"latestGeneratedAt": "2026-
|
|
4
|
+
"generatedAt": "2026-04-06T21:49:08.476Z",
|
|
5
|
+
"latestVersion": "1.1.130",
|
|
6
|
+
"latestGeneratedAt": "2026-04-06T21:49:08.476Z",
|
|
7
7
|
"entries": [
|
|
8
|
+
{
|
|
9
|
+
"schemaVersion": "1.0.0",
|
|
10
|
+
"suite": "core",
|
|
11
|
+
"packageName": "pandora-cli-skills",
|
|
12
|
+
"version": "1.1.130",
|
|
13
|
+
"packageVersion": "1.1.130",
|
|
14
|
+
"generatedAt": "2026-04-06T21:49:08.476Z",
|
|
15
|
+
"summary": {
|
|
16
|
+
"weightedScore": 100,
|
|
17
|
+
"overallPass": true,
|
|
18
|
+
"scenarioCount": 19,
|
|
19
|
+
"passedCount": 19,
|
|
20
|
+
"failedCount": 0,
|
|
21
|
+
"failedParityGroupCount": 0
|
|
22
|
+
},
|
|
23
|
+
"weightedScore": 100,
|
|
24
|
+
"overallPass": true,
|
|
25
|
+
"scenarioCount": 19,
|
|
26
|
+
"passedCount": 19,
|
|
27
|
+
"failedCount": 0,
|
|
28
|
+
"failedParityGroupCount": 0,
|
|
29
|
+
"contractLockMatchesExpected": true,
|
|
30
|
+
"parityFailedGroups": [],
|
|
31
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
32
|
+
"documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
|
|
33
|
+
"reportSha256": "2e3c414a7935e15d62791ccf837573237eca1904b478725c93cfe6d08b609469",
|
|
34
|
+
"lockSha256": "66b0d4e052a69bc225e43c40e1d8c5eacab4b8d425dd5e4a57f787ffd7b921e8",
|
|
35
|
+
"lockSchemaVersion": "1.0.0"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"schemaVersion": "1.0.0",
|
|
39
|
+
"suite": "core",
|
|
40
|
+
"packageName": "pandora-cli-skills",
|
|
41
|
+
"version": "1.1.129",
|
|
42
|
+
"packageVersion": "1.1.129",
|
|
43
|
+
"generatedAt": "2026-04-05T22:25:33.752Z",
|
|
44
|
+
"summary": {
|
|
45
|
+
"weightedScore": 100,
|
|
46
|
+
"overallPass": true,
|
|
47
|
+
"scenarioCount": 19,
|
|
48
|
+
"passedCount": 19,
|
|
49
|
+
"failedCount": 0,
|
|
50
|
+
"failedParityGroupCount": 0
|
|
51
|
+
},
|
|
52
|
+
"weightedScore": 100,
|
|
53
|
+
"overallPass": true,
|
|
54
|
+
"scenarioCount": 19,
|
|
55
|
+
"passedCount": 19,
|
|
56
|
+
"failedCount": 0,
|
|
57
|
+
"failedParityGroupCount": 0,
|
|
58
|
+
"contractLockMatchesExpected": true,
|
|
59
|
+
"parityFailedGroups": [],
|
|
60
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
61
|
+
"documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
|
|
62
|
+
"reportSha256": "94caa32a45f24ebaf36ade64d92b642e36fa333be330b4e70502c606415ad0be",
|
|
63
|
+
"lockSha256": "7df51d1d695ce33ac0dc1292766d9f62d4ea224b30054613e93ef83d11626000",
|
|
64
|
+
"lockSchemaVersion": "1.0.0"
|
|
65
|
+
},
|
|
8
66
|
{
|
|
9
67
|
"schemaVersion": "1.0.0",
|
|
10
68
|
"suite": "core",
|
|
@@ -1,54 +1,54 @@
|
|
|
1
1
|
{
|
|
2
2
|
"contractLock": {
|
|
3
|
-
"capabilitiesLocalHash": "
|
|
4
|
-
"capabilitiesRemoteTemplateHash": "
|
|
3
|
+
"capabilitiesLocalHash": "6102d7d83bddc9560b71c0b473964c09f44fcdf7e53330eeae74a0cc747de42b",
|
|
4
|
+
"capabilitiesRemoteTemplateHash": "dd1c11aa54c4c24d970136c0ad9b63de3e8358dae4dd81c1a682282fdfb6ff40",
|
|
5
5
|
"commandDescriptorVersion": "1.4.3",
|
|
6
|
-
"documentationContentHash": "
|
|
7
|
-
"documentationRegistryHash": "
|
|
6
|
+
"documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
|
|
7
|
+
"documentationRegistryHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
|
|
8
8
|
"generatedArtifactHashes": {
|
|
9
|
-
"generatedCommandDescriptors": "
|
|
10
|
-
"generatedContractRegistry": "
|
|
11
|
-
"generatedManifest": "
|
|
12
|
-
"generatedMcpToolDefinitions": "
|
|
13
|
-
"pyCommandDescriptors": "
|
|
14
|
-
"pyContractRegistry": "
|
|
15
|
-
"pyManifest": "
|
|
16
|
-
"pyMcpToolDefinitions": "
|
|
17
|
-
"tsCommandDescriptors": "
|
|
18
|
-
"tsContractRegistry": "
|
|
19
|
-
"tsManifest": "
|
|
20
|
-
"tsMcpToolDefinitions": "
|
|
9
|
+
"generatedCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
10
|
+
"generatedContractRegistry": "5914ebf699a5247e85573951e2190e157df7773c9dd0755e862346dc1fdeeeee",
|
|
11
|
+
"generatedManifest": "466a2de3df182401299a291dadc04f9407426e91f764f960bc4cca53c423326d",
|
|
12
|
+
"generatedMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
13
|
+
"pyCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
14
|
+
"pyContractRegistry": "5914ebf699a5247e85573951e2190e157df7773c9dd0755e862346dc1fdeeeee",
|
|
15
|
+
"pyManifest": "9888c6133300d09cee59846d65daa58d74fff2c05d3bc0043c9aaf71bd57722d",
|
|
16
|
+
"pyMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
17
|
+
"tsCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
18
|
+
"tsContractRegistry": "5914ebf699a5247e85573951e2190e157df7773c9dd0755e862346dc1fdeeeee",
|
|
19
|
+
"tsManifest": "af391f43d5f126e11fa4999a1251e56178f3136f3e1abf0617daa348e0879ce4",
|
|
20
|
+
"tsMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6"
|
|
21
21
|
},
|
|
22
22
|
"generatedManifestCommandDescriptorVersion": "1.4.3",
|
|
23
23
|
"generatedManifestPackageVersion": "0.1.0-alpha.21",
|
|
24
24
|
"generatedManifestRegistryDigest": {
|
|
25
25
|
"canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
|
|
26
|
-
"commandDigestHash": "
|
|
27
|
-
"descriptorHash": "
|
|
28
|
-
"documentationHash": "
|
|
29
|
-
"fullDescriptorHash": "
|
|
26
|
+
"commandDigestHash": "85f685455fdf85b757674a3086eb03354a628f22ada1a25afee0fd86b14b92c7",
|
|
27
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
28
|
+
"documentationHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
|
|
29
|
+
"fullDescriptorHash": "422f7c73ce499d926c92ea792b0c590c41c916dac377cf6790c5465d1eb5f384",
|
|
30
30
|
"namespaceHash": "cd39afc4f4e8b76473a4768c07d979c44e0421973786c54e12bb6d7888f5952a",
|
|
31
31
|
"policyProfilesHash": "9fb054a4f29be73c2ebf33f643bc17d904b2872dd8e7d564a690db828071a7ce",
|
|
32
32
|
"principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
|
|
33
33
|
"routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
|
|
34
34
|
"topLevelHash": "04e58344eaec2c14dfa336b13eff952a584c7c5355d90775c3bc8336ab0752ee",
|
|
35
|
-
"trustDistributionHash": "
|
|
35
|
+
"trustDistributionHash": "c46b02e1d58f85458978cbf40bbae951c64e82a0dd4f4dfa73fde6de94b1aa32"
|
|
36
36
|
},
|
|
37
37
|
"generatedManifestVersion": "1.0.0",
|
|
38
38
|
"registryDigest": {
|
|
39
39
|
"canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
|
|
40
|
-
"commandDigestHash": "
|
|
41
|
-
"descriptorHash": "
|
|
42
|
-
"documentationHash": "
|
|
43
|
-
"fullDescriptorHash": "
|
|
40
|
+
"commandDigestHash": "85f685455fdf85b757674a3086eb03354a628f22ada1a25afee0fd86b14b92c7",
|
|
41
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
42
|
+
"documentationHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
|
|
43
|
+
"fullDescriptorHash": "422f7c73ce499d926c92ea792b0c590c41c916dac377cf6790c5465d1eb5f384",
|
|
44
44
|
"namespaceHash": "cd39afc4f4e8b76473a4768c07d979c44e0421973786c54e12bb6d7888f5952a",
|
|
45
45
|
"policyProfilesHash": "9fb054a4f29be73c2ebf33f643bc17d904b2872dd8e7d564a690db828071a7ce",
|
|
46
46
|
"principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
|
|
47
47
|
"routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
|
|
48
48
|
"topLevelHash": "04e58344eaec2c14dfa336b13eff952a584c7c5355d90775c3bc8336ab0752ee",
|
|
49
|
-
"trustDistributionHash": "
|
|
49
|
+
"trustDistributionHash": "c46b02e1d58f85458978cbf40bbae951c64e82a0dd4f4dfa73fde6de94b1aa32"
|
|
50
50
|
},
|
|
51
|
-
"schemaHash": "
|
|
51
|
+
"schemaHash": "497fd61bc7fb511b18987a6f30c194f1d4b08efdcf63d91798ff6b183727e797"
|
|
52
52
|
},
|
|
53
53
|
"contractLockMatchesExpected": true,
|
|
54
54
|
"contractLockMismatches": [],
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
]
|
|
285
285
|
},
|
|
286
286
|
"publication": {
|
|
287
|
-
"contractLockHash": "
|
|
287
|
+
"contractLockHash": "bf15545a2fbb6e5ac3dc549a9f47506fb28e6b837685288624aa393d75b55eff",
|
|
288
288
|
"contractLockStatus": "locked",
|
|
289
289
|
"deterministic": true,
|
|
290
290
|
"expectedScenarioCount": 19,
|
|
@@ -293,12 +293,12 @@
|
|
|
293
293
|
"minimumWeightedScore": 95,
|
|
294
294
|
"releaseGatePass": true,
|
|
295
295
|
"reportPath": "benchmarks/latest/core-report.json",
|
|
296
|
-
"scorecardHash": "
|
|
297
|
-
"suiteLockHash": "
|
|
296
|
+
"scorecardHash": "69018c1758c3c0600041992241f73ac0ef256c3e60be5703a9b8e5bf453b20a6",
|
|
297
|
+
"suiteLockHash": "66b0d4e052a69bc225e43c40e1d8c5eacab4b8d425dd5e4a57f787ffd7b921e8",
|
|
298
298
|
"suiteLockPath": "benchmarks/locks/core.lock.json"
|
|
299
299
|
},
|
|
300
300
|
"runtime": {
|
|
301
|
-
"packageVersion": "1.1.
|
|
301
|
+
"packageVersion": "1.1.130"
|
|
302
302
|
},
|
|
303
303
|
"scenarios": [
|
|
304
304
|
{
|
|
@@ -1,61 +1,61 @@
|
|
|
1
1
|
{
|
|
2
2
|
"contractLock": {
|
|
3
|
-
"capabilitiesLocalHash": "
|
|
4
|
-
"capabilitiesRemoteTemplateHash": "
|
|
3
|
+
"capabilitiesLocalHash": "6102d7d83bddc9560b71c0b473964c09f44fcdf7e53330eeae74a0cc747de42b",
|
|
4
|
+
"capabilitiesRemoteTemplateHash": "dd1c11aa54c4c24d970136c0ad9b63de3e8358dae4dd81c1a682282fdfb6ff40",
|
|
5
5
|
"commandDescriptorVersion": "1.4.3",
|
|
6
|
-
"documentationContentHash": "
|
|
7
|
-
"documentationRegistryHash": "
|
|
6
|
+
"documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
|
|
7
|
+
"documentationRegistryHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
|
|
8
8
|
"generatedArtifactHashes": {
|
|
9
|
-
"generatedCommandDescriptors": "
|
|
10
|
-
"generatedContractRegistry": "
|
|
11
|
-
"generatedManifest": "
|
|
12
|
-
"generatedMcpToolDefinitions": "
|
|
13
|
-
"pyCommandDescriptors": "
|
|
14
|
-
"pyContractRegistry": "
|
|
15
|
-
"pyManifest": "
|
|
16
|
-
"pyMcpToolDefinitions": "
|
|
17
|
-
"tsCommandDescriptors": "
|
|
18
|
-
"tsContractRegistry": "
|
|
19
|
-
"tsManifest": "
|
|
20
|
-
"tsMcpToolDefinitions": "
|
|
9
|
+
"generatedCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
10
|
+
"generatedContractRegistry": "5914ebf699a5247e85573951e2190e157df7773c9dd0755e862346dc1fdeeeee",
|
|
11
|
+
"generatedManifest": "466a2de3df182401299a291dadc04f9407426e91f764f960bc4cca53c423326d",
|
|
12
|
+
"generatedMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
13
|
+
"pyCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
14
|
+
"pyContractRegistry": "5914ebf699a5247e85573951e2190e157df7773c9dd0755e862346dc1fdeeeee",
|
|
15
|
+
"pyManifest": "9888c6133300d09cee59846d65daa58d74fff2c05d3bc0043c9aaf71bd57722d",
|
|
16
|
+
"pyMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
17
|
+
"tsCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
18
|
+
"tsContractRegistry": "5914ebf699a5247e85573951e2190e157df7773c9dd0755e862346dc1fdeeeee",
|
|
19
|
+
"tsManifest": "af391f43d5f126e11fa4999a1251e56178f3136f3e1abf0617daa348e0879ce4",
|
|
20
|
+
"tsMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6"
|
|
21
21
|
},
|
|
22
22
|
"generatedManifestCommandDescriptorVersion": "1.4.3",
|
|
23
23
|
"generatedManifestPackageVersion": "0.1.0-alpha.21",
|
|
24
24
|
"generatedManifestRegistryDigest": {
|
|
25
25
|
"canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
|
|
26
|
-
"commandDigestHash": "
|
|
27
|
-
"descriptorHash": "
|
|
28
|
-
"documentationHash": "
|
|
29
|
-
"fullDescriptorHash": "
|
|
26
|
+
"commandDigestHash": "85f685455fdf85b757674a3086eb03354a628f22ada1a25afee0fd86b14b92c7",
|
|
27
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
28
|
+
"documentationHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
|
|
29
|
+
"fullDescriptorHash": "422f7c73ce499d926c92ea792b0c590c41c916dac377cf6790c5465d1eb5f384",
|
|
30
30
|
"namespaceHash": "cd39afc4f4e8b76473a4768c07d979c44e0421973786c54e12bb6d7888f5952a",
|
|
31
31
|
"policyProfilesHash": "9fb054a4f29be73c2ebf33f643bc17d904b2872dd8e7d564a690db828071a7ce",
|
|
32
32
|
"principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
|
|
33
33
|
"routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
|
|
34
34
|
"topLevelHash": "04e58344eaec2c14dfa336b13eff952a584c7c5355d90775c3bc8336ab0752ee",
|
|
35
|
-
"trustDistributionHash": "
|
|
35
|
+
"trustDistributionHash": "c46b02e1d58f85458978cbf40bbae951c64e82a0dd4f4dfa73fde6de94b1aa32"
|
|
36
36
|
},
|
|
37
37
|
"generatedManifestVersion": "1.0.0",
|
|
38
38
|
"registryDigest": {
|
|
39
39
|
"canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
|
|
40
|
-
"commandDigestHash": "
|
|
41
|
-
"descriptorHash": "
|
|
42
|
-
"documentationHash": "
|
|
43
|
-
"fullDescriptorHash": "
|
|
40
|
+
"commandDigestHash": "85f685455fdf85b757674a3086eb03354a628f22ada1a25afee0fd86b14b92c7",
|
|
41
|
+
"descriptorHash": "664970d781e477a11a683bc265cbd7fc8b0cf9576b50da49ab301b773e38b47d",
|
|
42
|
+
"documentationHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
|
|
43
|
+
"fullDescriptorHash": "422f7c73ce499d926c92ea792b0c590c41c916dac377cf6790c5465d1eb5f384",
|
|
44
44
|
"namespaceHash": "cd39afc4f4e8b76473a4768c07d979c44e0421973786c54e12bb6d7888f5952a",
|
|
45
45
|
"policyProfilesHash": "9fb054a4f29be73c2ebf33f643bc17d904b2872dd8e7d564a690db828071a7ce",
|
|
46
46
|
"principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
|
|
47
47
|
"routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
|
|
48
48
|
"topLevelHash": "04e58344eaec2c14dfa336b13eff952a584c7c5355d90775c3bc8336ab0752ee",
|
|
49
|
-
"trustDistributionHash": "
|
|
49
|
+
"trustDistributionHash": "c46b02e1d58f85458978cbf40bbae951c64e82a0dd4f4dfa73fde6de94b1aa32"
|
|
50
50
|
},
|
|
51
|
-
"schemaHash": "
|
|
51
|
+
"schemaHash": "497fd61bc7fb511b18987a6f30c194f1d4b08efdcf63d91798ff6b183727e797"
|
|
52
52
|
},
|
|
53
53
|
"publication": {
|
|
54
|
-
"contractLockHash": "
|
|
54
|
+
"contractLockHash": "bf15545a2fbb6e5ac3dc549a9f47506fb28e6b837685288624aa393d75b55eff",
|
|
55
55
|
"deterministic": true,
|
|
56
56
|
"grade": "release-grade",
|
|
57
57
|
"kind": "benchmark-contract-lock",
|
|
58
|
-
"lockDocumentHash": "
|
|
58
|
+
"lockDocumentHash": "e0961902c98f8d01cf7940f878b5dcccfcc88e3579bbcdd084a0c26770aa5c68",
|
|
59
59
|
"suiteLockPath": "benchmarks/locks/core.lock.json"
|
|
60
60
|
},
|
|
61
61
|
"schemaVersion": "1.0.0",
|