@thirdfy/agent-cli 0.2.47 → 0.2.49

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.49] - 2026-08-10
8
+
9
+ ### Fixed
10
+
11
+ - Action provider inference for legacy spot write id `execute_optimal_swap` (underscore form) now maps to the `trading` provider, matching `swap` and `execute-optimal-swap` for catalog discovery and run routing.
12
+
13
+ ## [0.2.48] - 2026-08-09
14
+
15
+ ### Added
16
+
17
+ - Regression: Base USDC → Robinhood ROAR `get_bridge_quote` param pins (`test/kol-watch-rh-bridge-quote.test.cjs`) for KOL watch direct-first routing parity with MCP and Console.
18
+
7
19
  ## [0.2.47] - 2026-08-08
8
20
 
9
21
  ### 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.47
43
+ ## What's new in v0.2.49
44
44
 
45
- - GMGN smart-money reads: provider hints and `docs/providers/gmgn.md` for `get_gmgn_*` actions.
45
+ - Legacy spot write id `execute_optimal_swap` now routes to the trading provider like `swap` and `execute-optimal-swap`.
46
46
  - See [CHANGELOG.md](./CHANGELOG.md) for older versions.
47
47
 
48
48
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.47",
3
+ "version": "0.2.49",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,6 +42,7 @@ function inferActionProvider(action) {
42
42
  const knownMap = {
43
43
  swap: 'trading',
44
44
  'execute-optimal-swap': 'trading',
45
+ execute_optimal_swap: 'trading',
45
46
  'get-best-trading-quote': 'trading',
46
47
  'dogeos-barkswap-get-quote': 'dogeos-barkswap',
47
48
  'dogeos-barkswap-execute-swap': 'dogeos-barkswap',