ObjectOS
Reference

Runtime Capabilities

Capabilities ObjectOS can load from ObjectStack framework packages.

Runtime Capabilities

ObjectOS loads a base runtime for every project and then installs optional capabilities declared by the application artifact.

Base runtime

The base project kernel includes:

  • ObjectKernel lifecycle and service registry;
  • ObjectQL data engine;
  • configured data driver;
  • metadata service;
  • application artifact registration;
  • authentication when OS_AUTH_SECRET is configured;
  • security plugin for RBAC, row-level security, and field security;
  • i18n service.

Optional capabilities

Artifacts can declare capabilities in their requires list. ObjectOS loads matching framework packages when present in the image.

CapabilityPackagePurpose
automation@objectstack/service-automationFlow/DAG execution and automation nodes
ai@objectstack/service-aiLLM adapters, conversations, tools, SSE routes
analytics@objectstack/service-analyticsCubes, analytics queries, reporting data
audit@objectstack/plugin-auditAudit log object and audit trail
cache@objectstack/service-cacheCache abstraction and adapters
storage@objectstack/service-storageFile/object storage service
queue@objectstack/service-queueQueue abstraction and workers
job@objectstack/service-jobScheduled/background jobs
realtime@objectstack/service-realtimeWebSocket and pub/sub realtime
feed@objectstack/service-feedComments, reactions, subscriptions, activity feed
settings@objectstack/service-settingsSettings manifests and K/V resolver

If a capability is requested but the image does not include the package, ObjectOS logs a warning and continues running with that capability disabled. This is intentional — it keeps the runtime bootable even when an optional package is missing during development — but in production it is a real risk:

  • An audit-required app loaded into an image without @objectstack/plugin-audit will start up cleanly and write no audit log. Compliance evidence will be missing without any error.
  • A job-driven app loaded into an image without @objectstack/service-job will start up cleanly and silently never run scheduled work.

Production checklist:

  1. Treat capability warnings as deployment failures. Grep startup logs for capability not loaded (or your equivalent) and fail the readiness probe / rollout if any appear.
  2. Pin the runtime image to one that includes every package your artifacts declare in requires.
  3. When publishing an artifact, document its requires list alongside it so operators can verify the matching image.

API surface

ObjectOS commonly exposes:

  • generated REST APIs;
  • auth endpoints under /api/v1/auth/*;
  • metadata and i18n endpoints;
  • service endpoints for enabled capabilities.

GraphQL and OData are framework-level capabilities and should be documented as supported only when included and enabled by the deployed runtime package.

On this page