Skip to content
Project

Capabilities

What the platform can do, grouped by area, with the live state of each capability in this project.

Area

Core model

CapabilityStatusWhat it does
ModulesOperationalNamed groups of entities that own their schema and every contract that touches it.
InstancesOperationalEvery module key identifies one isolated store, one work queue, and one lifecycle.
ValidationOperationalTyped boundaries turn malformed values away before state or a handler is reached.
ExecutionOperationalOne call at a time per instance, so every keyed store runs its work in order.

Data

CapabilityStatusWhat it does
SchemaOperationalExported table values give each module the private shape and indexes it reads through.
DurabilityOperationalCommitted changes append to a durable history and batch into object storage.
SearchOperationalModule-owned indexes keep searchable documents aligned with committed state.

Contracts

CapabilityStatusWhat it does
QueriesOperationalRead-only contracts run against committed state and stay live while a caller subscribes.
ActionsOperationalWrite contracts run against one instance and may call other instances inside one commit.
EventsOperationalTyped committed messages fan out to subscribed callers and to instance consumers.
External effectsWatchingA third-party call runs through an explicit boundary with idempotency and compensation.

Orchestration

CapabilityStatusWhat it does
QueuesWatchingDurable per-instance work, with batching, order, retries, and dead letters.
WorkflowsOperationalDurable procedures that sleep, wait, resume, and survive a runtime restart.
SchedulesOperationalIntervals, cron rules, and one-shot calls invoke a contract per instance.

Platform

CapabilityStatusWhat it does
RuntimeOperationalEach active instance executes inside a runtime bounded by the permissions it was granted.
ObservabilityOperationalLogs, traces, and lifecycle records carry the instance they came from.
LimitsWatchingExecution, state, payload, queue, and workflow budgets protect shared capacity.

Scale

CapabilityStatusWhat it does
PlacementOperationalA home moves toward the traffic calling an instance, and its identity never moves.
ServersOperationalAdding a regional server adds capacity, homes, and local read coverage.
ReplicationOperationalReadable replicas form near read traffic and follow the home's committed writes.
Cross-instance callsOperationalAn imported contract crosses an instance boundary and joins one nested transaction.

Delivery

CapabilityStatusWhat it does
Deployments and releasesOperationalAn immutable release of a whole application moves through admission into an environment.
StorageConfiguredOne object store for the project holds compacted state and write-ahead logs.

23 capabilities on this platform