Skip to content
145 Patent Claims · 3 Provisionals Filed

One kernel. Deterministic safety certification for autonomous systems.

The Quotient Autonomy Engine (QAE) is a domain-agnostic safety certification platform. The same mathematical kernel — multi-channel constraint evaluation, binding-constraint decision logic, deterministic certificate hashing — instantiated across satellite constellation management, portfolio risk certification, and agentic AI safety.

A domain-agnostic safety certification kernel

Every autonomous system faces the same structural problem: proposed actions must be evaluated against multiple constraints, classified into safety zones, and certified with tamper-evident audit trails — all in real time. QAE Substrate solves this once.

01
Action
Mapping
02
Multi-Channel
Evaluation
03
Binding Constraint
Decision
04
Deterministic
Certificate
KernelDomain-Agnostic

Multi-Channel Constraint Evaluation

N constraint channels run in parallel — each returning a normalized margin in [0,1]. The binding constraint (minimum margin) drives all zone classification and decision logic. One architecture. Any constraint domain.

DecisionDeterministic

Four-Branch Safety Logic

Regime change override → Blocked → Escalate to Human → Certified with Warning → Certified. The same decision tree governs constellation allocations, portfolio trades, and AI tool calls. No probabilistic fallback.

AuditSHA-256

Deterministic Certificate Hashing

Every certification produces a tamper-evident SHA-256 hash over a canonical representation: pipe-delimited fields, IEEE 754 16-digit scientific notation, BTreeMap lexicographic ordering. Bit-identical across runs.

AdapterPolymorphic

Domain Adapter Trait

Each domain plugs into the kernel via a DomainAdapter trait — providing constraint channels, action-to-state mapping, and regime detection. The kernel never touches domain-specific types. New domains require zero kernel changes.

Autonomous systems are flying blind past their constraint boundaries

Every autonomous system — satellites, portfolios, AI agents — proposes actions against multiple safety constraints. Today, each domain builds bespoke validation from scratch. The result: fragmented tooling, non-deterministic outputs, and zero audit trails.

Constellation Ops

$15–40M/yr in custom software

Every mega-constellation operator builds proprietary constellation management from scratch. O(N²) solvers that break at scale. No shared architecture across the industry.

10,000+ satellites. Zero reusable infrastructure.
Financial Risk

Monte Carlo is the wrong tool

Statistical simulation introduces sampling variance, requires GPU clusters, and produces non-reproducible results. Regulators demand determinism. Current tools deliver probabilities.

423× slower. Non-deterministic. Not auditable.
Agentic AI Safety

No pre-execution safety layer exists

AI agents execute tool calls, API requests, and database mutations with no constraint evaluation before action. Post-hoc logging is not safety certification. The gap is structural.

Every uncertified action is unauditable liability.

One kernel. Three instantiations. Each domain gets its own constraint channels.

The same mathematical architecture — multi-channel constraint evaluation, binding-constraint decision logic, deterministic certificate hashing — adapted per domain via the DomainAdapter trait.

Production infrastructure. Not a prototype.

PostgreSQL persistence, Prometheus observability, CycloneDX SBOM, GPG-signed artifacts, and Stripe-hosted billing. Built for enterprise procurement, not demo day.

PersistencePostgreSQL

Fly.io PostgreSQL Backend

StorageBackend trait with async PostgreSQL implementation via sqlx and connection pooling. Gateway auth, usage tracking, and hash-chained audit trail all backed by Postgres 16. SQLite fallback for local development.

ObservabilityPrometheus

/metrics Endpoint

Circuit breaker state gauge, cache hit/miss counters, WebSocket active connections, rate limiter utilization, and certification duration histograms. Native Prometheus text format. Grafana-ready from day one.

Supply ChainSBOM

CycloneDX + GPG Signing

CycloneDX software bill of materials generated in CI. Release binaries GPG-signed. Docker image labels include SBOM reference. Meets enterprise security review requirements out of the box.

BillingStripe

Stripe-Hosted Checkout

Usage-based billing via Stripe-hosted checkout — lower PCI scope, automatic 3DS, dunning sequences. Free tier → usage threshold → upgrade email → Stripe Checkout → Pro activation. Webhook-driven tier management.

Self-serve API for agentic safety certification.

OpenAPI 3.0 spec. Developer portal with interactive sandbox, playground, and full documentation. Usage-based pricing — pay per certification, not per seat. Constellation and FinRisk domains are available via custom engagements.

Free
$0/month
Explore the platform. Build your integration. No credit card required.
  • 1,000 certifications/month
  • 10 requests/second
  • Full v2 API access
  • Interactive sandbox
  • Supplementary analysis included
  • Community support
Get Free Key →
Enterprise
Custom
Unlimited scale. Custom channels. SBOM. Signed artifacts. SLA.
  • Unlimited certifications
  • 1,000 requests/second
  • Custom constraint channels
  • CycloneDX SBOM + GPG-signed artifacts
  • Dedicated support engineer
  • On-premise deployment option
  • SLA guarantees
Contact Sales →
27
API Endpoints
OpenAPI
3.0 Specification
SHA-256
Key Hashing
$0.01
Per Certification

pip install qae-safety

BSL-1.1 licensed kernel and agentic adapter (converts to Apache 2.0 in 2032). Three lines to certify an AI agent action. Full type stubs for IDE autocomplete. Extend with custom constraint channels.

Python — Certify an Agent Action
from qae_safety import AgenticAdapter, certify_action

# Initialize with budget and rate limits
adapter = AgenticAdapter(budget_limit=100.0, rate_limit=50.0)

# Certify before execution
cert = certify_action(
    adapter,
    "send-email-42",
    "support-agent",
    deltas={"scope_score": 0.9, "sensitivity": 0.3}
)

if cert.decision == "Certified":
    execute_action()  # Safe to proceed
REST API — Portfolio Certification
# Certify a portfolio position change
curl -X POST https://api.qaesubstrate.com/api/v2/certify \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "portfolio": {
      "positions": [
        {"asset": "AAPL", "quantity": 1000},
        {"asset": "GOOGL", "quantity": 500}
      ]
    },
    "market_data": { ... }
  }'

# Returns: SafetyCertificate with decision,
# margins, binding constraint, SHA-256 hash
Python
pip install qae-safety
BSL-1.1 Kernel · BSL-1.1 Agentic · PyPI
Rust
qae-safety-kernel
BSL-1.1 License · crates.io
API
api.qaesubstrate.com
OpenAPI 3.0 · Swagger + Redoc

6,000+ live satellites. 50 orbital classes. 82 milliseconds.

Real constellation parameters. 19 constraint channels across spectrum, thermal, routing, multi-operator, UNOOSA sustainability, and link budget. Live failure injection and sub-millisecond recovery.

QAE Substrate — Constellation Solver Demo

Measured, not estimated

All benchmarks run on the production Rust engine with Criterion statistical validation. Real measurements, not theoretical projections.

MetricResultContext
Full Constellation Solve82 ms6,000+ live satellites (CelesTrak), 50 orbital classes, 6 RF bands (Ku/Ka/V), 8-core parallel
Failure Recovery0.6 msMid-constellation satellite failure, 3 affected classes re-solved incrementally
Combined Overlay19,584 satsLive Starlink + synthetic 10K constellation, all managed, all nominal
Parallel Speedup6.0×8-core Rayon work-stealing scheduler
Constellation Channels19 channels5 core + 2 routing + 3 multi-operator + 4 UNOOSA sustainability + 5 link budget — all parallel
Risk Channel Evaluation5 channelsMarket, credit, liquidity, concentration, regulatory capital — all parallel
Portfolio Certification< 50msFull 5-channel constraint evaluation, binding-constraint decision, certificate generation
vs. Monte Carlo423×Deterministic algebraic approach vs. statistical Monte Carlo simulation — same accuracy, no sampling variance
Agentic Certification5 channelsBudget, rate, scope, reversibility, data sensitivity — evaluated per agent action before execution
Supplementary AnalysisEnabledBinding constraint detection + barrier certificate verification in every v2 response. Opaque terminology.
Test Coverage1,600+1,200+ Rust + 400+ Python tests. All deterministic. CI pipeline: fmt → clippy → audit → test → integration → license check
Certificate HashingSHA-256Deterministic, pipe-delimited canonical form. BTreeMap ordering. Bit-identical across runs

18–24 months and $3–5M to replicate internally

QAE Substrate is a production Rust engine with patent-pending architecture, validated benchmarks, and full claim traceability across two domains. The alternative is building it yourself.

Internal Build
QAE Substrate
Architecture
Domain-specific, single-purpose
Domain-agnostic kernel with adapter trait (patent pending)
Constellation Scale
O(N²) — per node (industry standard)
O(|S|) — per topology class (patent pending)
Risk Certification
Custom compliance layer per domain
Up to 19-channel parallel evaluation, binding-constraint logic
Audit Trail
Ad hoc logging
Hash-chained SHA-256 certificates, tamper-evident
Time to Deploy
18–24 months R&D + hiring
Integration-ready engine
IP Protection
No defensible moat
145 claims across 3 provisionals

Deterministic safety certification. Three domains. One kernel.

Start with the free tier — 1,000 certifications/month, full API access, interactive sandbox. For enterprise licensing, acquisition, or strategic integration, talk directly to the founder.