@thirdfy/agent-cli 0.2.2 → 0.2.3

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.3] - 2026-05-26
8
+
9
+ ### Added
10
+
11
+ - Hyperliquid and Polymarket `recoveryActions` and `decommissionExample` in `providerHints` for fund recovery before runtime delete (pairs with Thirdfy API v3.4.42+).
12
+
7
13
  ## [0.2.2] - 2026-05-23
8
14
 
9
15
  ### Changed
package/README.md CHANGED
@@ -40,12 +40,14 @@ Run without global install:
40
40
  npx @thirdfy/agent-cli --help
41
41
  ```
42
42
 
43
- ## What's new in v0.2.2
43
+ ## What's new in v0.2.3
44
44
 
45
- - **npm README cleanup** the registry homepage is user-facing again: one **What's new** section for the current version, full history in [CHANGELOG.md](./CHANGELOG.md) (no multi-version release wall or maintainer publish steps on npm).
46
- - **Public docs validation** `npm run validate:public-docs` enforces README/npm surface rules before publish.
45
+ - **Hyperliquid** and **Polymarket** provider discovery now include `recoveryActions` and `decommissionExample` for fund recovery before runtime delete.
46
+ - Hyperliquid recovery path: `get_hyperliquid_user_state` `withdraw_hyperliquid_to_arbitrum` withdraw execution wallet to owner.
47
+ - Polymarket recovery path: `get_polymarket_recovery_status` → `withdraw_polymarket_collateral` → withdraw execution wallet to owner.
48
+ - Pairs with Thirdfy API **v3.4.42+** managed recovery actions and EarnClaw runtime decommission flows.
47
49
 
48
- Older highlights (Commander routing, stricter flags): see [CHANGELOG.md](./CHANGELOG.md) · [GitHub Releases](https://github.com/thirdfy/agent-cli/releases).
50
+ Older versions: [CHANGELOG.md](./CHANGELOG.md) and [GitHub Releases](https://github.com/thirdfy/agent-cli/releases).
49
51
 
50
52
  ## Quick start
51
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -61,6 +61,12 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
61
61
  'get_hyperliquid_builder_fee_status',
62
62
  'get_hyperliquid_referral_status',
63
63
  ],
64
+ recoveryActions: [
65
+ 'get_hyperliquid_user_state',
66
+ 'withdraw_hyperliquid_to_arbitrum',
67
+ ],
68
+ decommissionExample:
69
+ 'get_hyperliquid_user_state -> withdraw_hyperliquid_to_arbitrum -> withdraw-to-user on execution wallet',
64
70
  credentialType: 'hyperliquid_api_wallet',
65
71
  credentialUx:
66
72
  'Thirdfy manages Hyperliquid API-wallet setup for normal users. Delegated writes require encrypted privateKey-backed hyperliquid_api_wallet credentials; walletAddress-only records are rejected until Privy walletId-backed Hyperliquid signing ships.',
@@ -168,7 +174,17 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
168
174
  'browser_setup:create_or_derive_clob_credentials',
169
175
  'browser_setup:deploy_deposit_wallet_and_set_approvals',
170
176
  ],
171
- statusActions: ['get_polymarket_setup_status'],
177
+ statusActions: [
178
+ 'get_polymarket_funding_status',
179
+ 'get_polymarket_setup_status',
180
+ 'get_polymarket_recovery_status',
181
+ ],
182
+ recoveryActions: [
183
+ 'get_polymarket_recovery_status',
184
+ 'withdraw_polymarket_collateral',
185
+ ],
186
+ decommissionExample:
187
+ 'get_polymarket_recovery_status -> withdraw_polymarket_collateral -> withdraw-to-user',
172
188
  credentialType: 'polymarket_clob',
173
189
  credentialUx:
174
190
  'Autonomous agents use an agent-owned Privy wallet and Polymarket deposit wallet first: Thirdfy creates the agent wallet, deploys/approves the deposit wallet, and stores encrypted CLOB credentials once Polymarket key creation is available. User-owned browser setup remains optional for interactive capital.',