Fork of OpenAI's Codex CLI with a few additions:
- Subagents: Main session spawns specialized agents for exploration, execution, or research. Each streams in its own pane so you can watch tool calls and diffs in real-time.
- Persistent memory: Agent extracts knowledge from file reads, commands, and failures. Stores in SQLite per-project. Lessons and decisions never decay; other memories fade if unused.
- Live settings: Change config while the agent is mid-response. No need to restart the session.
- Codebase indexing: Integrates with sgrep for semantic search. Index builds in background, agent uses it for ranked code lookups.
Storage lives in .kaioken/memory/. Install via npm i -g @jayasuryajsk/codex-kaioken.
austinbaggio•1mo ago
How are you finding it as context grows? I've been thinking a lot about the storage part of this - getting context to agents, temporal and semantic search, going as complex as graph implementations. . . overkill?
j34nsh33•1mo ago
subagents are new instances of codex-kaioken. So each subagent gets full context and finally summarize work/findings and the main orchestrator will continue from there.
j34nsh33•1mo ago