Anyone else using both Codex and Claude Code and tired of keeping project context in two places? #26397
Replies: 1 comment 3 replies
-
|
This is close to the problem that led me to build TaskState Vault. The approach is to keep project state outside either assistant: account/domain/project/task/run layers, stable project intent, task state and next actions, evidence/artifacts/errors, and SQLite/JSONL indexes. Relevant long-lived information can be copied into the current task scope with a pointer back to its source, so the active tool does not need the entire history. I am already using it with Codex and it has solved part of the duplication problem for me. It includes a Codex usage guide and an MCP-ready adapter, but Claude Code integration is not packaged yet, so I would not claim it is a complete cross-tool solution today. I would genuinely value your take on whether this data model matches what you mean by a shared, tool-neutral project memory, especially which information should remain global and which should be copied into each task. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I bounce between Codex and Claude Code depending on the task, and the thing that quietly wears on me is that each one has its own notion of project memory. The conventions I taught one don't exist in the other, so I end up maintaining two versions of basically the same context and they drift apart over time.
I get why it's like this, the tools are separate products. But from where I sit as a user, the project is the same project and the decisions are the same decisions no matter which assistant I happen to open.
Wondering if others run a multi-tool setup like this, and how you cope. Do you keep a single source-of-truth file you paste into both, symlink something, or just accept the duplication? Is a shared, tool-neutral project memory something people would actually want, or am I the only one bothered by this?
Beta Was this translation helpful? Give feedback.
All reactions