@thirdfy/agent-cli 0.2.55 → 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,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.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
+
7
13
  ## [0.2.55] - 2026-08-28
8
14
 
9
15
  ### Changed
package/README.md CHANGED
@@ -40,6 +40,11 @@ Run without global install:
40
40
  npx @thirdfy/agent-cli --help
41
41
  ```
42
42
 
43
+ ## What's new in v0.2.56
44
+
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
+
43
48
  ## What's new in v0.2.55
44
49
 
45
50
  - Nansen and GMGN provider notes no longer list per-action credit or USD prices. Thirdfy auth is enough.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thirdfy/agent-cli",
3
- "version": "0.2.55",
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) {
@@ -617,6 +617,39 @@ export function createProviderHints({ getNegotiatedCapabilitiesCache }) {
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 {