pandora-cli-skills 1.1.128 → 1.1.129
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 +64 -35
- package/benchmarks/latest/core-history.json +32 -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 +20 -8
- 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 +32 -0
- package/cli/lib/mirror_hedge_service.cjs +125 -0
- package/cli/lib/mirror_hedge_state_store.cjs +59 -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/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 +32 -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-05T22:25:33.752Z",
|
|
5
5
|
"package": {
|
|
6
6
|
"name": "pandora-cli-skills",
|
|
7
|
-
"version": "1.1.
|
|
7
|
+
"version": "1.1.129"
|
|
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": "94caa32a45f24ebaf36ade64d92b642e36fa333be330b4e70502c606415ad0be",
|
|
15
|
+
"lockSha256": "7df51d1d695ce33ac0dc1292766d9f62d4ea224b30054613e93ef83d11626000"
|
|
16
16
|
},
|
|
17
17
|
"latest": {
|
|
18
18
|
"summary": {
|
|
@@ -144,68 +144,97 @@
|
|
|
144
144
|
]
|
|
145
145
|
},
|
|
146
146
|
"runtime": {
|
|
147
|
-
"packageVersion": "1.1.
|
|
147
|
+
"packageVersion": "1.1.129"
|
|
148
148
|
},
|
|
149
149
|
"contractLock": {
|
|
150
|
-
"capabilitiesLocalHash": "
|
|
151
|
-
"capabilitiesRemoteTemplateHash": "
|
|
150
|
+
"capabilitiesLocalHash": "99c1518dac4d608f9ff652d3945070c90fedbaf49838f492714a2e109163c885",
|
|
151
|
+
"capabilitiesRemoteTemplateHash": "b3f2aef2a799653a525d50f0902447ae5ed90cdfbcbae02627ef8e964e47556a",
|
|
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": "fe8b9a3b82f1490b37448a109c4f3f0ff4fbf4ee7c90902d7e79edf60612498b",
|
|
158
|
+
"generatedManifest": "bbd5d4175d871062c4c148f912baa6523dce57208dd25db98daabb434aace14f",
|
|
159
|
+
"generatedMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
160
|
+
"pyCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
161
|
+
"pyContractRegistry": "fe8b9a3b82f1490b37448a109c4f3f0ff4fbf4ee7c90902d7e79edf60612498b",
|
|
162
|
+
"pyManifest": "ad8226fc146d310e85223d86640d7dda04918f0f6b24050084202cab51c56661",
|
|
163
|
+
"pyMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
164
|
+
"tsCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
165
|
+
"tsContractRegistry": "fe8b9a3b82f1490b37448a109c4f3f0ff4fbf4ee7c90902d7e79edf60612498b",
|
|
166
|
+
"tsManifest": "e75660c84753fc91de7b54c5f9adcb35df9a4535966bea3e5d7545e009229e99",
|
|
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": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
|
|
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": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
|
|
197
197
|
},
|
|
198
|
-
"schemaHash": "
|
|
198
|
+
"schemaHash": "491cbbceb1c302dd6c9fa5a60509b74c46a17d1be2eb0dbe5522cd141d4b0d18"
|
|
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-05T22:25:33.752Z",
|
|
206
|
+
"latestVersion": "1.1.129",
|
|
207
|
+
"latestGeneratedAt": "2026-04-05T22:25:33.752Z",
|
|
208
208
|
"entries": [
|
|
209
|
+
{
|
|
210
|
+
"schemaVersion": "1.0.0",
|
|
211
|
+
"suite": "core",
|
|
212
|
+
"packageName": "pandora-cli-skills",
|
|
213
|
+
"version": "1.1.129",
|
|
214
|
+
"packageVersion": "1.1.129",
|
|
215
|
+
"generatedAt": "2026-04-05T22:25:33.752Z",
|
|
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": "94caa32a45f24ebaf36ade64d92b642e36fa333be330b4e70502c606415ad0be",
|
|
235
|
+
"lockSha256": "7df51d1d695ce33ac0dc1292766d9f62d4ea224b30054613e93ef83d11626000",
|
|
236
|
+
"lockSchemaVersion": "1.0.0"
|
|
237
|
+
},
|
|
209
238
|
{
|
|
210
239
|
"schemaVersion": "1.0.0",
|
|
211
240
|
"suite": "core",
|
|
@@ -1,10 +1,39 @@
|
|
|
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-05T22:25:33.752Z",
|
|
5
|
+
"latestVersion": "1.1.129",
|
|
6
|
+
"latestGeneratedAt": "2026-04-05T22:25:33.752Z",
|
|
7
7
|
"entries": [
|
|
8
|
+
{
|
|
9
|
+
"schemaVersion": "1.0.0",
|
|
10
|
+
"suite": "core",
|
|
11
|
+
"packageName": "pandora-cli-skills",
|
|
12
|
+
"version": "1.1.129",
|
|
13
|
+
"packageVersion": "1.1.129",
|
|
14
|
+
"generatedAt": "2026-04-05T22:25:33.752Z",
|
|
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": "94caa32a45f24ebaf36ade64d92b642e36fa333be330b4e70502c606415ad0be",
|
|
34
|
+
"lockSha256": "7df51d1d695ce33ac0dc1292766d9f62d4ea224b30054613e93ef83d11626000",
|
|
35
|
+
"lockSchemaVersion": "1.0.0"
|
|
36
|
+
},
|
|
8
37
|
{
|
|
9
38
|
"schemaVersion": "1.0.0",
|
|
10
39
|
"suite": "core",
|
|
@@ -1,54 +1,54 @@
|
|
|
1
1
|
{
|
|
2
2
|
"contractLock": {
|
|
3
|
-
"capabilitiesLocalHash": "
|
|
4
|
-
"capabilitiesRemoteTemplateHash": "
|
|
3
|
+
"capabilitiesLocalHash": "99c1518dac4d608f9ff652d3945070c90fedbaf49838f492714a2e109163c885",
|
|
4
|
+
"capabilitiesRemoteTemplateHash": "b3f2aef2a799653a525d50f0902447ae5ed90cdfbcbae02627ef8e964e47556a",
|
|
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": "fe8b9a3b82f1490b37448a109c4f3f0ff4fbf4ee7c90902d7e79edf60612498b",
|
|
11
|
+
"generatedManifest": "bbd5d4175d871062c4c148f912baa6523dce57208dd25db98daabb434aace14f",
|
|
12
|
+
"generatedMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
13
|
+
"pyCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
14
|
+
"pyContractRegistry": "fe8b9a3b82f1490b37448a109c4f3f0ff4fbf4ee7c90902d7e79edf60612498b",
|
|
15
|
+
"pyManifest": "ad8226fc146d310e85223d86640d7dda04918f0f6b24050084202cab51c56661",
|
|
16
|
+
"pyMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
17
|
+
"tsCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
18
|
+
"tsContractRegistry": "fe8b9a3b82f1490b37448a109c4f3f0ff4fbf4ee7c90902d7e79edf60612498b",
|
|
19
|
+
"tsManifest": "e75660c84753fc91de7b54c5f9adcb35df9a4535966bea3e5d7545e009229e99",
|
|
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": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
|
|
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": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
|
|
50
50
|
},
|
|
51
|
-
"schemaHash": "
|
|
51
|
+
"schemaHash": "491cbbceb1c302dd6c9fa5a60509b74c46a17d1be2eb0dbe5522cd141d4b0d18"
|
|
52
52
|
},
|
|
53
53
|
"contractLockMatchesExpected": true,
|
|
54
54
|
"contractLockMismatches": [],
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
]
|
|
285
285
|
},
|
|
286
286
|
"publication": {
|
|
287
|
-
"contractLockHash": "
|
|
287
|
+
"contractLockHash": "561a99c5164b8dccfbe6ad83c36531462e46a0ae35b5332ad17e1f11f5b5ccae",
|
|
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": "5a014e14aa2503889b833507f421a4b1d208d62d2f03c5c34ba34a3d6d450058",
|
|
297
|
+
"suiteLockHash": "7df51d1d695ce33ac0dc1292766d9f62d4ea224b30054613e93ef83d11626000",
|
|
298
298
|
"suiteLockPath": "benchmarks/locks/core.lock.json"
|
|
299
299
|
},
|
|
300
300
|
"runtime": {
|
|
301
|
-
"packageVersion": "1.1.
|
|
301
|
+
"packageVersion": "1.1.129"
|
|
302
302
|
},
|
|
303
303
|
"scenarios": [
|
|
304
304
|
{
|
|
@@ -1,61 +1,61 @@
|
|
|
1
1
|
{
|
|
2
2
|
"contractLock": {
|
|
3
|
-
"capabilitiesLocalHash": "
|
|
4
|
-
"capabilitiesRemoteTemplateHash": "
|
|
3
|
+
"capabilitiesLocalHash": "99c1518dac4d608f9ff652d3945070c90fedbaf49838f492714a2e109163c885",
|
|
4
|
+
"capabilitiesRemoteTemplateHash": "b3f2aef2a799653a525d50f0902447ae5ed90cdfbcbae02627ef8e964e47556a",
|
|
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": "fe8b9a3b82f1490b37448a109c4f3f0ff4fbf4ee7c90902d7e79edf60612498b",
|
|
11
|
+
"generatedManifest": "bbd5d4175d871062c4c148f912baa6523dce57208dd25db98daabb434aace14f",
|
|
12
|
+
"generatedMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
13
|
+
"pyCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
14
|
+
"pyContractRegistry": "fe8b9a3b82f1490b37448a109c4f3f0ff4fbf4ee7c90902d7e79edf60612498b",
|
|
15
|
+
"pyManifest": "ad8226fc146d310e85223d86640d7dda04918f0f6b24050084202cab51c56661",
|
|
16
|
+
"pyMcpToolDefinitions": "6dc62098f1c71b3816d75115ab5e31734484d9bc19ecff0bce32e7ab50fc00d6",
|
|
17
|
+
"tsCommandDescriptors": "60ab2ae91d950b5639093413fb1806d979f024203ffad0b686705a94d5b06e07",
|
|
18
|
+
"tsContractRegistry": "fe8b9a3b82f1490b37448a109c4f3f0ff4fbf4ee7c90902d7e79edf60612498b",
|
|
19
|
+
"tsManifest": "e75660c84753fc91de7b54c5f9adcb35df9a4535966bea3e5d7545e009229e99",
|
|
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": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
|
|
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": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
|
|
50
50
|
},
|
|
51
|
-
"schemaHash": "
|
|
51
|
+
"schemaHash": "491cbbceb1c302dd6c9fa5a60509b74c46a17d1be2eb0dbe5522cd141d4b0d18"
|
|
52
52
|
},
|
|
53
53
|
"publication": {
|
|
54
|
-
"contractLockHash": "
|
|
54
|
+
"contractLockHash": "561a99c5164b8dccfbe6ad83c36531462e46a0ae35b5332ad17e1f11f5b5ccae",
|
|
55
55
|
"deterministic": true,
|
|
56
56
|
"grade": "release-grade",
|
|
57
57
|
"kind": "benchmark-contract-lock",
|
|
58
|
-
"lockDocumentHash": "
|
|
58
|
+
"lockDocumentHash": "090c19b306a285b417d7ea26034d5b558c3af6b4b7fcf66cc7eef45f886c0ee2",
|
|
59
59
|
"suiteLockPath": "benchmarks/locks/core.lock.json"
|
|
60
60
|
},
|
|
61
61
|
"schemaVersion": "1.0.0",
|
|
@@ -3458,7 +3458,7 @@ const commandContracts = [
|
|
|
3458
3458
|
}),
|
|
3459
3459
|
commandContract({
|
|
3460
3460
|
name: 'mirror.hedge',
|
|
3461
|
-
summary: '
|
|
3461
|
+
summary: 'Polymarket Hedge Mode for plan, bundle, run, start, status, and stop. Use this when Pandora flow should be hedged on Polymarket without running Pandora Mirroring Mode.',
|
|
3462
3462
|
usage: 'pandora [--output table|json] mirror hedge plan|run|start|status|stop|bundle ...',
|
|
3463
3463
|
emits: ['mirror.hedge.help'],
|
|
3464
3464
|
dataSchema: '#/definitions/MirrorHedgePayload',
|
|
@@ -3466,7 +3466,7 @@ const commandContracts = [
|
|
|
3466
3466
|
}),
|
|
3467
3467
|
commandContract({
|
|
3468
3468
|
name: 'mirror.hedge.plan',
|
|
3469
|
-
summary: 'Build a read-only
|
|
3469
|
+
summary: 'Build a read-only Polymarket Hedge Mode plan from selector-first market context or persisted state.',
|
|
3470
3470
|
usage:
|
|
3471
3471
|
'pandora [--output table|json] mirror hedge plan --state-file <path>|--strategy-hash <hash>|(--pandora-market-address <address>|--market-address <address>) (--polymarket-market-id <id>|--polymarket-slug <slug>) --internal-wallets-file <path> [--min-hedge-usdc <n>] [--partial-hedge-policy partial|skip] [--sell-hedge-policy depth-checked|manual-only] [--trust-deploy] [--indexer-url <url>] [--timeout-ms <ms>] [--polymarket-host <url>] [--polymarket-gamma-url <url>] [--polymarket-gamma-mock-url <url>] [--polymarket-mock-url <url>]',
|
|
3472
3472
|
emits: ['mirror.hedge.plan', 'mirror.hedge.plan.help'],
|
|
@@ -3474,7 +3474,7 @@ const commandContracts = [
|
|
|
3474
3474
|
mcpExposed: true,
|
|
3475
3475
|
mcp: {
|
|
3476
3476
|
command: ['mirror', 'hedge', 'plan'],
|
|
3477
|
-
description: 'Build a read-only
|
|
3477
|
+
description: 'Build a read-only Polymarket Hedge Mode plan from selector-first market context or persisted state. Use Pandora Mirroring Mode separately through mirror sync with --no-hedge when Pandora should follow Polymarket odds.',
|
|
3478
3478
|
inputSchema: buildInputSchema({
|
|
3479
3479
|
flagProperties: {
|
|
3480
3480
|
'state-file': commonFlags.stateFile,
|
|
@@ -3515,7 +3515,7 @@ const commandContracts = [
|
|
|
3515
3515
|
}),
|
|
3516
3516
|
commandContract({
|
|
3517
3517
|
name: 'mirror.hedge.bundle',
|
|
3518
|
-
summary: 'Build deterministic VPS deployment artifacts for
|
|
3518
|
+
summary: 'Build deterministic VPS deployment artifacts for Polymarket Hedge Mode without submitting a live hedge transaction.',
|
|
3519
3519
|
usage:
|
|
3520
3520
|
'pandora [--output table|json] mirror hedge bundle --state-file <path>|--strategy-hash <hash>|(--pandora-market-address <address>|--market-address <address>) (--polymarket-market-id <id>|--polymarket-slug <slug>) --internal-wallets-file <path> [--output-dir <path>|--bundle-dir <path>] [--min-hedge-usdc <n>] [--partial-hedge-policy partial|skip] [--sell-hedge-policy depth-checked|manual-only] [--trust-deploy] [--indexer-url <url>] [--timeout-ms <ms>] [--polymarket-host <url>] [--polymarket-gamma-url <url>] [--polymarket-gamma-mock-url <url>] [--polymarket-mock-url <url>]',
|
|
3521
3521
|
emits: ['mirror.hedge.bundle', 'mirror.hedge.bundle.help'],
|
|
@@ -3523,7 +3523,7 @@ const commandContracts = [
|
|
|
3523
3523
|
mcpExposed: true,
|
|
3524
3524
|
mcp: {
|
|
3525
3525
|
command: ['mirror', 'hedge', 'bundle'],
|
|
3526
|
-
description: 'Build deterministic VPS deployment artifacts for
|
|
3526
|
+
description: 'Build deterministic VPS deployment artifacts for Polymarket Hedge Mode without submitting a live hedge transaction.',
|
|
3527
3527
|
inputSchema: buildInputSchema({
|
|
3528
3528
|
flagProperties: {
|
|
3529
3529
|
'state-file': commonFlags.stateFile,
|
|
@@ -3564,7 +3564,7 @@ const commandContracts = [
|
|
|
3564
3564
|
}),
|
|
3565
3565
|
commandContract({
|
|
3566
3566
|
name: 'mirror.hedge.run',
|
|
3567
|
-
summary: 'Run
|
|
3567
|
+
summary: 'Run Polymarket Hedge Mode in the foreground.',
|
|
3568
3568
|
usage:
|
|
3569
3569
|
'pandora [--output table|json] mirror hedge run --state-file <path>|--strategy-hash <hash>|(--pandora-market-address <address>|--market-address <address>) (--polymarket-market-id <id>|--polymarket-slug <slug>) --internal-wallets-file <path> [--paper|--dry-run|--execute-live|--execute] [--private-key <hex>|--profile-id <id>|--profile-file <path>] [--funder <address>] [--usdc <address>] [--chain-id <id>] [--rpc-url <url>] [--polymarket-rpc-url <url>] [--trust-deploy] [--indexer-url <url>] [--timeout-ms <ms>] [--interval-ms <ms>] [--iterations <n>] [--adopt-existing-positions] [--min-hedge-usdc <n>] [--partial-hedge-policy partial|skip] [--sell-hedge-policy depth-checked|manual-only] [--depth-slippage-bps <n>] [--polymarket-host <url>] [--polymarket-gamma-url <url>] [--polymarket-gamma-mock-url <url>] [--polymarket-mock-url <url>]',
|
|
3570
3570
|
emits: ['mirror.hedge.run', 'mirror.hedge.help'],
|
|
@@ -3574,7 +3574,7 @@ const commandContracts = [
|
|
|
3574
3574
|
mutating: true,
|
|
3575
3575
|
mcp: {
|
|
3576
3576
|
command: ['mirror', 'hedge', 'run'],
|
|
3577
|
-
description: 'Run
|
|
3577
|
+
description: 'Run Polymarket Hedge Mode in the foreground. Use this when Pandora trades should hedge on Polymarket and Pandora Mirroring Mode should stay off.',
|
|
3578
3578
|
inputSchema: buildInputSchema({
|
|
3579
3579
|
includeIntent: true,
|
|
3580
3580
|
flagProperties: {
|
|
@@ -3639,7 +3639,7 @@ const commandContracts = [
|
|
|
3639
3639
|
}),
|
|
3640
3640
|
commandContract({
|
|
3641
3641
|
name: 'mirror.hedge.start',
|
|
3642
|
-
summary: 'Start detached
|
|
3642
|
+
summary: 'Start detached Polymarket Hedge Mode daemon.',
|
|
3643
3643
|
usage:
|
|
3644
3644
|
'pandora [--output table|json] mirror hedge start --state-file <path>|--strategy-hash <hash>|(--pandora-market-address <address>|--market-address <address>) (--polymarket-market-id <id>|--polymarket-slug <slug>) --internal-wallets-file <path> [--paper|--dry-run|--execute-live|--execute] [--private-key <hex>|--profile-id <id>|--profile-file <path>] [--funder <address>] [--usdc <address>] [--chain-id <id>] [--rpc-url <url>] [--polymarket-rpc-url <url>] [--trust-deploy] [--indexer-url <url>] [--timeout-ms <ms>] [--interval-ms <ms>] [--iterations <n>] [--adopt-existing-positions] [--min-hedge-usdc <n>] [--partial-hedge-policy partial|skip] [--sell-hedge-policy depth-checked|manual-only] [--depth-slippage-bps <n>] [--polymarket-host <url>] [--polymarket-gamma-url <url>] [--polymarket-gamma-mock-url <url>] [--polymarket-mock-url <url>]',
|
|
3645
3645
|
emits: ['mirror.hedge.start', 'mirror.hedge.help'],
|
|
@@ -3649,7 +3649,7 @@ const commandContracts = [
|
|
|
3649
3649
|
mutating: true,
|
|
3650
3650
|
mcp: {
|
|
3651
3651
|
command: ['mirror', 'hedge', 'start'],
|
|
3652
|
-
description: 'Start detached
|
|
3652
|
+
description: 'Start detached Polymarket Hedge Mode daemon. Use Pandora Mirroring Mode separately through mirror sync with --no-hedge when you only want Pandora repricing.',
|
|
3653
3653
|
inputSchema: buildInputSchema({
|
|
3654
3654
|
includeIntent: true,
|
|
3655
3655
|
flagProperties: {
|
|
@@ -3917,14 +3917,14 @@ const commandContracts = [
|
|
|
3917
3917
|
}),
|
|
3918
3918
|
commandContract({
|
|
3919
3919
|
name: 'mirror.sync',
|
|
3920
|
-
summary: 'Mirror sync runtime
|
|
3920
|
+
summary: 'Mirror sync runtime family. Use `mirror sync --no-hedge` for Pandora Mirroring Mode, or plain mirror sync for the hybrid loop with separate Pandora rebalance and Polymarket hedge legs.',
|
|
3921
3921
|
usage: 'pandora [--output table|json] mirror sync once|run|start|stop|status|unlock ...',
|
|
3922
3922
|
emits: ['mirror.sync.help'],
|
|
3923
3923
|
dataSchema: '#/definitions/MirrorStatusPayload',
|
|
3924
3924
|
}),
|
|
3925
3925
|
commandContract({
|
|
3926
3926
|
name: 'mirror.sync.once',
|
|
3927
|
-
summary: 'Execute one mirror sync tick
|
|
3927
|
+
summary: 'Execute one mirror sync tick. `--no-hedge` makes this Pandora Mirroring Mode; without it the loop may rebalance Pandora and hedge on Polymarket as separate Pandora rebalance and Polymarket hedge legs.',
|
|
3928
3928
|
usage:
|
|
3929
3929
|
'pandora [--output table|json] mirror sync once --pandora-market-address <address>|--market-address <address> --polymarket-market-id <id>|--polymarket-slug <slug> [--paper|--dry-run|--execute-live|--execute] [--private-key <hex>|--profile-id <id>|--profile-file <path>] [--funder <address>] [--usdc <address>] [--trust-deploy] [--manifest-file <path>] [--skip-gate] [--strict-close-time-delta] [--stream|--no-stream] [--verbose] [--interval-ms <ms>] [--drift-trigger-bps <n>] [--hedge-trigger-usdc <n>] [--hedge-ratio <n>] [--hedge-scope pool|total] [--skip-initial-hedge] [--adopt-existing-positions] [--no-hedge] [--rebalance-mode atomic|incremental] [--price-source on-chain|indexer] [--rebalance-route public|auto|flashbots-private|flashbots-bundle] [--rebalance-route-fallback fail|public] [--flashbots-relay-url <url>] [--flashbots-auth-key <key>] [--flashbots-target-block-offset <n>] [--max-rebalance-usdc <n>] [--max-hedge-usdc <n>] [--max-open-exposure-usdc <amount>] [--max-trades-per-day <n>] [--cooldown-ms <ms>] [--depth-slippage-bps <n>] [--min-time-to-close-sec <n>] [--iterations <n>] [--state-file <path>] [--kill-switch-file <path>] [--chain-id <id>] [--rpc-url <url>] [--polymarket-rpc-url <url>] [--polymarket-host <url>] [--polymarket-gamma-url <url>] [--polymarket-gamma-mock-url <url>] [--polymarket-mock-url <url>] [--webhook-url <url>] [--telegram-bot-token <token>] [--telegram-chat-id <id>] [--discord-webhook-url <url>]',
|
|
3930
3930
|
emits: ['mirror.sync.once', 'mirror.sync.help'],
|
|
@@ -3937,11 +3937,12 @@ const commandContracts = [
|
|
|
3937
3937
|
notes: [
|
|
3938
3938
|
'The default mirror stop file is ~/.pandora/mirror/STOP. Its presence intentionally blocks local mirror sync starts and ticks until cleared.',
|
|
3939
3939
|
'Use mirror.panic clear mode after incident review, or remove the stop file manually only if you know the emergency lock is stale.',
|
|
3940
|
+
'Pandora Mirroring Mode means mirror sync with --no-hedge. For hedge-only operation on Polymarket, use mirror hedge.',
|
|
3940
3941
|
],
|
|
3941
3942
|
},
|
|
3942
3943
|
mcp: {
|
|
3943
3944
|
command: ['mirror', 'sync', 'once'],
|
|
3944
|
-
description: 'Execute one mirror sync tick.
|
|
3945
|
+
description: 'Execute one mirror sync tick. Use --no-hedge for Pandora Mirroring Mode, where Pandora follows Polymarket odds without placing a Polymarket hedge. Without --no-hedge, sync is the hybrid loop.',
|
|
3945
3946
|
inputSchema: buildInputSchema({
|
|
3946
3947
|
includeIntent: true,
|
|
3947
3948
|
flagProperties: {
|