ワンクリックで
session-pickup
Read context from previous session to prepare for new work
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Read context from previous session to prepare for new work
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Update project documentation and commit changes after a work session
Establish the files used to track and manage progress.
Initialize a meta-repo that coordinates a collection of related projects, each with its own independent git history.
| name | session-pickup |
| description | Read context from previous session to prepare for new work |
| allowed-tools | Read, Write, Bash, Glob, AskUserQuestion |
Read context from previous session to prepare for new work.
Verify the checkout is current (do this BEFORE reading any tracking file):
git fetch, then compare local HEAD to upstream:
git rev-list --left-right --count @{upstream}...HEAD (left = behind, right = ahead)git pull --rebase. Do NOT trust CONTEXT.md's contents until reconciled.updated/last_entry are self-reported and can
look fresh while the checkout is behind. Tracking files sometimes land via
out-of-band pushes (including other projects' sessions), so a recent
frontmatter date is NOT proof the local checkout is current.Confirm a tracking system is present (before doing pickup work):
docs/CONTEXT.md or docs/IMPLEMENTATION.md exists.project-tracking skill to initialize one
(or project-repo for a meta-repo coordinating several projects). Then stop.Check for CONTEXT.md (token-efficient system):
docs/CONTEXT.mdupdated date in frontmatterFall back to IMPLEMENTATION.md (if CONTEXT.md missing):
Make a plan for what to do next based on the context
Note: CHRONICLES.md and DECISIONS.md are historical context. Only read them if you need deeper background on a specific decision or past work.