@thirdfy/agent-cli 0.2.46 → 0.2.48

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.48] - 2026-08-09
8
+
9
+ ### Added
10
+
11
+ - 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.
12
+
13
+ ## [0.2.47] - 2026-08-08
14
+
15
+ ### Added
16
+
17
+ - `gmgn` provider hints and `docs/providers/gmgn.md` for `get_gmgn_*` read-only smart-money actions (pairs with Thirdfy API `gmgn` provider / API 3.13.56).
18
+
7
19
  ## [0.2.46] - 2026-08-08
8
20
 
9
21
  ### Changed
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.46
43
+ ## What's new in v0.2.48
44
44
 
45
- - Yield.xyz: discover opportunities first, then deposit with the canonical yieldId. Thirdfy prepare calls yields_get before enter/exit.
45
+ - Regression coverage for Base USDC Robinhood ROAR `get_bridge_quote` params used by KOL watch direct-first routing.
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.46",
3
+ "version": "0.2.48",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,7 +22,7 @@
22
22
  "LICENSE"
23
23
  ],
24
24
  "scripts": {
25
- "test": "node --test \"test/**/*.test.cjs\"",
25
+ "test": "node --test test/*.test.cjs",
26
26
  "lint": "node --check ./bin/thirdfy-agent.mjs && node --check ./src/core/*.mjs && node --check ./src/commands/*.mjs && node --check ./src/cli/*.mjs && node --check ./src/cli/options/*.mjs && node --check ./src/runtime/*.mjs && node --check ./src/runtime/execution/*.mjs && node --check ./src/runtime/actions/*.mjs && node --check ./src/runtime/validation/*.mjs && node --check ./src/runtime/certification/*.mjs",
27
27
  "validate:cli-manifest-handlers": "node ./scripts/validate-cli-manifest-handlers.mjs",
28
28
  "validate:runtime-boundaries": "node ./scripts/validate-runtime-boundaries.mjs",
@@ -533,6 +533,35 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
533
533
  'thirdfy-agent condor policy-status && thirdfy-agent condor preflight --estimated-amount-usd 25 --idempotency-key <key>',
534
534
  };
535
535
  }
536
+ if (provider === 'gmgn') {
537
+ return {
538
+ provider,
539
+ category: 'smart_money_intel',
540
+ canonicalReadAction: 'get_gmgn_kol_trades',
541
+ readActions: [
542
+ 'get_gmgn_token_info',
543
+ 'get_gmgn_token_security',
544
+ 'get_gmgn_token_pool',
545
+ 'get_gmgn_token_holders',
546
+ 'get_gmgn_token_traders',
547
+ 'get_gmgn_token_kline',
548
+ 'get_gmgn_trending',
549
+ 'get_gmgn_trenches',
550
+ 'get_gmgn_hot_searches',
551
+ 'get_gmgn_wallet_activity',
552
+ 'get_gmgn_wallet_stats',
553
+ 'get_gmgn_wallet_token_balance',
554
+ 'get_gmgn_created_tokens',
555
+ 'get_gmgn_kol_trades',
556
+ 'get_gmgn_smartmoney_trades',
557
+ ],
558
+ supportedChains: [],
559
+ laneCompatibility:
560
+ 'GMGN uses string chain slugs (sol, base, bsc, eth, robinhood), not numeric chainId. Read-only KOL, smart-money, wallet, and token security evidence via Thirdfy API. Pace calls (~1 req/s).',
561
+ example:
562
+ 'thirdfy-agent run --action get_gmgn_kol_trades --params \'{"chain":"sol","limit":5}\' --provider gmgn --json',
563
+ };
564
+ }
536
565
  if (provider === 'market-data') {
537
566
  return {
538
567
  provider,
@@ -582,6 +611,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
582
611
  'vaults-fyi': 'get-vaults-fyi-vaults',
583
612
  'yield-xyz': 'get_yield_xyz_opportunities',
584
613
  'market-data': 'get_trending_tokens',
614
+ gmgn: 'get_gmgn_kol_trades',
585
615
  prediction: 'get_prediction_markets',
586
616
  };
587
617
  return {