@thirdfy/agent-cli 0.2.62 → 0.2.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +4 -4
- package/package.json +1 -1
- package/src/runtime/providerHints.mjs +9 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to `@thirdfy/agent-cli` are documented here. The format is b
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.2.63] - 2026-09-09
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Prediction provider hints prefer `get_prediction_markets` with Gamma `tag_id` and `end_date_min` / `end_date_max` over `search_prediction_markets` for discovery. Pairs with `thirdfy-mcp` **0.0.113** and Thirdfy API **3.14.30**.
|
|
12
|
+
|
|
7
13
|
## [0.2.62] - 2026-09-09
|
|
8
14
|
|
|
9
15
|
### Added
|
package/README.md
CHANGED
|
@@ -40,11 +40,11 @@ Run without global install:
|
|
|
40
40
|
npx @thirdfy/agent-cli --help
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
## What's new in v0.2.
|
|
43
|
+
## What's new in v0.2.63
|
|
44
44
|
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
-
|
|
45
|
+
- Polymarket discovery uses `get_prediction_markets` with a Gamma `tag_id` and an `end_date_min` / `end_date_max` window.
|
|
46
|
+
- `search_prediction_markets` is for human text or slug lookup, not agent discovery.
|
|
47
|
+
- `get_polymarket_user_orders` returns `orders` and `openOrderCount` at the top level.
|
|
48
48
|
- See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
|
|
49
49
|
|
|
50
50
|
## Quick start
|
package/package.json
CHANGED
|
@@ -433,11 +433,18 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
433
433
|
canonicalWriteAction: 'place_prediction_order',
|
|
434
434
|
readActions: [
|
|
435
435
|
'get_prediction_tags',
|
|
436
|
-
'search_prediction_markets',
|
|
437
|
-
'get_prediction_events',
|
|
438
436
|
'get_prediction_markets',
|
|
437
|
+
'get_prediction_events',
|
|
439
438
|
'get_prediction_market',
|
|
440
439
|
'get_prediction_order_book',
|
|
440
|
+
'search_prediction_markets',
|
|
441
|
+
],
|
|
442
|
+
discoveryFlow: [
|
|
443
|
+
'get_prediction_tags (resolve numeric tag_id once)',
|
|
444
|
+
'get_prediction_markets with tag_id + end_date_min/end_date_max + liquidity_num_min',
|
|
445
|
+
'get_prediction_order_book when book prices are missing',
|
|
446
|
+
'place_prediction_order after setup/funding/preflight',
|
|
447
|
+
'search_prediction_markets last for human text/slug lookup only',
|
|
441
448
|
],
|
|
442
449
|
orderManagementActions: ['place_prediction_order', 'cancel_prediction_order'],
|
|
443
450
|
compatibilityProvider: 'polymarket',
|