Hackathon entry

Deal intelligence you can verify

An engine that discovers AI pricing deals with agents, verifies every claim with a WASM fact-checker, normalizes them into comparable math, and serves everything as static APIs for humans and machines.

28
verified offers
70
priced models
60
scored routes
64
quotes wasm-verified
8
agent tools via MCP

The pipeline

1 · DISCOVER
A hermes agent crawls official pricing pages only. Every target it resolves is remembered in a crawl ledger so proven dead ends are never chased again.
2 · VERIFY
Each evidence quote is checked verbatim against the live page, then scored semantically by FactJudge — a deterministic WASM NLI model evolved against adversarial benchmarks (99.2% heldout). Contradicted prices are refused at merge.
3 · NORMALIZE
Deterministic math converts every offer into comparable units: effective $/Mtok under an agent request profile, value multiples of subscription pools, mega-deal detection with stated reasons.
4 · PUBLISH
Static build emits the site, JSON APIs and markdown digests to the edge. No backend, no marginal cost per reader, git history is the change feed.

Query it like an agent

# daily digest for any LLM
curl -s https://llmdeals-v2.pages.dev/api/v1/daily.md

# full machine-readable DB
curl -s https://llmdeals-v2.pages.dev/api/v1/deals.json | jq '.deals[0]'

# register the MCP server, then ask naturally:
#   "compare grok-4.3 vs glm-5.3 effective prices"
#   "fact_check: does this page support '$20/month'?"

Machine endpoints

MethodEndpointReturns
GET/api/v1/daily.mddaily markdown digest — top deals, what moved
GET/api/v1/deals.jsonfull DB: 60 scored routes, evidence quotes, FactJudge verdicts
GET/api/v1/answers/index.mdpre-rendered agent answers with live web context
MCPmcp/server.mjs8 tools incl. fact_check() — run our WASM verifier on any claim

Honest limitations

Built on

Astro static site · Cloudflare Pages · hermes agent (opencode-go) · FactJudge c026port WASM · SerpApi (guarded to free tier) · zero-backend JSON/markdown APIs. Everything runs on a 4-core box for $0/month.