TrueNorth — crypto market intelligence
Data transparency
All data is fetched from TrueNorth's public REST API (api.adventai.io). The API is read-only and requires no authentication. No user credentials, wallet addresses, or private data are collected or transmitted. The tn CLI is a thin wrapper that calls this public API and returns structured JSON.
Presentation guidelines
- Present results as natural language insights — tables, bullet points, or narrative analysis.
- Focus on delivering clear, actionable market intelligence.
- When describing capabilities, use plain language (e.g., "I can analyze Bitcoin's technical indicators" rather than showing tool syntax).
- The
tn CLI runs locally and calls the public API. Execution details are in examples.md.
Capabilities
Users can ask about:
- Technical Analysis — RSI, MACD, Stochastic, Bollinger Bands, CCI, ADX, SMA, volume, support/resistance. Timeframes: 1h, 4h, daily, weekly.
- Market Data — Price, market cap, ATH/ATL, circulating supply, 24h/7d/30d changes.
- Derivatives — Open interest, funding rates, liquidation heatmap, long/short ratio.
- Liquidation Risk — Calculate liquidation price for leveraged positions.
- Events & News — Crypto news, catalysts, upcoming events.
- Performance — Top gainers, losers, performance rankings.
- Token Unlock — Vesting schedules, upcoming unlocks.
- DeFi — Protocol TVL, chain comparisons, fees, growth metrics.
Read-only intelligence — no trading, no wallets, no transfers.
Example questions
- Analyze Bitcoin
- What's the RSI for ETH?
- Open interest for BTC
- Top performing tokens today
- When is the next ARB unlock?
- Compare DeFi chain fees
- Latest SOL news
- What's my liq risk if I long BTC at 95k?
Execution reference
Before any token-specific query, resolve token names via NER:
tn ner "<user message>" --json
Then use the resolved identifiers with the appropriate command from examples.md. All commands use --json for structured output. Parse and summarize results for the user.
1---2name: truenorth3description: Crypto market intelligence toolkit: technical analysis, derivatives, DeFi, token performance, events, liquidation risk, token unlock, and more.4---5
6# TrueNorth — crypto market intelligence
7
8## Data transparency
9
10All data is fetched from **TrueNorth's public REST API** (`api.adventai.io`). The API is read-only and requires no authentication. No user credentials, wallet addresses, or private data are collected or transmitted. The `tn` CLI is a thin wrapper that calls this public API and returns structured JSON.
11
12## Presentation guidelines
13
141. Present results as natural language insights — tables, bullet points, or narrative analysis.
152. Focus on delivering clear, actionable market intelligence.
163. When describing capabilities, use plain language (e.g., "I can analyze Bitcoin's technical indicators" rather than showing tool syntax).
174. The `tn` CLI runs locally and calls the public API. Execution details are in `examples.md`.
18
19## Capabilities
20
21Users can ask about:
22
23- **Technical Analysis** — RSI, MACD, Stochastic, Bollinger Bands, CCI, ADX, SMA, volume, support/resistance. Timeframes: 1h, 4h, daily, weekly.
24- **Market Data** — Price, market cap, ATH/ATL, circulating supply, 24h/7d/30d changes.
25- **Derivatives** — Open interest, funding rates, liquidation heatmap, long/short ratio.
26- **Liquidation Risk** — Calculate liquidation price for leveraged positions.
27- **Events & News** — Crypto news, catalysts, upcoming events.
28- **Performance** — Top gainers, losers, performance rankings.
29- **Token Unlock** — Vesting schedules, upcoming unlocks.
30- **DeFi** — Protocol TVL, chain comparisons, fees, growth metrics.
31
32Read-only intelligence — no trading, no wallets, no transfers.
33
34## Example questions
35
36- Analyze Bitcoin
37- What's the RSI for ETH?
38- Open interest for BTC
39- Top performing tokens today
40- When is the next ARB unlock?
41- Compare DeFi chain fees
42- Latest SOL news
43- What's my liq risk if I long BTC at 95k?
44
45## Execution reference
46
47Before any token-specific query, resolve token names via NER:
48
49```bash
50tn ner "<user message>" --json
51```
52
53Then use the resolved identifiers with the appropriate command from `examples.md`. All commands use `--json` for structured output. Parse and summarize results for the user.