Skip to content

agent-resume v0.1.1 — configured agent identity

Choose a tag to compare

@megamen32 megamen32 released this 05 Jul 01:54
· 19 commits to main since this release

agent-resume v0.1.1

Fixes design issue

The model no longer needs to pass agent=codex|opencode|claude on every call.
Configure the MCP server once with:

AGENT_RESUME_AGENT=codex
AGENT_RESUME_AGENT=opencode
AGENT_RESUME_AGENT=claude

or use ~/.config/agent-resume/config.json:

{ "agent": "codex" }

Better SESSION_ID detection

Codex now prefers the real state DB:

~/.codex/state_5.sqlite
  table: threads
  id           -> SESSION_ID
  cwd          -> project match
  rollout_path -> transcript file

Fallback remains ~/.codex/session_index.jsonl.

OpenCode still uses SQLite session tables from ~/.local/share/opencode/*.db.
Claude Code still scans ~/.claude/projects/<encoded-cwd>/*.jsonl.

Source review

README now documents the exact source findings from:

  • /home/roomhacker/src/codex
  • /home/roomhacker/.config/opencode/apps/forks/opencode