NSR Console & Billing
The customer-facing half of nazarae-1: the decision console, policy tooling, demo and benchmark suites, and the evidence base. The model itself is served bynsr-server.
nazarae-1 is a decision authority, not a text generator. Every answer is approved,
denied, or refused with cited rules, a replayable derivation, and a SHA-256 policy pin — or
a refusal that names the exact missing_facts.
Onboarding
Onboarding is card-optional: a three-step wizard covering org creation, payment, and a one-time key reveal. Signup routes through hosted WorkOS AuthKit. New orgs get an activation checklist on the dashboard, and the quickstart curl is designed to return a grounded approval on the first call rather than a refusal, so the first experience demonstrates the system working.Free trial
FREE_TIER_DECISIONS (default 100) lets an org make N billable decisions before the
billing gate applies. The gate reads the org’s cumulative billable count and allows while
used < N. Setting it to 0 disables the trial, requiring a card up front.
On subscribe, the usage watermark is advanced to the current total, so trial decisions are
never metered.
Non-billable decisions never advance free-tier usage. If the stats endpoint is briefly
unavailable the trial fails open, so a new user isn’t blocked by a transient outage — while
a subscribed org’s status check still fails closed to 503.
Billing
$0.05 USD per billable decision, billed monthly in arrears, via Stripe Elements.
Usage is reported by an hourly job that pulls each org’s cumulative billable count from
/v1/decisions/stats and pushes the delta as a meter event. Checkpoints live in customer
metadata, making it crash-safe.
The reporter never double-bills. If the cumulative total ever shrinks — a stats anomaly or
a retention trim — it reports nothing and holds the checkpoint rather than rolling it down. A
genuine permanent shrink under-bills until the count re-crosses the held checkpoint. This is a
deliberate tradeoff: never double-bill beats never under-bill.
Environment
One-time setup per Stripe mode
STRIPE_SECRET_KEY=sk_… npm run billing:bootstrap— creates the meter, product, and price. Idempotent.- In the Stripe dashboard, add a webhook for
customer.subscription.*,invoice.paid, andinvoice.payment_failed, and put the signing secret inSTRIPE_WEBHOOK_SECRET. - Add the environment variables to the BFF deployment.
Console
The dashboard surfaces a health-verified connection, live decision analytics, and the verified-decision curl quickstart. The playground includes a first-run primer on how to read a proof, since the output shape is unfamiliar to people arriving from chat-style LLMs.Running locally
For agents
A machine-readable index is served at/llms.txt.
Related
- NSR as a Model Provider — Claude Code, Codex, OpenCode
- Verified Decisions API
- Neuro-Symbolic Architecture