🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@fozikio/cortex-engine

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fozikio/cortex-engine

Portable cognitive engine for AI agents — storage, embeddings, memory, FSRS, and MCP server

Source
npmnpm
Version
0.10.0
Version published
Weekly downloads
51
121.74%
Maintainers
1
Weekly downloads
 
Created
Source

@fozikio/cortex-engine

npm version npm downloads GitHub stars License: MIT

Persistent memory for AI agents. Open source, LLM-agnostic, works with any MCP client.

cortex-engine demo — init, explore, serve

Star History

Star History Chart

What It Does

Most AI agents forget everything when the session ends. cortex-engine fixes that — it gives agents a persistent memory layer that survives across sessions, models, and runtimes.

  • Semantic memory — store and retrieve observations, beliefs, questions, and hypotheses as interconnected nodes
  • Belief tracking — agents hold positions that update when new evidence contradicts them
  • Two-phase dream consolidation — NREM compression (cluster, refine, create) + REM integration (connect, score, abstract) — modeled on biological sleep stages
  • Goal-directed cognitiongoal_set creates desired future states that generate forward prediction error, biasing consolidation and exploration toward what matters
  • Neuroscience-grounded retrieval — GNN neighborhood aggregation, query-conditioned spreading activation, multi-anchor Thousand Brains voting, epistemic foraging
  • Information geometry — locally-adaptive clustering thresholds that respect embedding space curvature, schema congruence scoring
  • Graph health metrics — Fiedler value (algebraic connectivity) measures knowledge integration; PE saturation detection prevents identity model ossification
  • Spaced repetition (FSRS) — interval-aware scheduling with consolidation-state-dependent decay profiles
  • Embeddings — pluggable providers (built-in, OpenAI, Vertex AI, Ollama) — no external service required by default
  • LLM-agnostic — pluggable LLM providers: Ollama (free/local), Gemini, DeepSeek, Hugging Face, OpenRouter, OpenAI, or any OpenAI-compatible API
  • Agent dispatchagent_invoke lets your agent spawn cheap, cortex-aware sub-tasks using any configured LLM. Knowledge compounds across sessions.
  • MCP server — 27 cognitive tools (query, observe, believe, wander, dream, goal_set, agent_invoke, etc.) over the Model Context Protocol

The result: personality and expertise emerge from accumulated experience, not system prompts. An agent with 200 observations about distributed systems doesn't need to be told "you care about distributed systems." It just knows.

Works with Claude Code, Cursor, Windsurf, or any MCP-compatible client. Runs locally (SQLite) or in the cloud (Firestore + Cloud Run).

Architecture

ModuleRole
coreFoundational types, config, and shared utilities
enginesCognitive processing: memory consolidation, FSRS, graph traversal
storesPersistence layer — SQLite (local) and Firestore (cloud)
mcpMCP server and tool definitions
cognitiveHigher-order cognitive operations (dream, wander, validate)
triggersScheduled and event-driven triggers
bridgesAdapters for external services and APIs
providersEmbedding and LLM provider implementations
binEntry points: serve.js (HTTP + MCP), cli.js (admin CLI)
publicBuilt-in web dashboard (served automatically with --rest)

Quick Start

npm install @fozikio/cortex-engine
npx fozikio init my-agent
cd my-agent
npx fozikio serve   # starts MCP server

Your agent now has 27 cognitive tools. The generated .mcp.json is version-pinned and platform-aware (Windows cmd /c wrapper handled automatically).

See the Quick Start wiki page for the full 5-minute setup.

Multi-Agent

npx fozikio agent add researcher --description "Research agent"
npx fozikio agent add trader --description "Trading signals"
npx fozikio agent generate-mcp   # writes .mcp.json with scoped servers

Each agent gets isolated memory via namespaces. See the Architecture wiki page for details.

Agent-First Setup

The fastest path: open an AI agent in an empty directory and say "set up a cortex workspace." The agent runs npx fozikio init, reads the generated files, and is immediately productive. See the Installation wiki page for the full guide.

Dashboard

cortex-engine ships with a built-in web dashboard. Start the REST server and open the URL in your browser:

npx fozikio serve --rest --port 3000
# open http://localhost:3000

The dashboard shows your agent's stats, threads, ops log, memories, concepts, and observations — no separate install required. It auto-detects its API from the same origin it's served from.

If auth is enabled (CORTEX_API_TOKEN), the dashboard loads without auth but API calls require a token. Set it via localStorage:

localStorage.setItem("cortex-settings", JSON.stringify({ token: "your-token" }));

Source: fozikio-dashboard

CLI

npx fozikio serve              # start MCP server
npx fozikio health             # memory health report
npx fozikio vitals             # behavioral vitals and prediction error
npx fozikio wander             # walk through the memory graph
npx fozikio wander --from "auth"  # seeded walk from a topic
npx fozikio maintain fix       # scan and repair data issues
npx fozikio report             # weekly quality report

Development

npm run dev       # tsc --watch
npm test          # vitest run
npm run test:watch

Environment Variables

VariableRequiredDescription
CORTEX_API_TOKENOptionalUsed by the cortex-telemetry hook to send retrieval feedback to the cortex API. Not required to run the MCP server.

Additional variables are required depending on which providers you enable (Firestore, Vertex AI, OpenAI, etc.). See docs/ for provider-specific configuration.

Rules, Skills & Agents

fozikio init automatically installs safety rules, skills, and agent definitions from the fozikio.json manifest into the target workspace.

Safety Rules (Reflex)

cortex-engine ships with Reflex rules — portable YAML-based guardrails that work across any agent runtime, not just Claude Code.

RuleEventWhat It Does
cognitive-groundingprompt_submitNudges the agent to call query() before evaluation, design, review, or creation work
observe-firstfile_write / file_editWarns if writing to memory directories without calling observe() or query() first
note-about-doingprompt_submitSuggests capturing new threads of thought with thread_create()

Rules live in reflex-rules/ as standard Reflex YAML. They're portable — use them with Claude Code, Cursor, Codex, or any runtime with a Reflex adapter. See @fozikio/reflex for the full rule format and tier enforcement.

Claude Code users also get platform-specific hooks (in hooks/) for telemetry, session lifecycle, and project board gating. These are runtime adapters, not rules — they handle side effects that the declarative rule format doesn't cover.

To customize: Edit the YAML rule files directly, or set allow_disable: true and disable them via Reflex config.

Skills

Skills are invocable workflows that agents can use via /skill-name.

SkillWhen to UseWhat It Provides
cortex-memoryQuery, record, and review workFull memory workflow — query/observe patterns, belief tracking, memory-grounded code review, session patterns

Agents

AgentDescription
cortex-researcherDeep research agent that queries cortex before external sources, observes novel findings back into memory

How Auto-Install Works

  • fozikio init reads fozikio.json from the package root
  • Copies hooks, skills, and Reflex rules into the target workspace
  • Missing source files are skipped with a warning — init never fails due to missing assets

Plugin Ecosystem

cortex-engine ships with 26 cognitive tools out of the box. Plugins add more: Fozikio Plugin Docs

PluginWhat It Adds
@fozikio/tools-threadsThought threads — create, update, resolve ongoing lines of thinking
@fozikio/tools-journalSession journaling — structured reflections that persist
@fozikio/tools-contentContent pipeline — draft, review, publish workflow
@fozikio/tools-evolutionIdentity evolution — track how the agent's personality changes over time
@fozikio/tools-socialSocial cognition — interaction patterns, engagement tracking
@fozikio/tools-graphGraph analysis — memory connections, clustering, visualization data
@fozikio/tools-maintenanceMemory maintenance — cleanup, deduplication, health checks
@fozikio/tools-vitalsVitals tracking — agent health metrics and operational signals
@fozikio/tools-reasoningCognitive reasoning — abstraction, contradiction detection, surfacing

Install any plugin: npm install @fozikio/tools-threads — cortex-engine auto-discovers and loads installed plugins.

Documentation

  • Wiki — Installation, architecture, plugin authoring, MCP integration, deployment, FAQ
  • Discussions — Ask questions, share what you've built
  • Contributing — How to contribute
  • Project Board — Roadmap and active work
  • Security — Report vulnerabilities

Community

  • @fozikio/reflex — Portable safety guardrails for agents. Rules as data, not code.
  • sigil — Agent control surface. Signals and gestures, not conversations.
  • fozikio.com — Documentation and guides

License

MIT — see LICENSE

Keywords

cortex

FAQs

Package last updated on 23 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts