Pack catalog
A pack is a self-contained vertical: sources + compactor + briefer + Zod schema. The Cloven Mind engine is domain-agnostic — packs ship the domain knowledge. The engine knows nothing about crypto or AI papers or SEC filings; the crypto pack does.
This is what's live, what's next, and what each pack reads from.
Status
| Pack | Status | Surfaces |
|---|---|---|
crypto | Live | MCP · REST · SDK |
ai | Phase 1.5 (Week 8) | MCP · REST · SDK on ship |
markets | Phase 1.5 | MCP · REST · SDK on ship |
custom | Phase 2 | YAML config in /console |
Pack-specific extras (e.g. cloven.crypto.rug_check) appear in tools/list only when the caller's tier subscribes to that pack.
crypto (live)
Continuous crypto market intelligence: prices, TVL, narratives, sentiment, news, rug heuristics. 9 source connectors fanning out every 5 minutes (some on longer cadences for slow-moving data).
| Source | Cadence | Notes |
|---|---|---|
| CoinGecko | 5 min | Top 200 prices, 24h change, volume, mcap. Optional COINGECKO_API_KEY. |
| DefiLlama | 5 min | Top protocols by TVL, chain breakdown, 24h change. |
| GeckoTerminal | 5 min | Trending pools across all chains. |
| DexScreener | 5 min | Top trending tokens by 6h volume. |
| GoPlus Security | on-demand | Rug audit lookup for queried tokens. |
| CryptoCompare News | 15 min | Latest crypto headlines (last 24h). |
| Fear & Greed Index | 1 hr | Daily sentiment gauge. |
| GDELT | 30 min | Crypto-relevant macro news (filtered on terms). |
| 15 min | r/cryptocurrency + r/defi top posts. |
Deep dive on schema, brief voice, and pack-specific tools: crypto pack.
ai (Phase 1.5)
Builders' newsroom: trending models, datasets, repos, papers, threads. Analyst-engineer voice. Targets devs, AI engineers, researcher-operators.
| Source | Cadence | Notes |
|---|---|---|
| HF trending models | 1 hr | Top 50 by 24h downloads. |
| HF trending datasets | 1 hr | Top 50. |
| HF trending Spaces | 1 hr | Top 30. |
| GitHub trending | 6 hr | RSS-backed, last 24h repos. |
| ArXiv cs.AI + cs.LG | 6 hr | New papers, abstract summarised. |
| HackerNews | 1 hr | Top 30 stories tagged ai / ml / llm. |
| Reddit r/MachineLearning | 30 min | Top posts in the last 24h. |
Ships Week 8 of the public roadmap.
markets (Phase 1.5)
Equities + macro. Institutional, sober voice. Designed for autonomous research agents that need real fundamentals + sentiment, not just price.
| Source | Cadence | Notes |
|---|---|---|
| SEC EDGAR | 1 hr | Recent 8-K, 10-K filings (S&P 500). |
| FRED | daily | Key macro indicators (CPI, unemployment, fed funds). |
| Earnings calendar | 6 hr | Upcoming earnings this week. |
| FMP news | 30 min | Financial news headlines. |
| Treasury yields | 15 min | US treasury curve. |
Requires paid FMP or equivalent — this pack is metered higher to cover source cost. Ships Phase 1.5, shortly after ai.
custom (Phase 2)
Bring-your-own pack via the console UI. Define sources as YAML — webhooks, RSS, scraped pages, or arbitrary HTTP endpoints. Define a compact prompt + a brief prompt + a Zod schema. The pack registers into the same MCP / REST / SDK surface as the canonical packs.
Example skeleton (subject to change before Phase 2 ships):
id: my_supply_chain
name: My Supply Chain Intel
sources:
- id: shipping_feed
type: webhook
url: https://my.api.com/feed
cadence_seconds: 600
- id: weather
type: http
url: https://api.openweathermap.org/...
api_key_env: OPENWEATHER_KEY
cadence_seconds: 1800
compact_prompt: |
Given the shipping feed and weather data, produce a structured state...
brief_prompt: |
Generate a 6-paragraph brief covering shipments at risk, weather alerts,
and any anomalies in the last 24h.
state_schema:
shipments_at_risk: array
weather_alerts: arrayCustom packs price per-call at base + source-cost-passthrough — you pay for the upstream HTTP traffic on top of the Cloven base price. Phase 2 only.
More: custom packs.
Adding a pack to your subscription
Pack access is gated by API-key tier:
- Free —
["crypto"]only. - Hobby / Pro / Team / Enterprise — every registered pack.
For custom packs (Phase 2), each Team+ account can deploy up to N custom packs (N grows with tier). The custom pack appears in your account's pack registry but not in other accounts' registries.
Pack versioning
Each pack carries a version field bumped on schema or source changes. Existing snapshots remain in Postgres against the version they were generated under — so a Pro+ subscriber doing time-travel reads from 2026-04-15 gets the schema as it was on that date, not as it is today. The MCP resources/list exposes cloven://pack/{id}/schema with the current version's schema.
Schema breaking changes are minor-version bumps. Source additions / minor field additions are patch bumps. Major-version bumps are reserved for surface-level interface changes (e.g. switching how the citation array is shaped).