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.
Files changed (39) hide show
  1. package/README.md +7 -1
  2. package/README_FOR_SHARING.md +3 -0
  3. package/SKILL.md +2 -1
  4. package/benchmarks/latest/core-bundle.json +64 -35
  5. package/benchmarks/latest/core-history.json +32 -3
  6. package/benchmarks/latest/core-report.json +31 -31
  7. package/benchmarks/locks/core.lock.json +29 -29
  8. package/cli/lib/agent_contract_registry.cjs +13 -12
  9. package/cli/lib/doctor_service.cjs +11 -7
  10. package/cli/lib/mirror_command_service.cjs +6 -4
  11. package/cli/lib/mirror_deploy_guard_store.cjs +128 -0
  12. package/cli/lib/mirror_handlers/hedge.cjs +20 -8
  13. package/cli/lib/mirror_handlers/sync.cjs +3 -0
  14. package/cli/lib/mirror_hedge/planning.cjs +24 -0
  15. package/cli/lib/mirror_hedge/status.cjs +32 -0
  16. package/cli/lib/mirror_hedge_service.cjs +125 -0
  17. package/cli/lib/mirror_hedge_state_store.cjs +59 -0
  18. package/cli/lib/mirror_manifest_store.cjs +114 -4
  19. package/cli/lib/mirror_replay_service.cjs +383 -38
  20. package/cli/lib/mirror_service.cjs +242 -5
  21. package/cli/lib/pandora_deploy_service.cjs +210 -132
  22. package/cli/lib/polymarket_trade_adapter.cjs +7 -3
  23. package/cli/lib/setup_plan_service.cjs +12 -12
  24. package/docs/benchmarks/README.md +28 -2
  25. package/docs/benchmarks/history.json +32 -3
  26. package/docs/benchmarks/scenario-catalog.md +14 -3
  27. package/docs/benchmarks/scorecard.md +48 -7
  28. package/docs/proving-ground/README.md +70 -0
  29. package/docs/skills/capabilities.md +4 -4
  30. package/docs/skills/command-reference.md +4 -2
  31. package/docs/skills/mirror-operations.md +8 -2
  32. package/docs/skills/setup-and-onboarding.md +9 -9
  33. package/package.json +2 -1
  34. package/sdk/generated/command-descriptors.json +9 -8
  35. package/sdk/generated/contract-registry.json +93 -86
  36. package/sdk/generated/manifest.json +10 -10
  37. package/sdk/generated/mcp-tool-definitions.json +21 -18
  38. package/sdk/python/pandora_agent/generated/manifest.json +8 -8
  39. 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 repo’s verification gates, including docs, trust, SDK parity, and benchmark checks
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
@@ -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 methodology and score interpretation:
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-03-28T18:16:20.266Z",
4
+ "generatedAt": "2026-04-05T22:25:33.752Z",
5
5
  "package": {
6
6
  "name": "pandora-cli-skills",
7
- "version": "1.1.128"
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": "28ca830612444fc4da175fd3d1d8815ff331b44b19081f1ad730a17e0d76fec8",
15
- "lockSha256": "4d1d02e2b44d5c996dac30d1038ed496b6536a1a9cdf5885d3a682f72285d2d0"
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.128"
147
+ "packageVersion": "1.1.129"
148
148
  },
149
149
  "contractLock": {
150
- "capabilitiesLocalHash": "234948154a514575db24bf36a3a1959ffa52825d221fda6341b9bdf033ba857b",
151
- "capabilitiesRemoteTemplateHash": "4f1ee42dfcdefa2708dcc85cc16fe3dd25426562911a833600b315f94fc364f8",
150
+ "capabilitiesLocalHash": "99c1518dac4d608f9ff652d3945070c90fedbaf49838f492714a2e109163c885",
151
+ "capabilitiesRemoteTemplateHash": "b3f2aef2a799653a525d50f0902447ae5ed90cdfbcbae02627ef8e964e47556a",
152
152
  "commandDescriptorVersion": "1.4.3",
153
- "documentationContentHash": "74fc7863c3b3f684149f2feb518c9b0c9f9d7ef113c09dd8ba1872f690ab7f95",
154
- "documentationRegistryHash": "2bca31729c9c580125bd25764291699b63532afaa67d9380c72d1dda637944b7",
153
+ "documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
154
+ "documentationRegistryHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
155
155
  "generatedArtifactHashes": {
156
- "generatedCommandDescriptors": "5f415b7528d7e5b6086a96032d4d29d58e90ca082704f6bb4b25afd8f89c3fae",
157
- "generatedContractRegistry": "db1a9655e99a92ca81b3bfc934b8658ef42584c312c5488f2c699cce080b864c",
158
- "generatedManifest": "b4ae9d0b063ba2a04e3ea41a8330fbe7dc095f4180e616bc034e4901bde9ffe1",
159
- "generatedMcpToolDefinitions": "b37ce9423e4672326a42038dd2a99d04e9e5c9077d7613b9b516b4655cd1f16c",
160
- "pyCommandDescriptors": "5f415b7528d7e5b6086a96032d4d29d58e90ca082704f6bb4b25afd8f89c3fae",
161
- "pyContractRegistry": "db1a9655e99a92ca81b3bfc934b8658ef42584c312c5488f2c699cce080b864c",
162
- "pyManifest": "bc70ded5deabf23bd688aef4fb35e6f78590f7a883861d3eae75ab5a5fe7150f",
163
- "pyMcpToolDefinitions": "b37ce9423e4672326a42038dd2a99d04e9e5c9077d7613b9b516b4655cd1f16c",
164
- "tsCommandDescriptors": "5f415b7528d7e5b6086a96032d4d29d58e90ca082704f6bb4b25afd8f89c3fae",
165
- "tsContractRegistry": "db1a9655e99a92ca81b3bfc934b8658ef42584c312c5488f2c699cce080b864c",
166
- "tsManifest": "cda400d5fbd005646128c7b1a0cdd324a95328c63a1630872b5303b7dfb3adf4",
167
- "tsMcpToolDefinitions": "b37ce9423e4672326a42038dd2a99d04e9e5c9077d7613b9b516b4655cd1f16c"
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": "ff5ffd264b768cb059973405a2bbac264e790e8c583ce066668263259cf9d565",
174
- "descriptorHash": "0ce356cf2e77ac1228df9de4a89d5b4bcba73fb5b43a83cf59d34b92bc561d46",
175
- "documentationHash": "2bca31729c9c580125bd25764291699b63532afaa67d9380c72d1dda637944b7",
176
- "fullDescriptorHash": "a90cc06c3d9ab9068f87e2b1005847e685b7f86952cba5b2af9d2e38b8f963bb",
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": "7d7b666b4376791a20e9851954953805368c70059921bdc9de714bcb2732f80f"
182
+ "trustDistributionHash": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
183
183
  },
184
184
  "generatedManifestVersion": "1.0.0",
185
185
  "registryDigest": {
186
186
  "canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
187
- "commandDigestHash": "ff5ffd264b768cb059973405a2bbac264e790e8c583ce066668263259cf9d565",
188
- "descriptorHash": "0ce356cf2e77ac1228df9de4a89d5b4bcba73fb5b43a83cf59d34b92bc561d46",
189
- "documentationHash": "2bca31729c9c580125bd25764291699b63532afaa67d9380c72d1dda637944b7",
190
- "fullDescriptorHash": "a90cc06c3d9ab9068f87e2b1005847e685b7f86952cba5b2af9d2e38b8f963bb",
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": "7d7b666b4376791a20e9851954953805368c70059921bdc9de714bcb2732f80f"
196
+ "trustDistributionHash": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
197
197
  },
198
- "schemaHash": "d3b9c2aa7df64647187584fdccbb4e62b459e072537136aa4c9795ad87d98701"
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-03-28T18:16:20.266Z",
206
- "latestVersion": "1.1.128",
207
- "latestGeneratedAt": "2026-03-28T18:16:20.266Z",
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-03-28T18:16:20.266Z",
5
- "latestVersion": "1.1.128",
6
- "latestGeneratedAt": "2026-03-28T18:16:20.266Z",
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": "234948154a514575db24bf36a3a1959ffa52825d221fda6341b9bdf033ba857b",
4
- "capabilitiesRemoteTemplateHash": "4f1ee42dfcdefa2708dcc85cc16fe3dd25426562911a833600b315f94fc364f8",
3
+ "capabilitiesLocalHash": "99c1518dac4d608f9ff652d3945070c90fedbaf49838f492714a2e109163c885",
4
+ "capabilitiesRemoteTemplateHash": "b3f2aef2a799653a525d50f0902447ae5ed90cdfbcbae02627ef8e964e47556a",
5
5
  "commandDescriptorVersion": "1.4.3",
6
- "documentationContentHash": "74fc7863c3b3f684149f2feb518c9b0c9f9d7ef113c09dd8ba1872f690ab7f95",
7
- "documentationRegistryHash": "2bca31729c9c580125bd25764291699b63532afaa67d9380c72d1dda637944b7",
6
+ "documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
7
+ "documentationRegistryHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
8
8
  "generatedArtifactHashes": {
9
- "generatedCommandDescriptors": "5f415b7528d7e5b6086a96032d4d29d58e90ca082704f6bb4b25afd8f89c3fae",
10
- "generatedContractRegistry": "db1a9655e99a92ca81b3bfc934b8658ef42584c312c5488f2c699cce080b864c",
11
- "generatedManifest": "b4ae9d0b063ba2a04e3ea41a8330fbe7dc095f4180e616bc034e4901bde9ffe1",
12
- "generatedMcpToolDefinitions": "b37ce9423e4672326a42038dd2a99d04e9e5c9077d7613b9b516b4655cd1f16c",
13
- "pyCommandDescriptors": "5f415b7528d7e5b6086a96032d4d29d58e90ca082704f6bb4b25afd8f89c3fae",
14
- "pyContractRegistry": "db1a9655e99a92ca81b3bfc934b8658ef42584c312c5488f2c699cce080b864c",
15
- "pyManifest": "bc70ded5deabf23bd688aef4fb35e6f78590f7a883861d3eae75ab5a5fe7150f",
16
- "pyMcpToolDefinitions": "b37ce9423e4672326a42038dd2a99d04e9e5c9077d7613b9b516b4655cd1f16c",
17
- "tsCommandDescriptors": "5f415b7528d7e5b6086a96032d4d29d58e90ca082704f6bb4b25afd8f89c3fae",
18
- "tsContractRegistry": "db1a9655e99a92ca81b3bfc934b8658ef42584c312c5488f2c699cce080b864c",
19
- "tsManifest": "cda400d5fbd005646128c7b1a0cdd324a95328c63a1630872b5303b7dfb3adf4",
20
- "tsMcpToolDefinitions": "b37ce9423e4672326a42038dd2a99d04e9e5c9077d7613b9b516b4655cd1f16c"
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": "ff5ffd264b768cb059973405a2bbac264e790e8c583ce066668263259cf9d565",
27
- "descriptorHash": "0ce356cf2e77ac1228df9de4a89d5b4bcba73fb5b43a83cf59d34b92bc561d46",
28
- "documentationHash": "2bca31729c9c580125bd25764291699b63532afaa67d9380c72d1dda637944b7",
29
- "fullDescriptorHash": "a90cc06c3d9ab9068f87e2b1005847e685b7f86952cba5b2af9d2e38b8f963bb",
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": "7d7b666b4376791a20e9851954953805368c70059921bdc9de714bcb2732f80f"
35
+ "trustDistributionHash": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
36
36
  },
37
37
  "generatedManifestVersion": "1.0.0",
38
38
  "registryDigest": {
39
39
  "canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
40
- "commandDigestHash": "ff5ffd264b768cb059973405a2bbac264e790e8c583ce066668263259cf9d565",
41
- "descriptorHash": "0ce356cf2e77ac1228df9de4a89d5b4bcba73fb5b43a83cf59d34b92bc561d46",
42
- "documentationHash": "2bca31729c9c580125bd25764291699b63532afaa67d9380c72d1dda637944b7",
43
- "fullDescriptorHash": "a90cc06c3d9ab9068f87e2b1005847e685b7f86952cba5b2af9d2e38b8f963bb",
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": "7d7b666b4376791a20e9851954953805368c70059921bdc9de714bcb2732f80f"
49
+ "trustDistributionHash": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
50
50
  },
51
- "schemaHash": "d3b9c2aa7df64647187584fdccbb4e62b459e072537136aa4c9795ad87d98701"
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": "a4bd815ef65a25b65b6e17a0bfb0e46989cee4398aa652a310d448c40abc47dd",
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": "849ddbf08196116b5137360cb135b062bb4289cecc51c9c00c9380b1a78ff659",
297
- "suiteLockHash": "4d1d02e2b44d5c996dac30d1038ed496b6536a1a9cdf5885d3a682f72285d2d0",
296
+ "scorecardHash": "5a014e14aa2503889b833507f421a4b1d208d62d2f03c5c34ba34a3d6d450058",
297
+ "suiteLockHash": "7df51d1d695ce33ac0dc1292766d9f62d4ea224b30054613e93ef83d11626000",
298
298
  "suiteLockPath": "benchmarks/locks/core.lock.json"
299
299
  },
300
300
  "runtime": {
301
- "packageVersion": "1.1.128"
301
+ "packageVersion": "1.1.129"
302
302
  },
303
303
  "scenarios": [
304
304
  {
@@ -1,61 +1,61 @@
1
1
  {
2
2
  "contractLock": {
3
- "capabilitiesLocalHash": "234948154a514575db24bf36a3a1959ffa52825d221fda6341b9bdf033ba857b",
4
- "capabilitiesRemoteTemplateHash": "4f1ee42dfcdefa2708dcc85cc16fe3dd25426562911a833600b315f94fc364f8",
3
+ "capabilitiesLocalHash": "99c1518dac4d608f9ff652d3945070c90fedbaf49838f492714a2e109163c885",
4
+ "capabilitiesRemoteTemplateHash": "b3f2aef2a799653a525d50f0902447ae5ed90cdfbcbae02627ef8e964e47556a",
5
5
  "commandDescriptorVersion": "1.4.3",
6
- "documentationContentHash": "74fc7863c3b3f684149f2feb518c9b0c9f9d7ef113c09dd8ba1872f690ab7f95",
7
- "documentationRegistryHash": "2bca31729c9c580125bd25764291699b63532afaa67d9380c72d1dda637944b7",
6
+ "documentationContentHash": "cb130209bc40f5bdb9fccbd55ad07b6ec1fefbc95ab0d11fe6d50ef8eb6fa566",
7
+ "documentationRegistryHash": "eebe2a201c559e44b45d1a780713f6b302f56726a03a4a57538fcf6762530826",
8
8
  "generatedArtifactHashes": {
9
- "generatedCommandDescriptors": "5f415b7528d7e5b6086a96032d4d29d58e90ca082704f6bb4b25afd8f89c3fae",
10
- "generatedContractRegistry": "db1a9655e99a92ca81b3bfc934b8658ef42584c312c5488f2c699cce080b864c",
11
- "generatedManifest": "b4ae9d0b063ba2a04e3ea41a8330fbe7dc095f4180e616bc034e4901bde9ffe1",
12
- "generatedMcpToolDefinitions": "b37ce9423e4672326a42038dd2a99d04e9e5c9077d7613b9b516b4655cd1f16c",
13
- "pyCommandDescriptors": "5f415b7528d7e5b6086a96032d4d29d58e90ca082704f6bb4b25afd8f89c3fae",
14
- "pyContractRegistry": "db1a9655e99a92ca81b3bfc934b8658ef42584c312c5488f2c699cce080b864c",
15
- "pyManifest": "bc70ded5deabf23bd688aef4fb35e6f78590f7a883861d3eae75ab5a5fe7150f",
16
- "pyMcpToolDefinitions": "b37ce9423e4672326a42038dd2a99d04e9e5c9077d7613b9b516b4655cd1f16c",
17
- "tsCommandDescriptors": "5f415b7528d7e5b6086a96032d4d29d58e90ca082704f6bb4b25afd8f89c3fae",
18
- "tsContractRegistry": "db1a9655e99a92ca81b3bfc934b8658ef42584c312c5488f2c699cce080b864c",
19
- "tsManifest": "cda400d5fbd005646128c7b1a0cdd324a95328c63a1630872b5303b7dfb3adf4",
20
- "tsMcpToolDefinitions": "b37ce9423e4672326a42038dd2a99d04e9e5c9077d7613b9b516b4655cd1f16c"
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": "ff5ffd264b768cb059973405a2bbac264e790e8c583ce066668263259cf9d565",
27
- "descriptorHash": "0ce356cf2e77ac1228df9de4a89d5b4bcba73fb5b43a83cf59d34b92bc561d46",
28
- "documentationHash": "2bca31729c9c580125bd25764291699b63532afaa67d9380c72d1dda637944b7",
29
- "fullDescriptorHash": "a90cc06c3d9ab9068f87e2b1005847e685b7f86952cba5b2af9d2e38b8f963bb",
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": "7d7b666b4376791a20e9851954953805368c70059921bdc9de714bcb2732f80f"
35
+ "trustDistributionHash": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
36
36
  },
37
37
  "generatedManifestVersion": "1.0.0",
38
38
  "registryDigest": {
39
39
  "canonicalHash": "cce2ede8f658d43e0807f7f194e28fc356085e00fc70d99d27ecbd674be14a9f",
40
- "commandDigestHash": "ff5ffd264b768cb059973405a2bbac264e790e8c583ce066668263259cf9d565",
41
- "descriptorHash": "0ce356cf2e77ac1228df9de4a89d5b4bcba73fb5b43a83cf59d34b92bc561d46",
42
- "documentationHash": "2bca31729c9c580125bd25764291699b63532afaa67d9380c72d1dda637944b7",
43
- "fullDescriptorHash": "a90cc06c3d9ab9068f87e2b1005847e685b7f86952cba5b2af9d2e38b8f963bb",
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": "7d7b666b4376791a20e9851954953805368c70059921bdc9de714bcb2732f80f"
49
+ "trustDistributionHash": "3a926813503a3638bd98ce9689077494031ba758b0a322c4218815935d105459"
50
50
  },
51
- "schemaHash": "d3b9c2aa7df64647187584fdccbb4e62b459e072537136aa4c9795ad87d98701"
51
+ "schemaHash": "491cbbceb1c302dd6c9fa5a60509b74c46a17d1be2eb0dbe5522cd141d4b0d18"
52
52
  },
53
53
  "publication": {
54
- "contractLockHash": "a4bd815ef65a25b65b6e17a0bfb0e46989cee4398aa652a310d448c40abc47dd",
54
+ "contractLockHash": "561a99c5164b8dccfbe6ad83c36531462e46a0ae35b5332ad17e1f11f5b5ccae",
55
55
  "deterministic": true,
56
56
  "grade": "release-grade",
57
57
  "kind": "benchmark-contract-lock",
58
- "lockDocumentHash": "9901f00baa8024a2ce7d8e40b2a22eea8e2a30e20edafc2fc3a837a0b16a7b8b",
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: 'LP hedging runtime family for plan, bundle, run, start, status, and stop. This is separate from mirror sync, which continues to manage the Pandora rebalance plus Polymarket hedge legs.',
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 LP hedge plan from selector-first market context or persisted state.',
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 LP hedge plan from selector-first market context or persisted state. Separate from mirror sync, which still manages the Pandora rebalance plus Polymarket hedge legs.',
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 the LP hedge daemon without submitting a live hedge transaction.',
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 the packaged LP hedge daemon without submitting a live hedge transaction.',
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 the LP hedge loop in the foreground.',
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 the LP hedge loop in the foreground. Separate from mirror sync, which still manages the Pandora rebalance plus Polymarket hedge legs.',
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 LP hedge daemon.',
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 LP hedge daemon. Separate from mirror sync, which still manages the Pandora rebalance plus Polymarket hedge legs.',
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 command family for separate Pandora rebalance and Polymarket hedge legs. Rebalance-route flags affect only the Ethereum Pandora leg; cross-venue settlement is not atomic.',
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 with separate Pandora rebalance and Polymarket hedge legs. Rebalance-route flags affect only the Ethereum Pandora leg; cross-venue settlement is not atomic.',
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. Rebalance-route flags affect only the Ethereum Pandora leg. Snapshot/action payloads expose reserveSource and rebalance sizing provenance.',
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: {