@thirdfy/agent-cli 0.2.36 → 0.2.37
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 +3 -4
- package/package.json +1 -1
- package/src/runtime/providerHints.mjs +2 -0
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.37] - 2026-07-25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Polymarket provider hints list `get_polymarket_user_positions` under read and order-management actions (Data API open positions; pairs with Thirdfy API action and MCP **0.0.80**).
|
|
12
|
+
|
|
7
13
|
## [0.2.36] - 2026-07-25
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/README.md
CHANGED
|
@@ -40,11 +40,10 @@ 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.37
|
|
44
44
|
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
- Reads still skip funding checks; routing and identity preflight still fail closed.
|
|
45
|
+
- Polymarket provider hints include `get_polymarket_user_positions` next to open-order reads, so `actions` / provider discovery surfaces Data API position inventory.
|
|
46
|
+
- Pairs with MCP **0.0.80**. Requires the matching Thirdfy API action on the host you call.
|
|
48
47
|
|
|
49
48
|
Older versions: see [CHANGELOG.md](./CHANGELOG.md) and [GitHub Releases](https://github.com/thirdfy/agent-cli/releases).
|
|
50
49
|
|
package/package.json
CHANGED
|
@@ -247,6 +247,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
247
247
|
'get_polymarket_onboarding_plan',
|
|
248
248
|
'get_polymarket_order',
|
|
249
249
|
'get_polymarket_user_orders',
|
|
250
|
+
'get_polymarket_user_positions',
|
|
250
251
|
],
|
|
251
252
|
discoveryFlow: [
|
|
252
253
|
'get_polymarket_tags or search_polymarket',
|
|
@@ -260,6 +261,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
|
|
|
260
261
|
'place_polymarket_order',
|
|
261
262
|
'get_polymarket_order',
|
|
262
263
|
'get_polymarket_user_orders',
|
|
264
|
+
'get_polymarket_user_positions',
|
|
263
265
|
'cancel_polymarket_order',
|
|
264
266
|
],
|
|
265
267
|
setupActions: [
|