@thirdfy/agent-cli 0.2.54 → 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,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.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
+
7
13
  ## [0.2.54] - 2026-08-28
8
14
 
9
15
  ### 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.54
43
+ ## What's new in v0.2.55
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
+ - 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.
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.54",
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": {
@@ -612,7 +612,7 @@ 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
  };