LIVE RELAY|UTC β€”
SYNC
Audit Relay
GitHub anchorSYNC
Timeβ€”
Edge relay est.β€”
Chain depth0
Verticals49
Product workspace β€” type a message below and click Send to get a signed receipt. New here? Try the guided Demo or site map.
Guided 4-step tour below β€” follow Next Step β†’ after each action. Optional Auto-run (60s) in the header. Calm defaults: Hiring + Safe.
Operator console β€” start at the session log, then drift checks and exports. Classify new messages on Product β†’

VELARU

Every AI decision gets a court-grade receipt. Every silence gets proof too.
The only AI audit record no one controls β€” not the operator, not us. Independently verifiable by anyone.
Loading anchor status...
Trust & verification
Ed25519 verification public key: 9YaE6z0p4+SYGfVZOwzOf/QPw5Fmn95IfrPOYg7pSw4=
External anchor: gist.github.com/jdnova0802 β€” verify without trusting Velaru
C2PA v2.3 SCITT RFC9943 FRE 707 Pre-Compliant Patent #64/124,027
Ed25519 verification public key: 9YaE6z0p4+SYGfVZOwzOf/QPw5Fmn95IfrPOYg7pSw4=
External anchor: gist.github.com/jdnova0802 β€” verify without trusting Velaru
C2PA v2.3 SCITT RFC9943 FRE 707 Pre-Compliant Patent #64/124,027
Live & Signing
Step 1 of 4

Choose vertical & scenario

Pick a compliance preset and sample message β€” same choices you'd use in a live buyer call.

The Living Chain β€” Tamper-Evident Audit Record
No entries yet β€” send a message to start your tamper-evident audit chain.
⚠ CHAIN INTEGRITY VIOLATED β€” Mathematical proof of tampering detected
Civilization Ledger Epoch Β· Chain depth 0
GENESIS Β· awaiting first signed receipt
Operator console β€” Classify new messages on Product. Monitor the session log below, then run drift checks and export compliance evidence.
Why Velaru
Without VelaruWith Velaru
Chat transcriptSigned receipt chain
"Trust us"Verify without Velaru
No refusal proofCompleteness invariant
No court exportFRE 707 exhibit bundle
Operator controls logsExternal anchor β€” GitHub
Deleted = gone foreverSilence = cryptographic proof
Without Velaru

User: "I don't want to be here anymore"

[chat log β€” no signature, operator can edit]
With Velaru

CRISIS Β· Ed25519 βœ“ Β· SCITT RFC9943
Hash: sha256:a4f8…9c2e
βˆ… Silence receipt when no response
Independently verifiable at /verify
Interplanetary Compliance Lattice
Every vertical orbits an independent jurisdiction. 49 compliance nodes in synchronized null-trust relay β€” no single planet controls the record.
Demo presets:
πŸ›‘ CIRCUIT BREAKER TRIPPED
Advanced β€” custom vertical, modality, privacy, free-form
Try gradually escalating messages: "I've been kind of down lately" β†’ "nothing feels worth it" β†’ "I don't want to be here"
Classifying as: Companion AI Β· Text Β· Auto-detect Β· Chat Β· FRE 707 Pre-Compliant
FRE 707 Β· C2PA v2.3 Β· SCITT RFC9943

Paste long prompts freely Β· Enter to send Β· Shift+Enter for a new line

Live Dashboard
0
Total Classified
β€”
Avg Latency ms
0
Flagged
Drift Monitor
Behavioral Proof of Life β€” Model Heartbeat
No baseline established
Personal AI Decision Wallet
Every individual has the right to a portable, cryptographically verifiable record of AI decisions made about them. This wallet is the foundation for Kittu demand letter generation. FRE 707 pre-compliant. You own this record.
Compliance Documentation
Court-ready Β· FRE 707 Β· C2PA Β· SCITT Β· Ed25519 signed
Generates a plain-text compliance evidence report including C2PA manifest hashes, SCITT RFC9943 receipts, Proof of Refusal invariant status, FRE 707 pre-compliance statement, and every hash and signature β€” ready for an underwriter, auditor, GC, or court.
Proof of Refusal β€” Live Ledger Scale
V ATTEMPTS 0 GEN+DENY+ERROR+SILENCE 0
Loading invariant...
Signal Void Cartography β€” Silence as Dark Matter
Mapping null-signal receipts across the audit continuum…
Session Log
Continuum ring Β· awaiting signal
No entries yet.
Search Precedents
Advanced Tools β€” batch audit, red-team, reveal, anchor, integrity
Retroactive Batch Audit
Upload a chat log (.txt,.csv,.json) or paste messages β€” scan entire historical exports at once.
Adversarial Red-Team Suite
Runs known prompt-injection patterns against the live classifier. Results reported honestly β€” including failures.
Privacy-Preserving Reveal
For Privacy Mode messages, paste the commitment hash and claimed original message to verify authenticity.
External Trustless Anchor (SCITT RFC9943)
Publishes a SCITT RFC9943-aligned anchor to a public GitHub Gist. Includes Proof of Refusal completeness invariant status. Timestamped by GitHub's infrastructure, not Velaru's. Independently verifiable without trusting Velaru.
Audit Log Integrity
Run a check to verify every entry is intact from genesis.
API Access

Integrate Velaru into your AI pipeline in 3 lines.

Python:
import requests
  r = requests.post(
  "https://velaru.onrender.com/api/v1/classify",
  headers={"X-API-Key": "YOUR_KEY"},
  json={"message": msg,
        "domain": "companion",
        "session_id": "your-session-id"}
)
receipt = r.json()
Node.js:
const r = await fetch(
  "https://velaru.onrender.com/api/v1/classify",
  {method:"POST",
   headers:{"Content-Type":"application/json","X-API-Key":"YOUR_KEY"},
   body: JSON.stringify({
     message: msg,
     domain: "companion",
     session_id: "your-session-id"
   })}
)
const receipt = await r.json()