Olyxee Logo
Olyxee ResearchCortexActive research

Olyxee Cortex.

Persistent organizational cognition infrastructure.

Olyxee Cortex is a next-generation enterprise cognition system designed to help AI systems maintain operational understanding, memory, coordination, and reasoning across long-running workflows.

Unlike traditional AI systems that primarily retrieve information from documents or databases, Cortex is focused on persistent organizational intelligence, enabling AI systems to continuously evolve their understanding of an organization over time.

Cortex is being designed as infrastructure for enterprise AI systems that require:

  • Operational continuity
  • Contextual memory
  • Workflow awareness
  • Coordinated reasoning
  • Persistent organizational understanding

The system explores how AI can move beyond isolated prompts and temporary sessions into continuously evolving enterprise intelligence systems capable of understanding operational history, organizational context, and long-horizon workflows.

Core research areas

  • Organizational memory systems
  • Persistent contextual reasoning
  • Multi-agent coordination
  • Workflow intelligence
  • Operational state understanding
  • Long-horizon AI reasoning
  • Enterprise cognition infrastructure

Potential capabilities

  • Persistent workflow memory
  • Operational context retention
  • Organizational reasoning graphs
  • Cross-system intelligence coordination
  • Enterprise memory synchronization
  • Context-aware execution systems
  • Long-running workflow intelligence
  • Multi-agent operational coordination

Cortex is not a chatbot platform.

It is a research and infrastructure initiative focused on building foundational cognition systems for enterprise AI operations.

Long-term vision

The long-term goal of Cortex is to support reliable enterprise AI systems capable of maintaining persistent organizational understanding across operations, workflows, teams, and enterprise infrastructure.

Current status

Olyxee Cortex is currently under active research and infrastructure development. Early access, research partnerships, and enterprise interest registrations will open soon.

A quick guide

For any team building AI products.

Most AI products forget everything the moment a session ends. For teams building agents, copilots, and automations, that means re-explaining the same context on every call and stitching memory together by hand. Cortex provides the shared, persistent memory layer your AI products read from and write to, so they understand your organization instead of starting over each time.

How you integrate Cortex

Cortex is a memory API your agents write to and read from. Install the SDK, store context as your systems change, then recall it at inference time so your AI reasons with continuity instead of a cold prompt.

1. Install and connect
npm install @olyxee/cortex

export OLYXEE_API_KEY="sk_..."
2. Write organizational context to memory
import { Cortex } from "@olyxee/cortex";

const cortex = new Cortex({ apiKey: process.env.OLYXEE_API_KEY });

await cortex.remember({
  scope: "org",
  content: "Acme moved to net-30 billing terms in Q2.",
  source: "billing-system",
});
3. Recall context inside your agent
const context = await cortex.recall({
  query: "What are Acme's current billing terms?",
  limit: 5,
});

const answer = await llm.chat({
  system: "Use the organizational context provided.",
  context,
  messages,
});

Scoped memory, multi-agent coordination threads, and long-horizon workflow state are part of the early access program. Register below to get an API key and the full reference.

Join the waiting list

Register interest for Cortex.

Register interest to receive updates on:

  • Early access programs
  • Research previews
  • Enterprise pilots
  • Infrastructure partnerships
  • Future API availability

We'll email a confirmation and reach out as Cortex programs open.