Context-native runtime β€’ Open-core (CE + Enterprise)

Shared context for AI, apps, workflows, and operations. Not just storageβ€”stateful reasoning and reaction across systems.

Context Engine gives teams a live context layer where scoped memory, rules, triggers, and event-driven orchestration work together. Instead of stitching a database, cache, vector store, and workflow logic by hand, you get one runtime for contextual continuity and adaptation. Start in Community Edition for fast pilots and single-node production, then move to Enterprise when you need scale, compliance, and operational guarantees.

Licensing: Server CE (AGPL), SDKs (Apache-2.0), Enterprise (Commercial).
Context Engine model in one view
Signals: events, records, telemetry, user actions
↓
Context Engine: scoped state + relationships + rules/triggers + memory timeline
↓
Outcomes: orchestration decisions, workflow updates, agent prompts, system actions
  • βœ… Built for context propagation across modules, tools, and environments
  • βœ… Event-driven rules and scoped memory for adaptive behavior
  • βœ… Enterprise deployment options when this layer becomes mission-critical

What makes Context Engine different

Context Engine works with your databases, brokers, and workflow toolsβ€”but solves a different problem: maintaining shared contextual state and reacting to changes across scopes, actors, and systems.

Not just a database

Databases store records. Context Engine maintains scoped relationships, continuity, and policy-aware transitions as state evolves.

Not just a vector store

Vectors help retrieve meaning. Context Engine combines retrieval with active rules, timelines, and triggerable decisions.

Not just workflow automation

Workflow tools run steps. Context Engine keeps shared memory and conditions consistent across many workflows and actors.

Not just an event bus

Buses move messages. Context Engine interprets events against live context so every event can produce context-aware actions.

From Runtime to Product in 5 Lines: Patterns

Core is generic, but we ship opinionated helpers for common architectures. Like Redis for caching, Context Engine has its killer patterns.

USED BY ROBO MEISTER

Pattern #1: Task Board (Actorless Claim-based Execution)

Publish actorless workflows with goal + context + required capabilities to a shared Task Board. Services subscribe and atomically claim tasks if their capabilities match. No hardcoded routing.

View SDK helper β†’
Coming

Pattern #2: Digital Twin Merge

Merge sensor streams into live position map. Used by Robo Assistant for fleet/warehouse.

Coming

Pattern #3: Saga / Compensation

Long-running workflows with compensations.

Task Board: The Cache Pattern for Context Engine

All layers in Robo Meister share one Task Board. Robo Connector publishes actorless business goals. FlowBeacon AI (AI Network) and Robo Assistant (LAN/Fleet) claim tasks based on capabilities.

[Robo Connector publishes goal] -> [Context Engine = Task Board: goal + context + capabilities] -> [FlowBeacon AI claims AI tasks, Assistant claims physical] -> [Result + telemetry back to CE]

[Robo Connector publishes goal]
[Context Engine = Task Board: goal + context + capabilities]
[FlowBeacon AI claims AI tasks, Assistant claims physical]
[Result + telemetry back to CE]
JS
// Publisher
await ce.board('business-goals').publish({
  goal: 'process-invoice',
  context: { tenantId: 'acme' },
  capabilities: ['ocr','accounting:post'],
  payload: { invoiceUrl: 's3://...' }
})

// Subscriber - FlowBeacon AI
await ce.board('business-goals').claim(
  { capabilities: ['ocr'] },
  async (task) => {
    const result = await aiNetwork.run(task)
    await ce.board('business-goals').complete(task.id, result, { cost: 0.02 })
  }
)
Python
# Publisher
await ce.board('business-goals').publish({
    'goal': 'process-invoice',
    'context': {'tenantId': 'acme'},
    'capabilities': ['ocr', 'accounting:post'],
    'payload': {'invoiceUrl': 's3://...'}
})

# Subscriber - FlowBeacon AI
async def handle(task):
    result = await ai_network.run(task)
    await ce.board('business-goals').complete(task.id, result, {'cost': 0.02})

await ce.board('business-goals').claim({'capabilities': ['ocr']}, handle)

Under the hood: 3 Lua scripts executed atomically in Redis β€” board_publish.lua, board_claim.lua, board_complete.lua β€” via Java API /board/{board}/publish|claim|complete. C microserver unchanged.

Where teams use Context Engine

Use Context Engine when decisions depend on evolving state across systemsβ€”not just isolated events or static records.

AI workflow orchestration

Maintain shared memory across agents, tools, and approval steps so outputs remain coherent over long-running tasks.

Business process adaptation

Trigger policy-aware path changes when risk, regulations, or customer status shifts mid-process.

Contextual automation

Drive automation from contextual state transitions instead of brittle point-to-point if/else integrations.

Event-driven state tracking

Convert event streams into durable operational context that supports investigation, replay, and controlled remediation.

Cross-system continuity

Keep state synchronized across apps, APIs, humans, and devices with scoped context propagation.

Robotics and edge operations

Coordinate physical and digital signals with memory-aware rules for adaptive field behavior and exception handling.

Inside Robo Meister: Reference Implementation

Robo Meister is the biggest production implementation of Task Board pattern. Like Redis is a data structure server but won with caching helpers, and Elasticsearch is Lucene but won with search() β€” Context Engine is a context-native runtime but wins with Task Board pattern.

Robo Connector

Company / Internet β€” Defines 90% of main workflows, publishes actorless goals to CE Task Board.

Explore Robo Connector β†’

FlowBeacon AI (AI Module)

AI Network β€” Orchestrates AI resources, claims tasks requiring OCR, classification, voting. Formerly /solution/ai-module, now at ai.robo-meister.com.

Explore FlowBeacon AI β†’

Robo Assistant

LAN / Fleet / Digital Twin β€” Local LAN via Hub/Router, fleet management, position mapping and sensor merge into digital twin map.

Start with CE, scale with Enterprise

Community Edition is ideal for adoption, experimentation, and single-node production. Enterprise adds the operational guarantees needed when your context layer becomes core infrastructure.

Always-On Clustering

Elastic sharding, consensus replication, automatic failover, and rolling upgrades that keep contextual decisions online.

Security & Compliance

SSO, KMS, tamper-evident audit, retention policies, and legal hold for regulated context flows.

Distributed Indexing & Retrieval

Route semantic and key-based queries across shard-local indexes with hybrid BM25+ANN ranking and freshness controls.

Durable Storage & Recovery

Tiered storage with S3/GCS offload, PITR backups, and cross-region DR for mission-critical contextual continuity.

Simple, scalable pricing

Community

Free β€’ Open Source

Perfect for dev, pilots, and single-node production.

  • βœ… Single-node engine (KV + vector)
  • βœ… Rules & webhooks
  • βœ… Admin UI (essentials)
  • βœ… Snapshots & manual restore
  • βœ… Prometheus metrics
Download CE
Enterprise

Custom β€’ Commercial

For teams that need scale, compliance, and SLA.

  • βœ… Clustering, sharding & consensus replication
  • βœ… Distributed vector indexing & hybrid search
  • βœ… Tiered storage with S3/GCS offload
  • βœ… SSO (SAML/OIDC), ABAC & policy editor
  • βœ… BYOK/KMS, tamper-evident audit
  • βœ… PITR & cross-region DR
  • βœ… Enterprise connectors & premium observability
Request Enterprise
Typical structure: per-node + usage. Startup-friendly plans available.

Feature comparison

Capability Community Enterprise Notes
APIs & SDKs (JS/Python/PHP/Go)βœ…βœ… + batching/multiplexSDKs Apache-2.0
KV + Vector index (HNSW)βœ…βœ… + distributed/hybridHybrid BM25+ANN routing in EE
Rules & triggers, webhooksβœ…βœ… + DAG/compensationsOrchestration in EE
Admin UIβœ… (essentials)βœ… + inspector & replayPolicy editor in EE
Clustering, sharding & consensus replicationβ€”βœ…HA + RAFT, rolling upgrades
Zero-downtime upgradesβ€”βœ…
Tiered storage & cloud offloadBasic snapshotsβœ… (S3/GCS, lifecycle)Hot/warm/cold tiers
RBACβœ…βœ… + ABACRow-level scopes
TLS & at-rest encryptionβœ…βœ… + BYOK/KMSKey rotation in EE
SSO (SAML/OIDC)β€”βœ…
Audit & lineageBasic logsβœ… (tamper-evident)Retention & legal hold
Data residency / air-gappedβ€”βœ…
BackupsManual snapshotsβœ… (PITR + scheduled)
Disaster recoveryβ€”βœ… (cross-region)
ConnectorsPostgres, HTTP, Files+ Kafka, S3/GCS, Snowflake, Elastic, Dynamics, SAPPacks available
MetricsPrometheus (basic)Dashboards & SLOsOTel tracing in EE
Offline cache & syncBasicCRDT/OT mergesSelective sync
SupportCommunitySLA + architectsLTS branches
Need a specific control (e.g., SOC 2, GDPR, HIPAA)? Ask usβ€”compliance pack options are available.

Request Enterprise

Tell us a bit about your team and requirements. We’ll follow up with a tailored plan.

Or email us: sales@robo-meister.com

By submitting, you agree to our terms & privacy. We never sell your data.