Recover Codex project chats
- Version: 1.0.1
- License: MIT
- Author: Evan Song · github.com/Songhonglei
- Repository: https://github.com/Songhonglei/better-agent-skills/tree/main/skills/recover-codex-project-chats
Restore project visibility without overwriting the only copy of a conversation.
Workflow
- Run
scripts/codex_project_recovery.sh diagnose [csv-path]while Codex may remain open. Save the output. - Read
references/incident-patterns.mdand classify the evidence before changing data. - Back up current
~/.codex, the supplied backup, and Codex-related Application Support directories. Exclude only live Unix sockets. - Before any mutation, require Codex Desktop to be fully stopped. Confirm the app-server, renderer, and service processes are absent.
- Run SQLite
PRAGMA integrity_checkon copies first. Inspect.schema; never invent columns. - Apply only the matching repair:
- Provider mismatch: run
scripts/codex_project_recovery.sh repair-provider <old-provider> <current-provider>after explaining the evidence. Repair only when both names refer to the same compatible backend. - Missing assignments: rebuild
thread-project-assignmentsin.codex-global-state.jsonfrom actual thread IDs and cwd values. Preserve existing assignments. Resolve overlapping roots and temporary directories explicitly; do not rely solely on prefix matching. - Moved paths: create and review an old-cwd to current-project mapping before updating assignments or cwd metadata.
- Missing database rows: merge only from a schema-compatible backup after integrity checks and a trial on copies.
- Provider mismatch: run
- Run
scripts/codex_project_recovery.sh verifywhile Codex is stopped, then restart Codex and check each project in the UI. - Report root cause, backup paths, CSV rows, database rows, rollout files found, per-project visible counts, changed rows/files, and unrecovered thread IDs.
Safety rules
- Treat
state_5.sqliteplus WAL/SHM, rollout JSONL,.codex-global-state.json, and project metadata as one recovery set. - Do not edit a live SQLite database.
- Do not replace all of
~/.codexwhen a targeted repair is sufficient. - Preserve archived state unless the user explicitly requests unarchiving.
- Do not change provider metadata merely to make rows visible unless the configured provider is compatible with the original sessions. Prefer restoring the provider configuration when compatibility is uncertain.
- Keep every pre-repair backup until the user verifies the UI and can open representative chats.
Resources
scripts/codex_project_recovery.sh: read-only diagnosis, guarded provider repair, and verification.references/incident-patterns.md: known failure patterns, schema landmarks, and evidence tests.
Dependencies
- macOS with Codex Desktop or ChatGPT Desktop using the Codex runtime
- Zsh, SQLite 3, jq, ripgrep, rsync, and Perl
- Optional CSV snapshot or
~/.codexbackup for comparison