@thirdfy/agent-cli 0.2.41 → 0.2.42

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.42
8
+
9
+ - Treat `check_*` actions as read-only (Near Intents `check_bridge_status` parity with API/MCP).
10
+ - Selection/routing updates for Near Intents bridge provider alias.
11
+
12
+
7
13
  ## [0.2.41] - 2026-07-28
8
14
 
9
15
  ### Fixed
package/README.md CHANGED
@@ -40,9 +40,12 @@ Run without global install:
40
40
  npx @thirdfy/agent-cli --help
41
41
  ```
42
42
 
43
- ## What's new in v0.2.41
44
- - `--provider lifi` soft-matches catalog `providerId: bridge` for bridge quote/execute (historical pack flag) while still matching trade provider `lifi` on Robinhood 4663. Prefer `--provider bridge` for bridges.
45
- - See [CHANGELOG.md](./CHANGELOG.md) for older versions.
43
+ ## What's new in v0.2.42
44
+
45
+ - Read-only classification for `check_*` actions (including bridge status).
46
+ - Near Intents bridge provider selection alias alignment with Thirdfy API.
47
+
48
+ See [CHANGELOG.md](./CHANGELOG.md) for older versions.
46
49
 
47
50
 
48
51
  ## Quick start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.41",
3
+ "version": "0.2.42",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -7,7 +7,7 @@
7
7
  * execute rail and come back shaped as an execution envelope instead of provider data.
8
8
  */
9
9
 
10
- const READ_ONLY_PREFIXES = ['get_', 'list_', 'fetch_', 'search_', 'show_', 'dogeos_get_'];
10
+ const READ_ONLY_PREFIXES = ['get_', 'list_', 'fetch_', 'search_', 'show_', 'check_', 'dogeos_get_'];
11
11
 
12
12
  const READ_ONLY_EXACT = new Set([
13
13
  'dogeos_barkswap_get_quote',
@@ -247,6 +247,11 @@ function actionMatchesProvider(action, requestedProvider, allActions) {
247
247
  if (provider === 'bridge' || isProviderActionKey(action, 'bridge')) return true;
248
248
  return false;
249
249
  }
250
+ if (requestedProvider === 'near-intents' || requestedProvider === 'near_intents') {
251
+ if (provider === 'hyperliquid' || provider === 'lighter') return false;
252
+ if (provider === 'bridge' || isProviderActionKey(action, 'bridge')) return true;
253
+ return false;
254
+ }
250
255
  if (requestedProvider.startsWith('dogeos')) return isProviderActionKey(action, requestedProvider);
251
256
  if (requestedProvider === 'earn') {
252
257
  return provider === 'earn' || provider === 'morpho' || provider === 'aegis' || provider === 'curve' || provider === 'capyfi' || provider === 'vaults-fyi' || provider === 'yield-xyz' || isEarnCatalogAction(action);