@thirdfy/agent-cli 0.2.64 → 0.2.66

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,18 @@ All notable changes to `@thirdfy/agent-cli` are documented here. The format is b
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.2.66] - 2026-09-15
8
+
9
+ ### Fixed
10
+
11
+ - Infer `bermuda` before the generic `earn` fallback. `bermuda_stealth_earn` contains `earn` and was leaking into `provider=earn` when catalog rows omit `providerId`. Matches `thirdfy-mcp` **0.0.115** Autofix.
12
+
13
+ ## [0.2.65] - 2026-09-15
14
+
15
+ ### Added
16
+
17
+ - Bermuda provider hints (`providerId: bermuda`) for the Base Sepolia lab rail: `get_bermuda_setup_status`, `get_bermuda_balance`, `bermuda_deposit`, `bermuda_transfer`, `bermuda_withdraw`, `bermuda_stealth_earn`. Catalog is flag-gated on the Thirdfy API host. See [`docs/providers/bermuda.md`](./docs/providers/bermuda.md). Pairs with `thirdfy-mcp` **0.0.115** and Thirdfy API **3.14.39**.
18
+
7
19
  ## [0.2.64] - 2026-09-10
8
20
 
9
21
  ### Added
package/README.md CHANGED
@@ -40,10 +40,9 @@ Run without global install:
40
40
  npx @thirdfy/agent-cli --help
41
41
  ```
42
42
 
43
- ## What's new in v0.2.64
43
+ ## What's new in v0.2.66
44
44
 
45
- - Fomo API (`providerId: fomo`) read-only handle intel and app alerts via `get_fomo_*`. Unofficial fomoapi.io integration, not the Fomo consumer app. See [`docs/providers/fomo.md`](./docs/providers/fomo.md).
46
- - Catalog `paramsSchema` coerces finite numbers on `amount*` keys to strings when the schema type is string (`amountUsdc: 29.24` → `"29.24"`).
45
+ - Infer `bermuda_*` actions before the generic earn fallback so `bermuda_stealth_earn` does not show up under `provider=earn`.
47
46
  - See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
48
47
 
49
48
  ## Quick start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.64",
3
+ "version": "0.2.66",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -206,6 +206,7 @@ function inferActionProvider(action) {
206
206
  if (key.includes('curve')) return 'curve';
207
207
  if (key.includes('uniswap')) return 'uniswap';
208
208
  if (key.includes('ratehopper')) return 'ratehopper';
209
+ if (key.includes('bermuda')) return 'bermuda';
209
210
  if (key.includes('earn') || key.includes('yield') || key.includes('vault')) return 'earn';
210
211
  if (key.includes('bridge')) return 'bridge';
211
212
  if (key.includes('dogeos-barkswap')) return 'dogeos-barkswap';
@@ -778,6 +778,26 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
778
778
  'thirdfy-agent run --action basedbid_get_tokens --params \'{"chainId":8453,"limit":10}\' --provider basedbid --json',
779
779
  };
780
780
  }
781
+ if (provider === 'bermuda') {
782
+ return {
783
+ provider,
784
+ category: 'internal',
785
+ canonicalReadAction: 'get_bermuda_setup_status',
786
+ canonicalWriteAction: 'bermuda_deposit',
787
+ readActions: ['get_bermuda_setup_status', 'get_bermuda_balance'],
788
+ orderManagementActions: [
789
+ 'bermuda_deposit',
790
+ 'bermuda_transfer',
791
+ 'bermuda_withdraw',
792
+ 'bermuda_stealth_earn',
793
+ ],
794
+ supportedChains: [84532],
795
+ laneCompatibility:
796
+ 'Base Sepolia shielded USDC lab rail. Catalog is flag-gated on the API host. Deposit is Privy-direct from the execution wallet. Transfer, withdraw, and stealth earn use the Bermuda relayer. Max write size is capped at 5 USD in catalog policy.',
797
+ example:
798
+ 'thirdfy-agent run --action get_bermuda_setup_status --params \'{"chainId":84532}\' --provider bermuda --json',
799
+ };
800
+ }
781
801
  if (provider === 'nansen') {
782
802
  return {
783
803
  provider,
@@ -871,6 +891,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
871
891
  aave: 'deposit_earn_position',
872
892
  aegis: 'deposit_aegis_lender',
873
893
  basedbid: 'basedbid_create_lbp',
894
+ bermuda: 'bermuda_deposit',
874
895
  curve: 'deposit_earn_position',
875
896
  uniswap: 'mint_uniswap_position',
876
897
  ratehopper: 'setup_ratehopper_cash_lp',
@@ -892,6 +913,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
892
913
  gmgn: 'get_gmgn_kol_trades',
893
914
  nansen: 'get_nansen_perp_screener',
894
915
  basedbid: 'basedbid_get_tokens',
916
+ bermuda: 'get_bermuda_setup_status',
895
917
  cmc: 'get_cmc_quotes',
896
918
  prediction: 'get_prediction_markets',
897
919
  };