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

PackStatusSurfaces
cryptoLiveMCP · REST · SDK
aiPhase 1.5 (Week 8)MCP · REST · SDK on ship
marketsPhase 1.5MCP · REST · SDK on ship
customPhase 2YAML 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).

SourceCadenceNotes
CoinGecko5 minTop 200 prices, 24h change, volume, mcap. Optional COINGECKO_API_KEY.
DefiLlama5 minTop protocols by TVL, chain breakdown, 24h change.
GeckoTerminal5 minTrending pools across all chains.
DexScreener5 minTop trending tokens by 6h volume.
GoPlus Securityon-demandRug audit lookup for queried tokens.
CryptoCompare News15 minLatest crypto headlines (last 24h).
Fear & Greed Index1 hrDaily sentiment gauge.
GDELT30 minCrypto-relevant macro news (filtered on terms).
Reddit15 minr/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.

SourceCadenceNotes
HF trending models1 hrTop 50 by 24h downloads.
HF trending datasets1 hrTop 50.
HF trending Spaces1 hrTop 30.
GitHub trending6 hrRSS-backed, last 24h repos.
ArXiv cs.AI + cs.LG6 hrNew papers, abstract summarised.
HackerNews1 hrTop 30 stories tagged ai / ml / llm.
Reddit r/MachineLearning30 minTop 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.

SourceCadenceNotes
SEC EDGAR1 hrRecent 8-K, 10-K filings (S&P 500).
FREDdailyKey macro indicators (CPI, unemployment, fed funds).
Earnings calendar6 hrUpcoming earnings this week.
FMP news30 minFinancial news headlines.
Treasury yields15 minUS 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: array

Custom 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).