@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 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.62
43
+ ## What's new in v0.2.63
44
44
 
45
- - Ratehopper Managed USDC LP on Base is a named earn provider (`ratehopper`).
46
- - Discover agents and portfolio, then prepare Safe deploy and cash_lp setup when you confirm.
47
- - Close and owner sweep stay blocked until Ratehopper confirms the REST close path.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.62",
3
+ "version": "0.2.63",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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',