Back to browse
GitHub Repository

Local context manager for Claude Code and Codex with workstreams, transcript binding, and branching.

124 starsPython

Ctx – a /resume that works across Claude Code and Codex

by dchu17·Apr 20, 2026·72 points·28 comments

AI Analysis

●●SolidNiche GemBig Brain

Cross-agent workstreams with exact transcript binding beat native /resume.

Strengths
  • Exact transcript binding prevents drift when resuming old conversations.
  • Safe branching lets you split workstreams without hijacking source context.
  • Local SQLite storage means no API keys or hosted service dependencies.
Weaknesses
  • Only useful if you actively use both Claude Code and Codex regularly.
  • Zero stars and forks suggests limited community adoption so far.
Target Audience

Developers using multiple AI coding agents

Similar To

Claude's /resume · Codex sessions · Mem0

Post Description

ctx is a local SQLite-backed skill for Claude Code and Codex that stores context as a persistent workstream that can be continued across agent sessions. Each workstream can contain multiple sessions, notes, decisions, todos, and resume packs. It essentially functions as a /resume that can work across coding agents.

Here is a video of how it works: https://www.loom.com/share/5e558204885e4264a34d2cf6bd488117

I initially built ctx because I wanted to try a workstream that I started on Claude and continue it from Codex. Since then, I’ve added a few quality of life improvements, including the ability to search across previous workstreams, manually delete parts of the context with, and branch off existing workstreams.. I’ve started using ctx instead of the native ‘/resume’ in Claude/Codex because I often have a lot of sessions going at once, and with the lists that these apps currently give, it’s not always obvious which one is the right one to pick back up. ctx gives me a much clearer way to organize and return to the sessions that actually matter.

It’s simple to install after you clone the repo with one line: ./setup.sh, which adds the skill to both Claude Code and Codex. After that, you should be able to directly use ctx in your agent as a skill with ‘/ctx [command]’ in Claude and ‘ctx [command]’ in Codex.

A few things it does:

- Resume an existing workstream from either tool

- Pull existing context into a new workstream

- Keep stable transcript binding, so once a workstream is linked to a Claude or Codex conversation, it keeps following that exact session instead of drifting to whichever transcript file is newest

- Search for relevant workstreams

- Branch from existing context to explore different tasks in parallel

It’s intentionally local-first: SQLite, no API keys, and no hosted backend. I built it mainly for myself, but thought it would be cool to share with the HN community.

Similar Projects