Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/genomewalker/chitta --skill resume명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | resume |
| description | Resume a thread by loading its ~800-token context capsule |
Use the shared chitta-mcp/resume_selector.py; do not read the global newest
transcript and do not use .current_thread_id. Claude and Codex may be live in
the same project on different threads, but only one live session may own a
given thread.
Resolve this plugin's chitta-mcp directory as described by the recap skill.
Determine the invoking client from its CODEX_* or CLAUDE_* session
environment. Run:
python3 "$_MCP_DIR/resume_selector.py" --project-dir "$PWD" --client "$CLIENT"
For /resume <thread id prefix or title>, add --thread <argument>. Always
show the returned live Claude/Codex sessions so the user can see parallel work
and ownership.
locked, report the owner session/client/model/thread and stop.registry_unavailable, stop and retry after Chitta responds; do not infer
that no session is live.ambiguous, show the candidates and ask which thread/session to use.none, say no resumable project-exact thread was found and offer /tasks.selected, rerun the identical command with --claim.Continue only if the atomic claim returns claimed: true. Never pass --force
unless the user explicitly requests takeover of a known live owner.
Use the claimed selected.thread_id:
python3 "$_MCP_DIR/resume_capsule.py" build --thread-id <thread_id>
Display the capsule's summary verbatim. It includes active tasks, job IDs,
branches, environments, blockers, completed work, failures, artifacts, and
next actions. Then orient to its realm, branch, environment, and active files.
If capsule construction fails, fall back to the selected exact transcript via the recap procedure. Do not fall back to another session by recency.
The successful lease and session-to-thread binding are the durable current context. No global marker file is required. Prompt and Stop heartbeats from either frontend keep the lease alive; SessionEnd releases it.