@thirdfy/agent-cli 0.2.53 → 0.2.55

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.55] - 2026-08-28
8
+
9
+ ### Changed
10
+
11
+ - Nansen and GMGN provider notes no longer list per-action Thirdfy credit or USD prices. CLI uses Thirdfy auth only. No extra Nansen venue credential. Pairs with Thirdfy API **3.14.15** and `thirdfy-mcp` **0.0.103**.
12
+
13
+ ## [0.2.54] - 2026-08-28
14
+
15
+ ### Added
16
+
17
+ - `nansen` provider hints and `docs/providers/nansen.md` for nine read-only `get_nansen_*` actions (HL/TGM reads + premium research agent). Pairs with Thirdfy API **3.14.14** and `thirdfy-mcp` **0.0.101**.
18
+
7
19
  ## [0.2.53] - 2026-08-25
8
20
 
9
21
  ### Added
package/README.md CHANGED
@@ -40,9 +40,10 @@ Run without global install:
40
40
  npx @thirdfy/agent-cli --help
41
41
  ```
42
42
 
43
- ## What's new in v0.2.53
43
+ ## What's new in v0.2.55
44
44
 
45
- - Polymarket CLOB discovery includes `get_polymarket_balance_allowance` so agents can read collateral balance and allowance before placing orders.
45
+ - Nansen and GMGN provider notes no longer list per-action credit or USD prices. Thirdfy auth is enough.
46
+ - See [`docs/providers/nansen.md`](./docs/providers/nansen.md) for discovery examples.
46
47
  - See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
47
48
 
48
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.53",
3
+ "version": "0.2.55",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -594,6 +594,29 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
594
594
  'thirdfy-agent run --action get_gmgn_kol_trades --params \'{"chain":"sol","limit":5}\' --provider gmgn --json',
595
595
  };
596
596
  }
597
+ if (provider === 'nansen') {
598
+ return {
599
+ provider,
600
+ category: 'research_intel',
601
+ canonicalReadAction: 'get_nansen_perp_screener',
602
+ readActions: [
603
+ 'get_nansen_perp_screener',
604
+ 'get_nansen_position_intelligence',
605
+ 'get_nansen_address_perp_positions',
606
+ 'get_nansen_address_perp_trades',
607
+ 'get_nansen_address_balances',
608
+ 'get_nansen_address_pnl_summary',
609
+ 'get_nansen_flow_intelligence',
610
+ 'get_nansen_agent_fast',
611
+ 'get_nansen_agent_expert',
612
+ ],
613
+ supportedChains: [],
614
+ laneCompatibility:
615
+ 'Nansen HL/TGM reads and premium research agent via Thirdfy API. JSON body params for screener/profiler calls. Fast and expert research cost more than screener reads. Pace outbound starts (~1 req/s).',
616
+ example:
617
+ 'thirdfy-agent run --action get_nansen_perp_screener --params \'{"date":{"from":"2026-08-27T00:00:00.000Z","to":"2026-08-28T00:00:00.000Z"},"pagination":{"page":1,"per_page":5}}\' --provider nansen --json',
618
+ };
619
+ }
597
620
  if (provider === 'market-data') {
598
621
  return {
599
622
  provider,
@@ -646,6 +669,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
646
669
  'yield-xyz': 'get_yield_xyz_opportunities',
647
670
  'market-data': 'get_trending_tokens',
648
671
  gmgn: 'get_gmgn_kol_trades',
672
+ nansen: 'get_nansen_perp_screener',
649
673
  prediction: 'get_prediction_markets',
650
674
  };
651
675
  return {