@thisispandora/agent-sdk 0.1.0-alpha.8 → 0.1.0-alpha.9
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.
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
"scan"
|
|
341
341
|
],
|
|
342
342
|
"canonicalTool": "arb.scan",
|
|
343
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
343
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
344
344
|
"controlInputNames": [],
|
|
345
345
|
"dataSchema": "#/definitions/ArbScanPayload",
|
|
346
346
|
"emits": [
|
|
@@ -359,6 +359,36 @@
|
|
|
359
359
|
"inputSchema": {
|
|
360
360
|
"additionalProperties": false,
|
|
361
361
|
"properties": {
|
|
362
|
+
"ai-max-candidates": {
|
|
363
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
364
|
+
"minimum": 1,
|
|
365
|
+
"type": "integer"
|
|
366
|
+
},
|
|
367
|
+
"ai-model": {
|
|
368
|
+
"description": "Optional provider model override.",
|
|
369
|
+
"type": "string"
|
|
370
|
+
},
|
|
371
|
+
"ai-provider": {
|
|
372
|
+
"description": "Provider-backed adjudication mode.",
|
|
373
|
+
"enum": [
|
|
374
|
+
"auto",
|
|
375
|
+
"none",
|
|
376
|
+
"mock",
|
|
377
|
+
"openai",
|
|
378
|
+
"anthropic"
|
|
379
|
+
]
|
|
380
|
+
},
|
|
381
|
+
"ai-threshold": {
|
|
382
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
383
|
+
"maximum": 1,
|
|
384
|
+
"minimum": 0,
|
|
385
|
+
"type": "number"
|
|
386
|
+
},
|
|
387
|
+
"ai-timeout-ms": {
|
|
388
|
+
"description": "Timeout for each provider adjudication request.",
|
|
389
|
+
"minimum": 1,
|
|
390
|
+
"type": "integer"
|
|
391
|
+
},
|
|
362
392
|
"amount-usdc": {
|
|
363
393
|
"description": "Sizing notional in USDC.",
|
|
364
394
|
"minimum": 0,
|
|
@@ -386,6 +416,13 @@
|
|
|
386
416
|
"description": "Comma-delimited market ids when source=pandora.",
|
|
387
417
|
"type": "string"
|
|
388
418
|
},
|
|
419
|
+
"matcher": {
|
|
420
|
+
"description": "Arbitrage matcher mode.",
|
|
421
|
+
"enum": [
|
|
422
|
+
"heuristic",
|
|
423
|
+
"hybrid"
|
|
424
|
+
]
|
|
425
|
+
},
|
|
389
426
|
"max-bundle-size": {
|
|
390
427
|
"description": "Maximum combinatorial bundle size.",
|
|
391
428
|
"minimum": 3,
|
|
@@ -471,7 +508,7 @@
|
|
|
471
508
|
"summary": "Canonical arbitrage scan command for streaming or bounded spread detection.",
|
|
472
509
|
"supportsRemote": true,
|
|
473
510
|
"supportsWebhook": false,
|
|
474
|
-
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
511
|
+
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
475
512
|
},
|
|
476
513
|
"autopilot": {
|
|
477
514
|
"agentWorkflow": null,
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"main": "cli/pandora.cjs",
|
|
72
72
|
"name": "pandora-cli-skills",
|
|
73
73
|
"sourceProjectPath": "package.json",
|
|
74
|
-
"version": "1.1.
|
|
74
|
+
"version": "1.1.90"
|
|
75
75
|
},
|
|
76
76
|
"typescript": {
|
|
77
77
|
"artifactSubpaths": {
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"format": "node",
|
|
99
99
|
"name": "@thisispandora/agent-sdk",
|
|
100
100
|
"sourceProjectPath": "sdk/typescript/package.json",
|
|
101
|
-
"version": "0.1.0-alpha.
|
|
101
|
+
"version": "0.1.0-alpha.9"
|
|
102
102
|
}
|
|
103
103
|
},
|
|
104
104
|
"supported": true,
|
|
@@ -11555,15 +11555,15 @@
|
|
|
11555
11555
|
"registryDigest": {
|
|
11556
11556
|
"canonicalHash": "b501a15ce9f61731613d044e2c97a03142a261af386b1182638eb069a5f7ea0a",
|
|
11557
11557
|
"commandDigestHash": "d44d4b52bc59aa8da9ba7a19f1a85a188d48c20a6ad59a70fd5e0b583acdce08",
|
|
11558
|
-
"descriptorHash": "
|
|
11558
|
+
"descriptorHash": "6d65ee91adfb4fc96ef43e81d331f9b41116dae11bf7451960052eb0284d7948",
|
|
11559
11559
|
"documentationHash": "861462b91dd1da73bf3d98cd764d00241b3991ef641c10a096cec32fe84600af",
|
|
11560
|
-
"fullDescriptorHash": "
|
|
11560
|
+
"fullDescriptorHash": "ff21045e16ba09fd04800a85f1cd81dffaa88f3a1fa8d82739d7eb719e926e0f",
|
|
11561
11561
|
"namespaceHash": "111925823f74b9dd80c31aa375ceee6a9bc652739e5f9ed0c19263e524d310c5",
|
|
11562
11562
|
"policyProfilesHash": "6dfcf1c27d5d5d89ee85bbb9ad19636b1bd621b91e89e2b4c3c9282764df81ed",
|
|
11563
11563
|
"principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
|
|
11564
11564
|
"routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
|
|
11565
11565
|
"topLevelHash": "b2363d86a80d53dcb1cf2ce05cd547a79df52cdadc9c53c45d29597fa9b5ce6e",
|
|
11566
|
-
"trustDistributionHash": "
|
|
11566
|
+
"trustDistributionHash": "1e3d5c2f4b31df2280c8ac64ffcc20d80ef7de9f9edefbffab641772b5ae55b9"
|
|
11567
11567
|
},
|
|
11568
11568
|
"roadmapSignals": {
|
|
11569
11569
|
"jobCapableCommands": 12,
|
|
@@ -12510,7 +12510,7 @@
|
|
|
12510
12510
|
"typescript": {
|
|
12511
12511
|
"distributionStatus": "vendored-alpha",
|
|
12512
12512
|
"installExamples": [
|
|
12513
|
-
"npm install @thisispandora/agent-sdk@0.1.0-alpha.
|
|
12513
|
+
"npm install @thisispandora/agent-sdk@0.1.0-alpha.9",
|
|
12514
12514
|
"npm install /path/to/downloaded/pandora-agent-sdk-<version>.tgz"
|
|
12515
12515
|
],
|
|
12516
12516
|
"name": "@thisispandora/agent-sdk",
|
|
@@ -12522,7 +12522,7 @@
|
|
|
12522
12522
|
],
|
|
12523
12523
|
"repoPath": "sdk/typescript/package.json",
|
|
12524
12524
|
"vendoredInRootPackage": true,
|
|
12525
|
-
"version": "0.1.0-alpha.
|
|
12525
|
+
"version": "0.1.0-alpha.9"
|
|
12526
12526
|
}
|
|
12527
12527
|
},
|
|
12528
12528
|
"recommendedBootstrapCommand": "bootstrap",
|
|
@@ -12556,7 +12556,7 @@
|
|
|
12556
12556
|
"packageName": "@thisispandora/agent-sdk",
|
|
12557
12557
|
"packagePath": "sdk/typescript/package.json",
|
|
12558
12558
|
"shipped": true,
|
|
12559
|
-
"version": "0.1.0-alpha.
|
|
12559
|
+
"version": "0.1.0-alpha.9"
|
|
12560
12560
|
}
|
|
12561
12561
|
},
|
|
12562
12562
|
"generatedContractArtifacts": {
|
|
@@ -12659,7 +12659,7 @@
|
|
|
12659
12659
|
],
|
|
12660
12660
|
"main": "cli/pandora.cjs",
|
|
12661
12661
|
"name": "pandora-cli-skills",
|
|
12662
|
-
"version": "1.1.
|
|
12662
|
+
"version": "1.1.90"
|
|
12663
12663
|
},
|
|
12664
12664
|
"signals": {
|
|
12665
12665
|
"explicitFilesAllowlist": true,
|
|
@@ -12758,11 +12758,11 @@
|
|
|
12758
12758
|
"core-history.json",
|
|
12759
12759
|
"core-report.json",
|
|
12760
12760
|
"core.lock.json",
|
|
12761
|
-
"pandora-cli-skills-1.1.
|
|
12762
|
-
"pandora-cli-skills-1.1.
|
|
12763
|
-
"pandora-cli-skills-1.1.
|
|
12764
|
-
"pandora-cli-skills-1.1.
|
|
12765
|
-
"pandora-cli-skills-1.1.
|
|
12761
|
+
"pandora-cli-skills-1.1.90.tgz",
|
|
12762
|
+
"pandora-cli-skills-1.1.90.tgz.intoto.jsonl",
|
|
12763
|
+
"pandora-cli-skills-1.1.90.tgz.pem",
|
|
12764
|
+
"pandora-cli-skills-1.1.90.tgz.sha256",
|
|
12765
|
+
"pandora-cli-skills-1.1.90.tgz.sig",
|
|
12766
12766
|
"pandora_agent-0.1.0a6-py3-none-any.whl",
|
|
12767
12767
|
"pandora_agent-0.1.0a6.tar.gz",
|
|
12768
12768
|
"sbom.spdx.json",
|
|
@@ -12770,7 +12770,7 @@
|
|
|
12770
12770
|
"sbom.spdx.json.sha256",
|
|
12771
12771
|
"sdk-checksums.sha256",
|
|
12772
12772
|
"sdk-release-manifest.json",
|
|
12773
|
-
"thisispandora-agent-sdk-0.1.0-alpha.
|
|
12773
|
+
"thisispandora-agent-sdk-0.1.0-alpha.9.tgz"
|
|
12774
12774
|
],
|
|
12775
12775
|
"verificationMethods": [
|
|
12776
12776
|
"checksum-manifest",
|
|
@@ -13197,7 +13197,7 @@
|
|
|
13197
13197
|
"scan"
|
|
13198
13198
|
],
|
|
13199
13199
|
"canonicalTool": "arb.scan",
|
|
13200
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
13200
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
13201
13201
|
"controlInputNames": [],
|
|
13202
13202
|
"dataSchema": "#/definitions/ArbScanPayload",
|
|
13203
13203
|
"emits": [
|
|
@@ -13216,6 +13216,36 @@
|
|
|
13216
13216
|
"inputSchema": {
|
|
13217
13217
|
"additionalProperties": false,
|
|
13218
13218
|
"properties": {
|
|
13219
|
+
"ai-max-candidates": {
|
|
13220
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
13221
|
+
"minimum": 1,
|
|
13222
|
+
"type": "integer"
|
|
13223
|
+
},
|
|
13224
|
+
"ai-model": {
|
|
13225
|
+
"description": "Optional provider model override.",
|
|
13226
|
+
"type": "string"
|
|
13227
|
+
},
|
|
13228
|
+
"ai-provider": {
|
|
13229
|
+
"description": "Provider-backed adjudication mode.",
|
|
13230
|
+
"enum": [
|
|
13231
|
+
"auto",
|
|
13232
|
+
"none",
|
|
13233
|
+
"mock",
|
|
13234
|
+
"openai",
|
|
13235
|
+
"anthropic"
|
|
13236
|
+
]
|
|
13237
|
+
},
|
|
13238
|
+
"ai-threshold": {
|
|
13239
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
13240
|
+
"maximum": 1,
|
|
13241
|
+
"minimum": 0,
|
|
13242
|
+
"type": "number"
|
|
13243
|
+
},
|
|
13244
|
+
"ai-timeout-ms": {
|
|
13245
|
+
"description": "Timeout for each provider adjudication request.",
|
|
13246
|
+
"minimum": 1,
|
|
13247
|
+
"type": "integer"
|
|
13248
|
+
},
|
|
13219
13249
|
"amount-usdc": {
|
|
13220
13250
|
"description": "Sizing notional in USDC.",
|
|
13221
13251
|
"minimum": 0,
|
|
@@ -13243,6 +13273,13 @@
|
|
|
13243
13273
|
"description": "Comma-delimited market ids when source=pandora.",
|
|
13244
13274
|
"type": "string"
|
|
13245
13275
|
},
|
|
13276
|
+
"matcher": {
|
|
13277
|
+
"description": "Arbitrage matcher mode.",
|
|
13278
|
+
"enum": [
|
|
13279
|
+
"heuristic",
|
|
13280
|
+
"hybrid"
|
|
13281
|
+
]
|
|
13282
|
+
},
|
|
13246
13283
|
"max-bundle-size": {
|
|
13247
13284
|
"description": "Maximum combinatorial bundle size.",
|
|
13248
13285
|
"minimum": 3,
|
|
@@ -13328,7 +13365,7 @@
|
|
|
13328
13365
|
"summary": "Canonical arbitrage scan command for streaming or bounded spread detection.",
|
|
13329
13366
|
"supportsRemote": true,
|
|
13330
13367
|
"supportsWebhook": false,
|
|
13331
|
-
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
13368
|
+
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
13332
13369
|
},
|
|
13333
13370
|
"autopilot": {
|
|
13334
13371
|
"agentWorkflow": null,
|
|
@@ -38857,7 +38894,7 @@
|
|
|
38857
38894
|
"scan"
|
|
38858
38895
|
],
|
|
38859
38896
|
"canonicalTool": "arb.scan",
|
|
38860
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
38897
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
38861
38898
|
"controlInputNames": [],
|
|
38862
38899
|
"dataSchema": "#/definitions/ArbitragePayload",
|
|
38863
38900
|
"emits": [
|
|
@@ -38876,6 +38913,36 @@
|
|
|
38876
38913
|
"inputSchema": {
|
|
38877
38914
|
"additionalProperties": false,
|
|
38878
38915
|
"properties": {
|
|
38916
|
+
"ai-max-candidates": {
|
|
38917
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
38918
|
+
"minimum": 1,
|
|
38919
|
+
"type": "integer"
|
|
38920
|
+
},
|
|
38921
|
+
"ai-model": {
|
|
38922
|
+
"description": "Optional provider model override.",
|
|
38923
|
+
"type": "string"
|
|
38924
|
+
},
|
|
38925
|
+
"ai-provider": {
|
|
38926
|
+
"description": "Provider-backed adjudication mode.",
|
|
38927
|
+
"enum": [
|
|
38928
|
+
"auto",
|
|
38929
|
+
"none",
|
|
38930
|
+
"mock",
|
|
38931
|
+
"openai",
|
|
38932
|
+
"anthropic"
|
|
38933
|
+
]
|
|
38934
|
+
},
|
|
38935
|
+
"ai-threshold": {
|
|
38936
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
38937
|
+
"maximum": 1,
|
|
38938
|
+
"minimum": 0,
|
|
38939
|
+
"type": "number"
|
|
38940
|
+
},
|
|
38941
|
+
"ai-timeout-ms": {
|
|
38942
|
+
"description": "Timeout for each provider adjudication request.",
|
|
38943
|
+
"minimum": 1,
|
|
38944
|
+
"type": "integer"
|
|
38945
|
+
},
|
|
38879
38946
|
"allow-same-venue": {
|
|
38880
38947
|
"description": "Allow same-venue opportunities.",
|
|
38881
38948
|
"type": "boolean"
|
|
@@ -38902,6 +38969,13 @@
|
|
|
38902
38969
|
"minimum": 1,
|
|
38903
38970
|
"type": "integer"
|
|
38904
38971
|
},
|
|
38972
|
+
"matcher": {
|
|
38973
|
+
"description": "Arbitrage matcher mode.",
|
|
38974
|
+
"enum": [
|
|
38975
|
+
"heuristic",
|
|
38976
|
+
"hybrid"
|
|
38977
|
+
]
|
|
38978
|
+
},
|
|
38905
38979
|
"max-close-diff-hours": {
|
|
38906
38980
|
"description": "Maximum close-time difference in hours.",
|
|
38907
38981
|
"minimum": 0,
|
|
@@ -38981,7 +39055,7 @@
|
|
|
38981
39055
|
"summary": "Backward-compatible one-shot cross-venue arbitrage wrapper.",
|
|
38982
39056
|
"supportsRemote": true,
|
|
38983
39057
|
"supportsWebhook": false,
|
|
38984
|
-
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
39058
|
+
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
38985
39059
|
},
|
|
38986
39060
|
"markets.scan": {
|
|
38987
39061
|
"agentWorkflow": null,
|
|
@@ -39155,6 +39229,36 @@
|
|
|
39155
39229
|
"inputSchema": {
|
|
39156
39230
|
"additionalProperties": false,
|
|
39157
39231
|
"properties": {
|
|
39232
|
+
"ai-max-candidates": {
|
|
39233
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
39234
|
+
"minimum": 1,
|
|
39235
|
+
"type": "integer"
|
|
39236
|
+
},
|
|
39237
|
+
"ai-model": {
|
|
39238
|
+
"description": "Optional provider model override.",
|
|
39239
|
+
"type": "string"
|
|
39240
|
+
},
|
|
39241
|
+
"ai-provider": {
|
|
39242
|
+
"description": "Provider-backed adjudication mode.",
|
|
39243
|
+
"enum": [
|
|
39244
|
+
"auto",
|
|
39245
|
+
"none",
|
|
39246
|
+
"mock",
|
|
39247
|
+
"openai",
|
|
39248
|
+
"anthropic"
|
|
39249
|
+
]
|
|
39250
|
+
},
|
|
39251
|
+
"ai-threshold": {
|
|
39252
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
39253
|
+
"maximum": 1,
|
|
39254
|
+
"minimum": 0,
|
|
39255
|
+
"type": "number"
|
|
39256
|
+
},
|
|
39257
|
+
"ai-timeout-ms": {
|
|
39258
|
+
"description": "Timeout for each provider adjudication request.",
|
|
39259
|
+
"minimum": 1,
|
|
39260
|
+
"type": "integer"
|
|
39261
|
+
},
|
|
39158
39262
|
"allow-same-venue": {
|
|
39159
39263
|
"description": "Allow same-venue opportunities.",
|
|
39160
39264
|
"type": "boolean"
|
|
@@ -39181,6 +39285,13 @@
|
|
|
39181
39285
|
"minimum": 1,
|
|
39182
39286
|
"type": "integer"
|
|
39183
39287
|
},
|
|
39288
|
+
"matcher": {
|
|
39289
|
+
"description": "Arbitrage matcher mode.",
|
|
39290
|
+
"enum": [
|
|
39291
|
+
"heuristic",
|
|
39292
|
+
"hybrid"
|
|
39293
|
+
]
|
|
39294
|
+
},
|
|
39184
39295
|
"max-close-diff-hours": {
|
|
39185
39296
|
"description": "Maximum close-time difference in hours.",
|
|
39186
39297
|
"minimum": 0,
|
|
@@ -39247,7 +39358,7 @@
|
|
|
39247
39358
|
],
|
|
39248
39359
|
"canonicalName": "arb.scan",
|
|
39249
39360
|
"canonicalTool": "arb.scan",
|
|
39250
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
39361
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
39251
39362
|
"command": [
|
|
39252
39363
|
"arbitrage"
|
|
39253
39364
|
],
|
|
@@ -39346,7 +39457,7 @@
|
|
|
39346
39457
|
"supportsRemote": true,
|
|
39347
39458
|
"supportsWebhook": false,
|
|
39348
39459
|
"topLevelInputConstraints": null,
|
|
39349
|
-
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
39460
|
+
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
39350
39461
|
}
|
|
39351
39462
|
},
|
|
39352
39463
|
"jobCapable": false,
|
|
@@ -39381,7 +39492,7 @@
|
|
|
39381
39492
|
],
|
|
39382
39493
|
"canonicalName": "arb.scan",
|
|
39383
39494
|
"canonicalTool": "arb.scan",
|
|
39384
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
39495
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
39385
39496
|
"command": [
|
|
39386
39497
|
"arbitrage"
|
|
39387
39498
|
],
|
|
@@ -39480,7 +39591,7 @@
|
|
|
39480
39591
|
"supportsRemote": true,
|
|
39481
39592
|
"supportsWebhook": false,
|
|
39482
39593
|
"topLevelInputConstraints": null,
|
|
39483
|
-
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
39594
|
+
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
39484
39595
|
}
|
|
39485
39596
|
}
|
|
39486
39597
|
],
|
|
@@ -39502,7 +39613,7 @@
|
|
|
39502
39613
|
"scan"
|
|
39503
39614
|
],
|
|
39504
39615
|
"canonicalTool": "arb.scan",
|
|
39505
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
39616
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
39506
39617
|
"controlInputNames": [],
|
|
39507
39618
|
"dataSchema": "#/definitions/ArbitragePayload",
|
|
39508
39619
|
"emits": [
|
|
@@ -39521,6 +39632,36 @@
|
|
|
39521
39632
|
"inputSchema": {
|
|
39522
39633
|
"additionalProperties": false,
|
|
39523
39634
|
"properties": {
|
|
39635
|
+
"ai-max-candidates": {
|
|
39636
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
39637
|
+
"minimum": 1,
|
|
39638
|
+
"type": "integer"
|
|
39639
|
+
},
|
|
39640
|
+
"ai-model": {
|
|
39641
|
+
"description": "Optional provider model override.",
|
|
39642
|
+
"type": "string"
|
|
39643
|
+
},
|
|
39644
|
+
"ai-provider": {
|
|
39645
|
+
"description": "Provider-backed adjudication mode.",
|
|
39646
|
+
"enum": [
|
|
39647
|
+
"auto",
|
|
39648
|
+
"none",
|
|
39649
|
+
"mock",
|
|
39650
|
+
"openai",
|
|
39651
|
+
"anthropic"
|
|
39652
|
+
]
|
|
39653
|
+
},
|
|
39654
|
+
"ai-threshold": {
|
|
39655
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
39656
|
+
"maximum": 1,
|
|
39657
|
+
"minimum": 0,
|
|
39658
|
+
"type": "number"
|
|
39659
|
+
},
|
|
39660
|
+
"ai-timeout-ms": {
|
|
39661
|
+
"description": "Timeout for each provider adjudication request.",
|
|
39662
|
+
"minimum": 1,
|
|
39663
|
+
"type": "integer"
|
|
39664
|
+
},
|
|
39524
39665
|
"allow-same-venue": {
|
|
39525
39666
|
"description": "Allow same-venue opportunities.",
|
|
39526
39667
|
"type": "boolean"
|
|
@@ -39547,6 +39688,13 @@
|
|
|
39547
39688
|
"minimum": 1,
|
|
39548
39689
|
"type": "integer"
|
|
39549
39690
|
},
|
|
39691
|
+
"matcher": {
|
|
39692
|
+
"description": "Arbitrage matcher mode.",
|
|
39693
|
+
"enum": [
|
|
39694
|
+
"heuristic",
|
|
39695
|
+
"hybrid"
|
|
39696
|
+
]
|
|
39697
|
+
},
|
|
39550
39698
|
"max-close-diff-hours": {
|
|
39551
39699
|
"description": "Maximum close-time difference in hours.",
|
|
39552
39700
|
"minimum": 0,
|
|
@@ -39626,12 +39774,42 @@
|
|
|
39626
39774
|
"summary": "Backward-compatible one-shot cross-venue arbitrage wrapper.",
|
|
39627
39775
|
"supportsRemote": true,
|
|
39628
39776
|
"supportsWebhook": false,
|
|
39629
|
-
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
39777
|
+
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
39630
39778
|
},
|
|
39631
39779
|
"description": "Backward-compatible one-shot wrapper; prefer arb.scan. Compatibility alias for arb.scan; hidden from default MCP discovery and intended only for explicit compatibility/debug workflows. Prefer arb.scan (arb scan).",
|
|
39632
39780
|
"inputSchema": {
|
|
39633
39781
|
"additionalProperties": false,
|
|
39634
39782
|
"properties": {
|
|
39783
|
+
"ai-max-candidates": {
|
|
39784
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
39785
|
+
"minimum": 1,
|
|
39786
|
+
"type": "integer"
|
|
39787
|
+
},
|
|
39788
|
+
"ai-model": {
|
|
39789
|
+
"description": "Optional provider model override.",
|
|
39790
|
+
"type": "string"
|
|
39791
|
+
},
|
|
39792
|
+
"ai-provider": {
|
|
39793
|
+
"description": "Provider-backed adjudication mode.",
|
|
39794
|
+
"enum": [
|
|
39795
|
+
"auto",
|
|
39796
|
+
"none",
|
|
39797
|
+
"mock",
|
|
39798
|
+
"openai",
|
|
39799
|
+
"anthropic"
|
|
39800
|
+
]
|
|
39801
|
+
},
|
|
39802
|
+
"ai-threshold": {
|
|
39803
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
39804
|
+
"maximum": 1,
|
|
39805
|
+
"minimum": 0,
|
|
39806
|
+
"type": "number"
|
|
39807
|
+
},
|
|
39808
|
+
"ai-timeout-ms": {
|
|
39809
|
+
"description": "Timeout for each provider adjudication request.",
|
|
39810
|
+
"minimum": 1,
|
|
39811
|
+
"type": "integer"
|
|
39812
|
+
},
|
|
39635
39813
|
"allow-same-venue": {
|
|
39636
39814
|
"description": "Allow same-venue opportunities.",
|
|
39637
39815
|
"type": "boolean"
|
|
@@ -39658,6 +39836,13 @@
|
|
|
39658
39836
|
"minimum": 1,
|
|
39659
39837
|
"type": "integer"
|
|
39660
39838
|
},
|
|
39839
|
+
"matcher": {
|
|
39840
|
+
"description": "Arbitrage matcher mode.",
|
|
39841
|
+
"enum": [
|
|
39842
|
+
"heuristic",
|
|
39843
|
+
"hybrid"
|
|
39844
|
+
]
|
|
39845
|
+
},
|
|
39661
39846
|
"max-close-diff-hours": {
|
|
39662
39847
|
"description": "Maximum close-time difference in hours.",
|
|
39663
39848
|
"minimum": 0,
|
|
@@ -39724,7 +39909,7 @@
|
|
|
39724
39909
|
],
|
|
39725
39910
|
"canonicalName": "arb.scan",
|
|
39726
39911
|
"canonicalTool": "arb.scan",
|
|
39727
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
39912
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
39728
39913
|
"command": [
|
|
39729
39914
|
"arbitrage"
|
|
39730
39915
|
],
|
|
@@ -39823,7 +40008,7 @@
|
|
|
39823
40008
|
"supportsRemote": true,
|
|
39824
40009
|
"supportsWebhook": false,
|
|
39825
40010
|
"topLevelInputConstraints": null,
|
|
39826
|
-
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
40011
|
+
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
39827
40012
|
}
|
|
39828
40013
|
},
|
|
39829
40014
|
"name": "arbitrage",
|
|
@@ -39839,7 +40024,7 @@
|
|
|
39839
40024
|
],
|
|
39840
40025
|
"canonicalName": "arb.scan",
|
|
39841
40026
|
"canonicalTool": "arb.scan",
|
|
39842
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
40027
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
39843
40028
|
"command": [
|
|
39844
40029
|
"arbitrage"
|
|
39845
40030
|
],
|
|
@@ -39938,24 +40123,24 @@
|
|
|
39938
40123
|
"supportsRemote": true,
|
|
39939
40124
|
"supportsWebhook": false,
|
|
39940
40125
|
"topLevelInputConstraints": null,
|
|
39941
|
-
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
40126
|
+
"usage": "pandora [--output table|json] arbitrage [--chain-id <id>] [--venues pandora,polymarket] [--limit <n>] [--min-spread-pct <n>] [--min-liquidity-usdc <n>] [--max-close-diff-hours <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--cross-venue-only|--allow-same-venue] [--with-rules] [--include-similarity] [--question-contains <text>] [--polymarket-host <url>] [--polymarket-mock-url <url>]"
|
|
39942
40127
|
}
|
|
39943
40128
|
}
|
|
39944
40129
|
}
|
|
39945
40130
|
},
|
|
39946
|
-
"packageVersion": "0.1.0-alpha.
|
|
40131
|
+
"packageVersion": "0.1.0-alpha.9",
|
|
39947
40132
|
"registryDigest": {
|
|
39948
40133
|
"canonicalHash": "b501a15ce9f61731613d044e2c97a03142a261af386b1182638eb069a5f7ea0a",
|
|
39949
40134
|
"commandDigestHash": "d44d4b52bc59aa8da9ba7a19f1a85a188d48c20a6ad59a70fd5e0b583acdce08",
|
|
39950
|
-
"descriptorHash": "
|
|
40135
|
+
"descriptorHash": "6d65ee91adfb4fc96ef43e81d331f9b41116dae11bf7451960052eb0284d7948",
|
|
39951
40136
|
"documentationHash": "861462b91dd1da73bf3d98cd764d00241b3991ef641c10a096cec32fe84600af",
|
|
39952
|
-
"fullDescriptorHash": "
|
|
40137
|
+
"fullDescriptorHash": "ff21045e16ba09fd04800a85f1cd81dffaa88f3a1fa8d82739d7eb719e926e0f",
|
|
39953
40138
|
"namespaceHash": "111925823f74b9dd80c31aa375ceee6a9bc652739e5f9ed0c19263e524d310c5",
|
|
39954
40139
|
"policyProfilesHash": "6dfcf1c27d5d5d89ee85bbb9ad19636b1bd621b91e89e2b4c3c9282764df81ed",
|
|
39955
40140
|
"principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
|
|
39956
40141
|
"routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
|
|
39957
40142
|
"topLevelHash": "b2363d86a80d53dcb1cf2ce05cd547a79df52cdadc9c53c45d29597fa9b5ce6e",
|
|
39958
|
-
"trustDistributionHash": "
|
|
40143
|
+
"trustDistributionHash": "1e3d5c2f4b31df2280c8ac64ffcc20d80ef7de9f9edefbffab641772b5ae55b9"
|
|
39959
40144
|
},
|
|
39960
40145
|
"schemaVersion": "1.0.0",
|
|
39961
40146
|
"schemas": {
|
|
@@ -51030,7 +51215,7 @@
|
|
|
51030
51215
|
"scan"
|
|
51031
51216
|
],
|
|
51032
51217
|
"canonicalTool": "arb.scan",
|
|
51033
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
51218
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
51034
51219
|
"controlInputNames": [],
|
|
51035
51220
|
"dataSchema": "#/definitions/ArbScanPayload",
|
|
51036
51221
|
"emits": [
|
|
@@ -51049,6 +51234,36 @@
|
|
|
51049
51234
|
"inputSchema": {
|
|
51050
51235
|
"additionalProperties": false,
|
|
51051
51236
|
"properties": {
|
|
51237
|
+
"ai-max-candidates": {
|
|
51238
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
51239
|
+
"minimum": 1,
|
|
51240
|
+
"type": "integer"
|
|
51241
|
+
},
|
|
51242
|
+
"ai-model": {
|
|
51243
|
+
"description": "Optional provider model override.",
|
|
51244
|
+
"type": "string"
|
|
51245
|
+
},
|
|
51246
|
+
"ai-provider": {
|
|
51247
|
+
"description": "Provider-backed adjudication mode.",
|
|
51248
|
+
"enum": [
|
|
51249
|
+
"auto",
|
|
51250
|
+
"none",
|
|
51251
|
+
"mock",
|
|
51252
|
+
"openai",
|
|
51253
|
+
"anthropic"
|
|
51254
|
+
]
|
|
51255
|
+
},
|
|
51256
|
+
"ai-threshold": {
|
|
51257
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
51258
|
+
"maximum": 1,
|
|
51259
|
+
"minimum": 0,
|
|
51260
|
+
"type": "number"
|
|
51261
|
+
},
|
|
51262
|
+
"ai-timeout-ms": {
|
|
51263
|
+
"description": "Timeout for each provider adjudication request.",
|
|
51264
|
+
"minimum": 1,
|
|
51265
|
+
"type": "integer"
|
|
51266
|
+
},
|
|
51052
51267
|
"amount-usdc": {
|
|
51053
51268
|
"description": "Sizing notional in USDC.",
|
|
51054
51269
|
"minimum": 0,
|
|
@@ -51076,6 +51291,13 @@
|
|
|
51076
51291
|
"description": "Comma-delimited market ids when source=pandora.",
|
|
51077
51292
|
"type": "string"
|
|
51078
51293
|
},
|
|
51294
|
+
"matcher": {
|
|
51295
|
+
"description": "Arbitrage matcher mode.",
|
|
51296
|
+
"enum": [
|
|
51297
|
+
"heuristic",
|
|
51298
|
+
"hybrid"
|
|
51299
|
+
]
|
|
51300
|
+
},
|
|
51079
51301
|
"max-bundle-size": {
|
|
51080
51302
|
"description": "Maximum combinatorial bundle size.",
|
|
51081
51303
|
"minimum": 3,
|
|
@@ -51161,7 +51383,7 @@
|
|
|
51161
51383
|
"summary": "Canonical arbitrage scan command for streaming or bounded spread detection.",
|
|
51162
51384
|
"supportsRemote": true,
|
|
51163
51385
|
"supportsWebhook": false,
|
|
51164
|
-
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
51386
|
+
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
51165
51387
|
},
|
|
51166
51388
|
"autopilot": {
|
|
51167
51389
|
"agentWorkflow": null,
|
|
@@ -87676,7 +87898,7 @@
|
|
|
87676
87898
|
"packageName": "@thisispandora/agent-sdk",
|
|
87677
87899
|
"packagePath": "sdk/typescript/package.json",
|
|
87678
87900
|
"shipped": true,
|
|
87679
|
-
"version": "0.1.0-alpha.
|
|
87901
|
+
"version": "0.1.0-alpha.9"
|
|
87680
87902
|
}
|
|
87681
87903
|
},
|
|
87682
87904
|
"generatedContractArtifacts": {
|
|
@@ -87779,7 +88001,7 @@
|
|
|
87779
88001
|
],
|
|
87780
88002
|
"main": "cli/pandora.cjs",
|
|
87781
88003
|
"name": "pandora-cli-skills",
|
|
87782
|
-
"version": "1.1.
|
|
88004
|
+
"version": "1.1.90"
|
|
87783
88005
|
},
|
|
87784
88006
|
"signals": {
|
|
87785
88007
|
"explicitFilesAllowlist": true,
|
|
@@ -87877,11 +88099,11 @@
|
|
|
87877
88099
|
"core-history.json",
|
|
87878
88100
|
"core-report.json",
|
|
87879
88101
|
"core.lock.json",
|
|
87880
|
-
"pandora-cli-skills-1.1.
|
|
87881
|
-
"pandora-cli-skills-1.1.
|
|
87882
|
-
"pandora-cli-skills-1.1.
|
|
87883
|
-
"pandora-cli-skills-1.1.
|
|
87884
|
-
"pandora-cli-skills-1.1.
|
|
88102
|
+
"pandora-cli-skills-1.1.90.tgz",
|
|
88103
|
+
"pandora-cli-skills-1.1.90.tgz.intoto.jsonl",
|
|
88104
|
+
"pandora-cli-skills-1.1.90.tgz.pem",
|
|
88105
|
+
"pandora-cli-skills-1.1.90.tgz.sha256",
|
|
88106
|
+
"pandora-cli-skills-1.1.90.tgz.sig",
|
|
87885
88107
|
"pandora_agent-0.1.0a6-py3-none-any.whl",
|
|
87886
88108
|
"pandora_agent-0.1.0a6.tar.gz",
|
|
87887
88109
|
"sbom.spdx.json",
|
|
@@ -87889,7 +88111,7 @@
|
|
|
87889
88111
|
"sbom.spdx.json.sha256",
|
|
87890
88112
|
"sdk-checksums.sha256",
|
|
87891
88113
|
"sdk-release-manifest.json",
|
|
87892
|
-
"thisispandora-agent-sdk-0.1.0-alpha.
|
|
88114
|
+
"thisispandora-agent-sdk-0.1.0-alpha.9.tgz"
|
|
87893
88115
|
],
|
|
87894
88116
|
"verificationMethods": [
|
|
87895
88117
|
"checksum-manifest",
|
|
@@ -89101,7 +89323,7 @@
|
|
|
89101
89323
|
"scan"
|
|
89102
89324
|
],
|
|
89103
89325
|
"canonicalTool": "arb.scan",
|
|
89104
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
89326
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
89105
89327
|
"controlInputNames": [],
|
|
89106
89328
|
"dataSchema": "#/definitions/ArbScanPayload",
|
|
89107
89329
|
"emits": [
|
|
@@ -89120,6 +89342,36 @@
|
|
|
89120
89342
|
"inputSchema": {
|
|
89121
89343
|
"additionalProperties": false,
|
|
89122
89344
|
"properties": {
|
|
89345
|
+
"ai-max-candidates": {
|
|
89346
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
89347
|
+
"minimum": 1,
|
|
89348
|
+
"type": "integer"
|
|
89349
|
+
},
|
|
89350
|
+
"ai-model": {
|
|
89351
|
+
"description": "Optional provider model override.",
|
|
89352
|
+
"type": "string"
|
|
89353
|
+
},
|
|
89354
|
+
"ai-provider": {
|
|
89355
|
+
"description": "Provider-backed adjudication mode.",
|
|
89356
|
+
"enum": [
|
|
89357
|
+
"auto",
|
|
89358
|
+
"none",
|
|
89359
|
+
"mock",
|
|
89360
|
+
"openai",
|
|
89361
|
+
"anthropic"
|
|
89362
|
+
]
|
|
89363
|
+
},
|
|
89364
|
+
"ai-threshold": {
|
|
89365
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
89366
|
+
"maximum": 1,
|
|
89367
|
+
"minimum": 0,
|
|
89368
|
+
"type": "number"
|
|
89369
|
+
},
|
|
89370
|
+
"ai-timeout-ms": {
|
|
89371
|
+
"description": "Timeout for each provider adjudication request.",
|
|
89372
|
+
"minimum": 1,
|
|
89373
|
+
"type": "integer"
|
|
89374
|
+
},
|
|
89123
89375
|
"amount-usdc": {
|
|
89124
89376
|
"description": "Sizing notional in USDC.",
|
|
89125
89377
|
"minimum": 0,
|
|
@@ -89147,6 +89399,13 @@
|
|
|
89147
89399
|
"description": "Comma-delimited market ids when source=pandora.",
|
|
89148
89400
|
"type": "string"
|
|
89149
89401
|
},
|
|
89402
|
+
"matcher": {
|
|
89403
|
+
"description": "Arbitrage matcher mode.",
|
|
89404
|
+
"enum": [
|
|
89405
|
+
"heuristic",
|
|
89406
|
+
"hybrid"
|
|
89407
|
+
]
|
|
89408
|
+
},
|
|
89150
89409
|
"max-bundle-size": {
|
|
89151
89410
|
"description": "Maximum combinatorial bundle size.",
|
|
89152
89411
|
"minimum": 3,
|
|
@@ -89232,12 +89491,42 @@
|
|
|
89232
89491
|
"summary": "Canonical arbitrage scan command for streaming or bounded spread detection.",
|
|
89233
89492
|
"supportsRemote": true,
|
|
89234
89493
|
"supportsWebhook": false,
|
|
89235
|
-
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
89494
|
+
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
89236
89495
|
},
|
|
89237
89496
|
"description": "Run one bounded arb scan iteration and return a structured payload.",
|
|
89238
89497
|
"inputSchema": {
|
|
89239
89498
|
"additionalProperties": false,
|
|
89240
89499
|
"properties": {
|
|
89500
|
+
"ai-max-candidates": {
|
|
89501
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
89502
|
+
"minimum": 1,
|
|
89503
|
+
"type": "integer"
|
|
89504
|
+
},
|
|
89505
|
+
"ai-model": {
|
|
89506
|
+
"description": "Optional provider model override.",
|
|
89507
|
+
"type": "string"
|
|
89508
|
+
},
|
|
89509
|
+
"ai-provider": {
|
|
89510
|
+
"description": "Provider-backed adjudication mode.",
|
|
89511
|
+
"enum": [
|
|
89512
|
+
"auto",
|
|
89513
|
+
"none",
|
|
89514
|
+
"mock",
|
|
89515
|
+
"openai",
|
|
89516
|
+
"anthropic"
|
|
89517
|
+
]
|
|
89518
|
+
},
|
|
89519
|
+
"ai-threshold": {
|
|
89520
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
89521
|
+
"maximum": 1,
|
|
89522
|
+
"minimum": 0,
|
|
89523
|
+
"type": "number"
|
|
89524
|
+
},
|
|
89525
|
+
"ai-timeout-ms": {
|
|
89526
|
+
"description": "Timeout for each provider adjudication request.",
|
|
89527
|
+
"minimum": 1,
|
|
89528
|
+
"type": "integer"
|
|
89529
|
+
},
|
|
89241
89530
|
"amount-usdc": {
|
|
89242
89531
|
"description": "Sizing notional in USDC.",
|
|
89243
89532
|
"minimum": 0,
|
|
@@ -89265,6 +89554,13 @@
|
|
|
89265
89554
|
"description": "Comma-delimited market ids when source=pandora.",
|
|
89266
89555
|
"type": "string"
|
|
89267
89556
|
},
|
|
89557
|
+
"matcher": {
|
|
89558
|
+
"description": "Arbitrage matcher mode.",
|
|
89559
|
+
"enum": [
|
|
89560
|
+
"heuristic",
|
|
89561
|
+
"hybrid"
|
|
89562
|
+
]
|
|
89563
|
+
},
|
|
89268
89564
|
"max-bundle-size": {
|
|
89269
89565
|
"description": "Maximum combinatorial bundle size.",
|
|
89270
89566
|
"minimum": 3,
|
|
@@ -89337,7 +89633,7 @@
|
|
|
89337
89633
|
],
|
|
89338
89634
|
"canonicalName": "arb.scan",
|
|
89339
89635
|
"canonicalTool": "arb.scan",
|
|
89340
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
89636
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
89341
89637
|
"command": [
|
|
89342
89638
|
"arb",
|
|
89343
89639
|
"scan",
|
|
@@ -89435,7 +89731,7 @@
|
|
|
89435
89731
|
"supportsRemote": true,
|
|
89436
89732
|
"supportsWebhook": false,
|
|
89437
89733
|
"topLevelInputConstraints": null,
|
|
89438
|
-
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
89734
|
+
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
89439
89735
|
}
|
|
89440
89736
|
},
|
|
89441
89737
|
"name": "arb.scan",
|
|
@@ -89451,7 +89747,7 @@
|
|
|
89451
89747
|
],
|
|
89452
89748
|
"canonicalName": "arb.scan",
|
|
89453
89749
|
"canonicalTool": "arb.scan",
|
|
89454
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
89750
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
89455
89751
|
"command": [
|
|
89456
89752
|
"arb",
|
|
89457
89753
|
"scan",
|
|
@@ -89549,7 +89845,7 @@
|
|
|
89549
89845
|
"supportsRemote": true,
|
|
89550
89846
|
"supportsWebhook": false,
|
|
89551
89847
|
"topLevelInputConstraints": null,
|
|
89552
|
-
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
89848
|
+
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
89553
89849
|
}
|
|
89554
89850
|
},
|
|
89555
89851
|
"autopilot.once": {
|
package/generated/manifest.json
CHANGED
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"main": "cli/pandora.cjs",
|
|
80
80
|
"name": "pandora-cli-skills",
|
|
81
81
|
"sourceProjectPath": "package.json",
|
|
82
|
-
"version": "1.1.
|
|
82
|
+
"version": "1.1.90"
|
|
83
83
|
},
|
|
84
84
|
"typescript": {
|
|
85
85
|
"artifactSubpaths": {
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"format": "node",
|
|
107
107
|
"name": "@thisispandora/agent-sdk",
|
|
108
108
|
"sourceProjectPath": "sdk/typescript/package.json",
|
|
109
|
-
"version": "0.1.0-alpha.
|
|
109
|
+
"version": "0.1.0-alpha.9"
|
|
110
110
|
}
|
|
111
111
|
},
|
|
112
112
|
"supported": true,
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
"commandCount": 160,
|
|
273
273
|
"commandDescriptorVersion": "1.4.3",
|
|
274
274
|
"contractCommandDescriptorVersion": "1.4.3",
|
|
275
|
-
"contractPackageVersion": "1.1.
|
|
275
|
+
"contractPackageVersion": "1.1.90",
|
|
276
276
|
"contractVersion": "1.0.0",
|
|
277
277
|
"generatedFrom": "cli/lib/sdk_contract_service.cjs",
|
|
278
278
|
"generator": "scripts/generate_agent_contract_sdk.cjs",
|
|
@@ -302,9 +302,9 @@
|
|
|
302
302
|
"format": "node",
|
|
303
303
|
"name": "@thisispandora/agent-sdk",
|
|
304
304
|
"sourceProjectPath": "sdk/typescript/package.json",
|
|
305
|
-
"version": "0.1.0-alpha.
|
|
305
|
+
"version": "0.1.0-alpha.9"
|
|
306
306
|
},
|
|
307
|
-
"packageVersion": "0.1.0-alpha.
|
|
307
|
+
"packageVersion": "0.1.0-alpha.9",
|
|
308
308
|
"publishedSurfaces": {
|
|
309
309
|
"python": {
|
|
310
310
|
"artifactSubpaths": {
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
"main": "cli/pandora.cjs",
|
|
355
355
|
"name": "pandora-cli-skills",
|
|
356
356
|
"sourceProjectPath": "package.json",
|
|
357
|
-
"version": "1.1.
|
|
357
|
+
"version": "1.1.90"
|
|
358
358
|
},
|
|
359
359
|
"typescript": {
|
|
360
360
|
"artifactSubpaths": {
|
|
@@ -381,21 +381,21 @@
|
|
|
381
381
|
"format": "node",
|
|
382
382
|
"name": "@thisispandora/agent-sdk",
|
|
383
383
|
"sourceProjectPath": "sdk/typescript/package.json",
|
|
384
|
-
"version": "0.1.0-alpha.
|
|
384
|
+
"version": "0.1.0-alpha.9"
|
|
385
385
|
}
|
|
386
386
|
},
|
|
387
387
|
"registryDigest": {
|
|
388
388
|
"canonicalHash": "b501a15ce9f61731613d044e2c97a03142a261af386b1182638eb069a5f7ea0a",
|
|
389
389
|
"commandDigestHash": "d44d4b52bc59aa8da9ba7a19f1a85a188d48c20a6ad59a70fd5e0b583acdce08",
|
|
390
|
-
"descriptorHash": "
|
|
390
|
+
"descriptorHash": "6d65ee91adfb4fc96ef43e81d331f9b41116dae11bf7451960052eb0284d7948",
|
|
391
391
|
"documentationHash": "861462b91dd1da73bf3d98cd764d00241b3991ef641c10a096cec32fe84600af",
|
|
392
|
-
"fullDescriptorHash": "
|
|
392
|
+
"fullDescriptorHash": "ff21045e16ba09fd04800a85f1cd81dffaa88f3a1fa8d82739d7eb719e926e0f",
|
|
393
393
|
"namespaceHash": "111925823f74b9dd80c31aa375ceee6a9bc652739e5f9ed0c19263e524d310c5",
|
|
394
394
|
"policyProfilesHash": "6dfcf1c27d5d5d89ee85bbb9ad19636b1bd621b91e89e2b4c3c9282764df81ed",
|
|
395
395
|
"principalTemplatesHash": "525835bb3c4710fa326e662e8a961e74de1798f4fb1bccb2a00be557ed037740",
|
|
396
396
|
"routedTopLevelHash": "02e98ac94f1eadbeded065bef652f8a917f108a8a08726ad7163503cc1b3384d",
|
|
397
397
|
"topLevelHash": "b2363d86a80d53dcb1cf2ce05cd547a79df52cdadc9c53c45d29597fa9b5ce6e",
|
|
398
|
-
"trustDistributionHash": "
|
|
398
|
+
"trustDistributionHash": "1e3d5c2f4b31df2280c8ac64ffcc20d80ef7de9f9edefbffab641772b5ae55b9"
|
|
399
399
|
},
|
|
400
400
|
"schemaVersion": "1.0.0"
|
|
401
401
|
}
|
|
@@ -863,6 +863,36 @@
|
|
|
863
863
|
"inputSchema": {
|
|
864
864
|
"additionalProperties": false,
|
|
865
865
|
"properties": {
|
|
866
|
+
"ai-max-candidates": {
|
|
867
|
+
"description": "Maximum borderline pairs to adjudicate per scan.",
|
|
868
|
+
"minimum": 1,
|
|
869
|
+
"type": "integer"
|
|
870
|
+
},
|
|
871
|
+
"ai-model": {
|
|
872
|
+
"description": "Optional provider model override.",
|
|
873
|
+
"type": "string"
|
|
874
|
+
},
|
|
875
|
+
"ai-provider": {
|
|
876
|
+
"description": "Provider-backed adjudication mode.",
|
|
877
|
+
"enum": [
|
|
878
|
+
"auto",
|
|
879
|
+
"none",
|
|
880
|
+
"mock",
|
|
881
|
+
"openai",
|
|
882
|
+
"anthropic"
|
|
883
|
+
]
|
|
884
|
+
},
|
|
885
|
+
"ai-threshold": {
|
|
886
|
+
"description": "Minimum model confidence required to override deterministic matching.",
|
|
887
|
+
"maximum": 1,
|
|
888
|
+
"minimum": 0,
|
|
889
|
+
"type": "number"
|
|
890
|
+
},
|
|
891
|
+
"ai-timeout-ms": {
|
|
892
|
+
"description": "Timeout for each provider adjudication request.",
|
|
893
|
+
"minimum": 1,
|
|
894
|
+
"type": "integer"
|
|
895
|
+
},
|
|
866
896
|
"amount-usdc": {
|
|
867
897
|
"description": "Sizing notional in USDC.",
|
|
868
898
|
"minimum": 0,
|
|
@@ -890,6 +920,13 @@
|
|
|
890
920
|
"description": "Comma-delimited market ids when source=pandora.",
|
|
891
921
|
"type": "string"
|
|
892
922
|
},
|
|
923
|
+
"matcher": {
|
|
924
|
+
"description": "Arbitrage matcher mode.",
|
|
925
|
+
"enum": [
|
|
926
|
+
"heuristic",
|
|
927
|
+
"hybrid"
|
|
928
|
+
]
|
|
929
|
+
},
|
|
893
930
|
"max-bundle-size": {
|
|
894
931
|
"description": "Maximum combinatorial bundle size.",
|
|
895
932
|
"minimum": 3,
|
|
@@ -962,7 +999,7 @@
|
|
|
962
999
|
],
|
|
963
1000
|
"canonicalName": "arb.scan",
|
|
964
1001
|
"canonicalTool": "arb.scan",
|
|
965
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
1002
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
966
1003
|
"command": [
|
|
967
1004
|
"arb",
|
|
968
1005
|
"scan",
|
|
@@ -1060,7 +1097,7 @@
|
|
|
1060
1097
|
"supportsRemote": true,
|
|
1061
1098
|
"supportsWebhook": false,
|
|
1062
1099
|
"topLevelInputConstraints": null,
|
|
1063
|
-
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
1100
|
+
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
1064
1101
|
}
|
|
1065
1102
|
},
|
|
1066
1103
|
"jobCapable": false,
|
|
@@ -1095,7 +1132,7 @@
|
|
|
1095
1132
|
],
|
|
1096
1133
|
"canonicalName": "arb.scan",
|
|
1097
1134
|
"canonicalTool": "arb.scan",
|
|
1098
|
-
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
1135
|
+
"canonicalUsage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]",
|
|
1099
1136
|
"command": [
|
|
1100
1137
|
"arb",
|
|
1101
1138
|
"scan",
|
|
@@ -1193,7 +1230,7 @@
|
|
|
1193
1230
|
"supportsRemote": true,
|
|
1194
1231
|
"supportsWebhook": false,
|
|
1195
1232
|
"topLevelInputConstraints": null,
|
|
1196
|
-
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
1233
|
+
"usage": "pandora arb scan [--source pandora|polymarket] [--markets <csv>] --output ndjson|json [--limit <n>] [--min-net-spread-pct <n>|--min-spread-pct <n>] [--min-tvl <usdc>] [--fee-pct-per-leg <n>] [--slippage-pct-per-leg <n>] [--amount-usdc <n>] [--combinatorial] [--max-bundle-size <n>] [--matcher heuristic|hybrid] [--similarity-threshold <0-1>] [--min-token-score <0-1>] [--ai-provider auto|none|mock|openai|anthropic] [--ai-model <id>] [--ai-threshold <0-1>] [--ai-max-candidates <n>] [--ai-timeout-ms <ms>] [--max-close-diff-hours <n>] [--question-contains <text>] [--interval-ms <ms>] [--iterations <n>] [--indexer-url <url>] [--timeout-ms <ms>]"
|
|
1197
1234
|
}
|
|
1198
1235
|
},
|
|
1199
1236
|
{
|
package/package.json
CHANGED