System Architecture v1.0

LOCUS

The first Digital Symbiote for static content.

Acquire License

Symbiote Active

The End of Middleware

Consultants sold you a shopping list of leaks: scrapers, vector databases, and sync engines. They charged you monthly rent to store data you already publish.

Locus is different. It is a client-side symbiote. It lives on the page. When a user visits, Locus reads the Live DOM instantly. It knows what the user sees, exactly when they see it.

// LEGACY RAG STACK (Slow)
Scraper -> Vector DB -> Embeddings -> Query -> Inference
Latency: 2.5s | Cost: $500/mo
// LOCUS SYMBIOTE (Instant)
Live DOM -> Diamond Constraint -> Inference
Latency: 0.4s | Cost: $0/mo

Sovereignty Pricing

We do not believe in rent. Buy the code. Own the engine.

Indie License

$5,000

Internal Use Only.

  • • Indie Toolkit Files
  • • 1 Internal Project
  • • 10 File Download Data Cap
  • • Perpetual Use License
  • "Starter tier for individuals."
Initialize
Recommended

Agency License

$25,000

Client Integration.

  • • Indie + Agency Toolkit
  • • Up to 10 Client Projects
  • • White-Label Integration
  • • Reseller Rights Included
  • "For consultants & teams."
Initialize

Enterprise License

$100,000
$4k Deposit • Escrow Protected

Full Source Code.

  • Full Source Code Access
  • • Unlimited Deployments
  • • Engineering Documentation
  • • Modification Rights
  • "Own the engine."
Start Escrow

Extensibility

Modular Architecture.

Locus is not just a script; it is a runtime. Extend your agent's capabilities with "Cartridges"—modular JSON payloads injected via secure environment variables.

01 // JSON Cartridges

Simple Payloads

Define new behaviors, styles, or secret content using standard JSON. No complex build steps or compilation required.

02 // Secret Injection

Cloudflare Secrets

Store your cartridges as Environment Variables (CART_NAME). The Locus Worker automatically discovers and serves them.

03 // Hot Swappable

Zero Deployment

Update your agent's logic instantaneously. Change a secret, and the new behavior is live across your entire fleet.

# Example Cartridge Definition (Cloudflare Secret)
CART_MATRIX_MODE = {
"trigger": "enter the matrix",
"content": "<style>body { filter: invert(1); }</style>"
}