What ships on this platform

Nine products. One compiler. One database. One protocol.

90%

of every product is the shared Elastic Platform kernel.

Each product adds ~10% of domain-specific logic as a DSM plugin. The compiler, database, protocol, GUI, AI fleet, auth, and infrastructure are inherited — not rebuilt. See the detailed breakdown →

🏗

Enterprise-grade infrastructure — even for consumer apps.

Every product, whether it is a $3.99/mo voice assistant or a business CRM, runs on the same compiler, encrypted database, and binary protocol. We do not cut corners for consumer pricing — the same security, reliability, and performance stack ships everywhere.

📱

Apps for every platform: Windows, Linux, macOS, Android, iOS.

Desktop apps currently ship on CEF (Chromium Embedded Framework) as a temporary bridge. EPL desktop applications have been running natively on Windows and Linux for years through our own GUI widget system (90+ widgets). Once the self-compilation system is complete, all apps will be ported from CEF to pure EPL widgets — removing the last C++ dependency. We chose not to invest further in the C++ desktop wrapper when the EPL-native path is already proven and the self-compiler will make it universal.

HOW WE BUILD
Business Requirements System Design Detailed Spec Impl Spec Acceptance Testing System Testing Spec Compliance Unit Tests SPECIFICATION VERIFICATION 20 AI Agents $500K–$2M · 12–18mo $5K–$50K · Days–Weeks

The V-model: real engineering, not just coding

We follow the V-model — the same systems engineering discipline used in aerospace, automotive, and medical devices. Every feature starts with business requirements, goes through system design and detailed specification, then is verified at every level back up.

Because we own the full stack, the V-model works end-to-end: from business requirement to compiled machine code to database schema to encrypted protocol to GUI widget — every layer is specified, implemented, and verified as one system.

20 AI agents sit at the bottom of the V, executing implementation and unit testing at machine speed. What used to cost $500K–$2M and 12–18 months now costs $5K–$50K and takes days to weeks. The V-model is what makes this possible — AI needs structure to be effective, and we give it the best structure engineering has.

At a glance
9
products shipping
on one platform
14
years of production
engineering
0
external
dependencies
87%
gross margin
on paid tiers
Why we built our own everything

Every SaaS company rents a tower of infrastructure. We eliminated the glue.

PostgreSQL for data. Redis for cache. S3 for files. Pinecone for AI vectors. Node.js for logic. React for UI. Each layer has its own language, failure modes, vendor, and bill. 70% of engineering time goes to gluing these layers together. We built one platform that does all of it.

Component 1

EPL — The Language

EPL compiles to native x64 machine code — same speed as C++. But it has things no general-purpose language has.

Database at language level

No ORM. No SQL strings. INSERT User INTO Users is a compiled, type-checked, encrypted database write. One line. Checked at compile time, not 3am in production.

Protocol built in

No Express server. No WebSocket config. No TLS certificates. Write Send(data) — it arrives encrypted on the other end. One connection, everything multiplexed.

90+ GUI widgets

Desktop, web browser, thin client, mobile — same code. Not React on one side and Swift on the other. One language, every screen.

Spatial math native

We ported a 120,000-line C++ ray tracer to 15,000 lines of EPL. Same quality. 8x less code. That reduction compounds across every product. Read the Aurora case study →

Component 2

Orion DB — Five Databases in One Binary

Not PostgreSQL with a plugin. A new thing — one process that replaces PostgreSQL + Redis + S3 + Pinecone + MongoDB.

Hierarchical

Data is a tree — like a file system. Organizations contain projects, projects contain tasks. No JOINs. Navigate directly. A voice command writes to 4 partitions in one tree traversal.

Replaces PostgreSQL

Transactional

Full ACID. Per-page AES-256 encryption — every page encrypted at rest with its own key. Four partition writes = one atomic transaction. Either all succeed or none.

Replaces Redis

File System

Documents, email attachments, git repos, photos — in the same tree as structured data. No separate S3 bucket. The receipt photo and the parsed budget entry are siblings in one node.

Replaces S3

RAG Store

Embeddings, conversation history, AIRecords — in the same tree as business data. AI reads live data at 9:01, not a stale Pinecone copy synced last night. Zero lag.

Replaces Pinecone

NoSQL-Fast

No schema migrations. No ALTER TABLE downtime. Add a field — it exists. Voice assistant responses under 200ms. Tree traversal is O(depth), not O(rows).

Replaces MongoDB

6 → 1

Six services → one process.
Six bills → one.
Six sync problems → zero.

Component 3

TProtocol — One Connection, Everything Encrypted

Binary network protocol. RSA key exchange + AES-256 symmetric encryption. Multiplexed streams over a single connection. No API gateway. No TLS terminator. No CORS. No REST versioning.

🔒

End-to-end encrypted

RSA handshake + AES-256. Every byte encrypted. Not bolt-on TLS — native to the protocol.

Multiplexed

File uploads, queries, push notifications, AI responses — all on one connection. No HTTP overhead.

🌐

Every client type

Desktop, browser WASM thin client, mobile, email, git — one protocol serves all.

Component 4

DSM — The Data Structure Manager

DSM is the service layer that runs everything. It manages Orion DB, handles all business logic, runs plugins, manages user sessions, and orchestrates the AI fleet. Think of it as the kernel of the operating system — every product talks to DSM, and DSM talks to Orion DB.

Plugin architecture

Dynamic command allocation. Hot-loadable plugins. Each product (Mail, Git, Tables, AI) is a DSM plugin with its own command range. Add a product = add a plugin. No restart needed.

Multi-tenant isolation

Organizations, users, partitions, credentials — all managed by DSM. Per-org data isolation. One DSM instance serves hundreds of tenants. Docker containers with cgroup caps for cloud hosting.

Process supervisor

SrvOperation Runner manages all processes — DSM, HSRV, mail server, AI workers. Auto-restart on crash. Health checks. Staged startup (DSM first, then HSRV +35s, then mail +50s). Production-grade since 2018.

Component 5

HSRV — Pure-EPL HTTP Server

Not nginx. Not Apache. Not Express. A web server written entirely in EPL that serves all our websites, APIs, WebSocket connections, and the thin client. It speaks HTTP, HTTPS, WebSocket, and TProtocol — all from one process.

Template engine + SPA serving

Server-side rendering with EPL templates. Static file serving. Virtual hosts. The same HSRV serves elastcode.com, elastbiz.com, app.elastbiz.com, and every customer workspace.

WebSocket + real-time push

Real-time updates for chat, AI responses, voice assistant, collaborative editing. No separate WebSocket server — built into the same process that serves HTTP.

Component 6

GUI Framework — One Code, Every Screen

Not just widgets. A complete application framework with OpenGL rendering, event system, layout engine, theming, and cross-platform deployment. The same EPL code runs as a desktop app, a web app (WASM thin client), or a mobile app (CEF wrapper with native voice).

🖥

Desktop

Windows, macOS, Linux. Native binary with OpenGL rendering. Full widget set.

🌐

Web (WASM Thin Client)

Full desktop GUI in the browser via WebAssembly. Remote rendering over TProtocol. Zero install.

📱

Mobile

CEF wrapper with native voice recognition (on-device STT/TTS), biometric auth, Health Connect integration.

Component 7

AI Fleet — Self-Hosted, Any Model

Multi-model AI workers (Claude, Qwen, local LLMs) managed by the platform. Self-hosted Whisper (STT) + Piper (TTS) for voice. RAG reads Orion DB live — not a stale copy. Billing at Anthropic cost + 20%.

20 AI agents building 24/7

Not one assistant — an entire AI workforce. Coordinator, engineers, specialists. Running on our hardware, billing our customers, using our platform's MCP tools.

Voice pipeline

Whisper STT + Piper TTS, self-hosted. On Android: on-device voice recognition (zero latency, zero cloud cost). The voice assistant sends text, not audio — one HTTPS POST per command.

The integration advantage

EPL and Orion DB are married at the compiler level.

  • Compile-time schema checking. Type errors caught before code runs — not at 3am in production.
  • Zero serialization. Object in memory IS the object on disk. No ORM, no JSON.parse(), no translation.
  • AI reads live objects. Same compiled object the app reads — not a JSON export. Same data, same moment.
  • One transaction spans everything. Voice command → 4 partitions + AIRecord + push notification = one atomic unit.

This is why one voice command can write to four partitions atomically, the AI reads all four immediately, and the response goes back encrypted — in under 200 milliseconds.

Unit economics

One platform. Compounding margins.

$0.002
infrastructure
per user / month
30K
free users per
$70/mo server
76–87%
gross margin
on paid tiers
5K
free users to
break even (3%)

Our competitors add a product by hiring a team and renting more AWS. We add a product by writing EPL. Every new product reuses the same compiler, Orion DB, and TProtocol. R&D is shared. Infrastructure is shared. The margin compounds.

Roadmap

Three milestones

M1 — Now

The Product

Elastcode Home on Google Play + all desktops. BizOS suite live. Spark app builder. Replaces 8 consumer apps for $3.99/mo. Replaces Monday+Slack+Gmail for $50/mo.

M2 — Next

The Network

Friend connections, voice messages, mutual reminders, split expenses. Viral loop: invite → they get their own assistant → they invite. Utility-first social — not feeds, not ads.

M3 — After

The Platform

Communities by interest. Neighborhood protection (Watchcam). Crowdsourced prices from receipt data. Collective intelligence from individual data. The moat no one can copy.

The wall

14 years is not a cost. It's a moat.

A well-funded competitor starting today with 50 engineers could maybe replicate the compiler in 3 years. Then they need Orion DB. Then TProtocol. Then the GUI framework. Then the AI fleet. Then the 14 years of production bugs we've already found and fixed.

Or they could rent PostgreSQL and Node.js like everyone else. Which is exactly what they'll do. Which is exactly why they'll always be gluing, and we'll always be building.

Market
$28B
personal assistant
market by 2035
$150B
business tools
market
EU
Cyprus · GDPR native
EIC Accelerator applicant
Get in touch

The question isn't whether the technology works. The question is: how many products can one platform support?

We think the answer is: all of them.

Elastcode Ltd · Cyprus · Founded 2010 · Michael Korneev, CEO & Founder