@thirdfy/agent-cli 0.2.52 → 0.2.54

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.54] - 2026-08-28
8
+
9
+ ### Added
10
+
11
+ - `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**.
12
+
13
+ ## [0.2.53] - 2026-08-25
14
+
15
+ ### Added
16
+
17
+ - Polymarket provider hints include `get_polymarket_balance_allowance` on CLOB reads and order management so agents can check collateral balance and allowance before placing orders. Pairs with Thirdfy API **3.14.7** and `thirdfy-mcp` **0.0.101**.
18
+
7
19
  ## [0.2.52] - 2026-08-18
8
20
 
9
21
  ### Added
package/README.md CHANGED
@@ -40,10 +40,10 @@ Run without global install:
40
40
  npx @thirdfy/agent-cli --help
41
41
  ```
42
42
 
43
- ## What's new in v0.2.52
43
+ ## What's new in v0.2.54
44
44
 
45
- - Yield.xyz incentive claims use `claim_earn_rewards` (no amount; optional `passthrough` from `get_earn_position.claimableRewards`).
46
- - Claim writes wait up to 180s, same as earn deposit and withdraw.
45
+ - Nansen provider hints for nine read-only `get_nansen_*` actions (Hyperliquid screener, TGM intel, address profiler, and premium research agent).
46
+ - See [`docs/providers/nansen.md`](./docs/providers/nansen.md) for discovery examples and credit tiers.
47
47
  - See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
48
48
 
49
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.52",
3
+ "version": "0.2.54",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -248,6 +248,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
248
248
  'get_polymarket_order',
249
249
  'get_polymarket_user_orders',
250
250
  'get_polymarket_user_positions',
251
+ 'get_polymarket_balance_allowance',
251
252
  'get_polymarket_bridge_supported_assets',
252
253
  'get_polymarket_bridge_status',
253
254
  ],
@@ -267,6 +268,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
267
268
  'get_polymarket_order',
268
269
  'get_polymarket_user_orders',
269
270
  'get_polymarket_user_positions',
271
+ 'get_polymarket_balance_allowance',
270
272
  'cancel_polymarket_order',
271
273
  ],
272
274
  setupActions: [
@@ -592,6 +594,29 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
592
594
  'thirdfy-agent run --action get_gmgn_kol_trades --params \'{"chain":"sol","limit":5}\' --provider gmgn --json',
593
595
  };
594
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 agent ~100 Thirdfy credits; expert ~375. 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
+ }
595
620
  if (provider === 'market-data') {
596
621
  return {
597
622
  provider,
@@ -644,6 +669,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
644
669
  'yield-xyz': 'get_yield_xyz_opportunities',
645
670
  'market-data': 'get_trending_tokens',
646
671
  gmgn: 'get_gmgn_kol_trades',
672
+ nansen: 'get_nansen_perp_screener',
647
673
  prediction: 'get_prediction_markets',
648
674
  };
649
675
  return {