@thirdfy/agent-cli 0.2.65 → 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 +6 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/src/runtime/actions/selection.mjs +1 -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.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
|
+
|
|
7
13
|
## [0.2.65] - 2026-09-15
|
|
8
14
|
|
|
9
15
|
### Added
|
package/README.md
CHANGED
|
@@ -40,9 +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.66
|
|
44
44
|
|
|
45
|
-
-
|
|
45
|
+
- Infer `bermuda_*` actions before the generic earn fallback so `bermuda_stealth_earn` does not show up under `provider=earn`.
|
|
46
46
|
- See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
|
|
47
47
|
|
|
48
48
|
## Quick start
|
package/package.json
CHANGED
|
@@ -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';
|