Install
$ agentstack add skill-sidiangongyuan-codex-skills-library-codex-session-restore ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Codex Session Restore
Use the bundled script first. It is dry-run by default and writes nothing unless --apply is present.
Provider Direction Rule
Set --provider to the provider that Codex Desktop should recognize now, not automatically to the provider that originally created the sessions.
- If the user switched from krill/custom to official OAuth and wants old active
sessions to appear under the current official login, use --provider openai.
- If the user explicitly wants to switch the environment back to krill and make
sessions belong to krill, use --provider krill.
- Do not edit
config.toml,auth.json, or cc-switch's current provider just
to restore sidebar visibility. Changing current auth/provider is a separate user request.
Quick Start
Resolve ` to the directory containing this SKILL.md`; do not assume a particular global skills installation root.
Restore old krill sessions into the current official/OAuth sidebar:
python "/scripts/restore_codex_sessions.py" scan --provider openai
python "/scripts/restore_codex_sessions.py" repair-active --provider openai
python "/scripts/restore_codex_sessions.py" repair-active --provider openai --apply --yes
python "/scripts/restore_codex_sessions.py" verify --provider openai
Repair one thread:
python "/scripts/restore_codex_sessions.py" scan-thread --thread-id THREAD_ID --provider openai
python "/scripts/restore_codex_sessions.py" repair-thread --thread-id THREAD_ID --provider openai
python "/scripts/restore_codex_sessions.py" repair-thread --thread-id THREAD_ID --provider openai --apply
python "/scripts/restore_codex_sessions.py" verify --thread-id THREAD_ID --provider openai
Use repair-active --provider PROVIDER --apply --yes only after a dry run confirms the active non-archived session set is correct. Open turns newer than 30 minutes are treated as possibly active and are not closed unless --close-recent-open-turns is explicitly present. Archived sessions stay untouched unless --include-archived is explicitly present.
Workflow
- Identify the target thread id or run
scanto find active non-archived
threads with provider mismatch, parse errors, open turns, open child spawn edges, or stale goals.
- Decide the target provider from the user's current login/config goal:
current official OAuth means openai; current krill means krill.
- Run
scan-thread --thread-id IDbefore single-thread repair. Read
references/recovery-checklist.md when the report shows multiple issue types or Codex Desktop still shows systemError.
- Run
repair-thread --thread-id ID --provider PROVIDERor
repair-active --provider PROVIDER without --apply to preview actions.
- Run the same command with
--applyonly after the preview is acceptable. - Run
verify --provider PROVIDERorverify --thread-id ID --provider PROVIDER. - If available, search the live Codex thread list for a known old title to
confirm local sessions reappeared. Otherwise fully restart Codex Desktop so the app server reloads thread state from disk.
Common Provider Switch Recipes
When the user says, "I am logged in with official Codex now, but my krill sessions disappeared," keep official OAuth as-is and migrate active session metadata to openai:
python "/scripts/restore_codex_sessions.py" scan --provider openai
python "/scripts/restore_codex_sessions.py" repair-active --provider openai
python "/scripts/restore_codex_sessions.py" repair-active --provider openai --apply --yes
python "/scripts/restore_codex_sessions.py" verify --provider openai
When the user explicitly wants to use krill as the current provider, repair active session metadata to krill:
python "/scripts/restore_codex_sessions.py" repair-active --provider krill
python "/scripts/restore_codex_sessions.py" repair-active --provider krill --apply --yes
python "/scripts/restore_codex_sessions.py" verify --provider krill
Safety Rules
- Do not touch
archived_sessionsor archived rows unless the user explicitly
asks and the command includes --include-archived.
- Do not switch provider configuration or copy third-party auth settings unless
the user explicitly asks to change providers. Session restore normally repairs metadata to match the provider already in use.
- Do not edit live files manually when the script can perform the same repair.
- Do not use
task_completeto close an interrupted or damaged turn. Use
turn_aborted.
- Do not delete non-empty historical turns. The script isolates open turns by
inserting or appending turn_aborted.
- Do not close recent open turns unless the user explicitly confirms they are
stale. Use --close-recent-open-turns only for known failed continuations.
- Back up before every write. The script creates
session-restore-backup-YYYYMMDD-HHMMSS under CODEX_HOME.
- Prefer single-thread repair before bulk repair unless the user explicitly asks
to restore all active sessions.
Script Capabilities
- Update
threads.model_providerand rolloutsession_metaprovider metadata. - Detect rollout parse errors, missing rollout files, open task turns, and
provider metadata drift.
- Coalesce duplicate
turn_contextentries by uniqueturn_id; ignore legacy
no-turn_id contexts for mutation.
- Insert one
turn_abortedevent per stale open turn. - Close stale
thread_spawn_edgesafter making child rollouts internally closed. - Report non-complete
thread_goals; optionally complete them only when an
explicit repair flag is used.
- Print provider distributions, backup paths, modified files, and restart
guidance.
Reference
Read references/recovery-checklist.md when deciding whether to repair provider metadata only, repair rollout structure, close child edges, complete stale goals, or ask the user to restart Codex Desktop.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sidiangongyuan
- Source: sidiangongyuan/codex-skills-library
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.