@thirdfy/agent-cli 0.2.54 → 0.2.56

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.56] - 2026-09-03
8
+
9
+ ### Added
10
+
11
+ - `cmc` provider hints and `docs/providers/cmc.md` for nineteen read-only `get_cmc_*` actions (cheap reads + composed Skill Hub briefs). Long-running skill actions use 180s timeout. Pairs with Thirdfy API **3.14.18** and `thirdfy-mcp` **0.0.104**.
12
+
13
+ ## [0.2.55] - 2026-08-28
14
+
15
+ ### Changed
16
+
17
+ - 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**.
18
+
7
19
  ## [0.2.54] - 2026-08-28
8
20
 
9
21
  ### Added
package/README.md CHANGED
@@ -40,10 +40,15 @@ Run without global install:
40
40
  npx @thirdfy/agent-cli --help
41
41
  ```
42
42
 
43
- ## What's new in v0.2.54
43
+ ## What's new in v0.2.56
44
44
 
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.
45
+ - `cmc` provider hints and [`docs/providers/cmc.md`](./docs/providers/cmc.md) for nineteen read-only `get_cmc_*` actions (quotes, metrics, fear/greed, composed Skill Hub briefs). Long-running skill actions use a 180s timeout.
46
+ - Pairs with Thirdfy API **3.14.18** and `thirdfy-mcp` **0.0.104**.
47
+
48
+ ## What's new in v0.2.55
49
+
50
+ - Nansen and GMGN provider notes no longer list per-action credit or USD prices. Thirdfy auth is enough.
51
+ - See [`docs/providers/nansen.md`](./docs/providers/nansen.md) for discovery examples.
47
52
  - See [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases for older versions.
48
53
 
49
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.54",
3
+ "version": "0.2.56",
4
4
  "description": "Thirdfy Agent CLI for onboarding, governance preflight, execute-intent, and status polling.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -7,6 +7,12 @@ const LONG_RUNNING_ACTIONS = new Set([
7
7
  'deposit_earn_position',
8
8
  'withdraw_earn_position',
9
9
  'claim_earn_rewards',
10
+ 'get_cmc_skill',
11
+ 'get_cmc_daily_market_overview',
12
+ 'get_cmc_btc_etf_demand',
13
+ 'get_cmc_perp_contract_analysis',
14
+ 'get_cmc_market_regime',
15
+ 'get_cmc_derivatives_crowding',
10
16
  ]);
11
17
 
12
18
  function normalizeActionId(action) {
@@ -612,11 +612,44 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
612
612
  ],
613
613
  supportedChains: [],
614
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).',
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
616
  example:
617
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
618
  };
619
619
  }
620
+ if (provider === 'cmc') {
621
+ return {
622
+ provider,
623
+ category: 'research_intel',
624
+ canonicalReadAction: 'get_cmc_quotes',
625
+ readActions: [
626
+ 'get_cmc_search',
627
+ 'get_cmc_quotes',
628
+ 'get_cmc_info',
629
+ 'get_cmc_global_metrics',
630
+ 'get_cmc_fear_greed',
631
+ 'get_cmc_metrics',
632
+ 'get_cmc_technicals',
633
+ 'get_cmc_marketcap_technicals',
634
+ 'get_cmc_derivatives_metrics',
635
+ 'get_cmc_news',
636
+ 'get_cmc_search_info',
637
+ 'get_cmc_narratives',
638
+ 'get_cmc_upcoming_events',
639
+ 'get_cmc_skill',
640
+ 'get_cmc_daily_market_overview',
641
+ 'get_cmc_btc_etf_demand',
642
+ 'get_cmc_perp_contract_analysis',
643
+ 'get_cmc_market_regime',
644
+ 'get_cmc_derivatives_crowding',
645
+ ],
646
+ supportedChains: [],
647
+ laneCompatibility:
648
+ 'CoinMarketCap quotes, global metrics, and composed Skill Hub briefs via Thirdfy API. Skill actions may take up to 180s. Composed briefs cost more than cheap reads.',
649
+ example:
650
+ 'thirdfy-agent run --action get_cmc_quotes --params \'{"symbol":"BTC","convert":"USD"}\' --provider cmc --json',
651
+ };
652
+ }
620
653
  if (provider === 'market-data') {
621
654
  return {
622
655
  provider,
@@ -670,6 +703,7 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
670
703
  'market-data': 'get_trending_tokens',
671
704
  gmgn: 'get_gmgn_kol_trades',
672
705
  nansen: 'get_nansen_perp_screener',
706
+ cmc: 'get_cmc_quotes',
673
707
  prediction: 'get_prediction_markets',
674
708
  };
675
709
  return {