@thirdfy/agent-cli 0.2.64 → 0.2.65
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 +2 -3
- package/package.json +1 -1
- package/src/runtime/providerHints.mjs +22 -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.65] - 2026-09-15
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- 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**.
|
|
12
|
+
|
|
7
13
|
## [0.2.64] - 2026-09-10
|
|
8
14
|
|
|
9
15
|
### 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.
|
|
43
|
+
## What's new in v0.2.65
|
|
44
44
|
|
|
45
|
-
-
|
|
46
|
-
- Catalog `paramsSchema` coerces finite numbers on `amount*` keys to strings when the schema type is string (`amountUsdc: 29.24` → `"29.24"`).
|
|
45
|
+
- Bermuda (`providerId: bermuda`) Base Sepolia lab hints: `get_bermuda_setup_status`, `get_bermuda_balance`, `bermuda_deposit`, `bermuda_transfer`, `bermuda_withdraw`, `bermuda_stealth_earn`. Catalog is flag-gated on the API host. See [`docs/providers/bermuda.md`](./docs/providers/bermuda.md).
|
|
47
46
|
- See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
|
|
48
47
|
|
|
49
48
|
## Quick start
|
package/package.json
CHANGED
|
@@ -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
|
};
|