cortextOS Multi-Agent Coding Orchestration System
Needs source verification before treating this as a recommendation.
TL;DR
cortextOS is a personal agentic orchestration system built by James Goldbach that enables developers to run OpenAI Codex and Anthropic Claude Code in a unified, synchronized configuration. It introduces conventions — a shared agents.md instructions file, a /duplicate slash command for porting skills between harnesses, and external markdown-based memory — to prevent the two AI coding agents from drifting out of sync. Running multiple AI coding agent harnesses (Codex and Claude Code) in parallel creates config drift: separate instruction files, incompatible skill storage locations, and diverging memory mechanisms. cortextOS solves this by establishing a single canonical config layer and cross-agent memory strategy that both harnesses can consume without duplication.
What it actually is
- What: cortextOS is a personal agentic orchestration system built by James Goldbach that enables developers to run OpenAI Codex and Anthropic Claude Code in a unified, synchronized configuration. It introduces conventions — a shared agents.md instructions file, a /duplicate slash command for porting skills between harnesses, and external markdown-based memory — to prevent the two AI coding agents from drifting out of sync.
- Who built it / maintained by: James Goldbach (independent creator, a.k.a. agentic.james), distributed via his Skool community
- Status: unknown
- Why it matters: Running multiple AI coding agent harnesses (Codex and Claude Code) in parallel creates config drift: separate instruction files, incompatible skill storage locations, and diverging memory mechanisms. cortextOS solves this by establishing a single canonical config layer and cross-agent memory strategy that both harnesses can consume without duplication.
- How it compares to alternatives:
- OpenAI Codex CLI
- Anthropic Claude Code
- Aider
- Continue.dev
- Cursor
- Cline
- GitHub stars: 0 · License: unknown · Archived: no
Links
- (no links found)
Kickstarter guide
cortextOS is not publicly available as an open-source repo; access is through James Goldbach's Skool community (link in his Instagram bio @agentic.james). The core conventions can be adopted independently: create an agents.md as your canonical instructions file and import it into CLAUDE.md, store skills in .agents/ and .claude/ folders respectively, add a /duplicate slash command to port skills between harnesses, and use plain external markdown files (or a vector DB / knowledge graph) for shared cross-agent memory. Following these patterns gives you the essential cortextOS workflow without the full system.