session-handoff-resume

session-handoff-resume is a skill for Claude Code, Codex from roedyrustam/vibes-plug. It costs 59 tokens per session (1,620 once invoked), scanned A, original, MIT.

A checkpoint system for recording the current state of a software project so work can continue in another chat, account, or AI model.

In plain words
What is it for?
Use it to save project goals, progress, open tasks, and important files before handing work over or resuming later.
Why use it?
It reduces the context that must be repeated when a long session ends or work moves elsewhere.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to save project goals, progress, open tasks, and important files before handing work over or resuming later.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/roedyrustam/vibes-plug/session-handoff-resume
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add roedyrustam/vibes-plug --skill session-handoff-resume
Clone the repo
git clone --depth 1 https://github.com/roedyrustam/vibes-plug

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for session-handoff-resume

README.md
[![agentmods](https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/session-handoff-resume/github.svg)](https://agentmods.dev/skills/roedyrustam/vibes-plug/session-handoff-resume)
Your own site
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/session-handoff-resume"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/session-handoff-resume/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for session-handoff-resume

Your own site · 80×15
<a href="https://agentmods.dev/skills/roedyrustam/vibes-plug/session-handoff-resume"><img src="https://agentmods.dev/badge/skills/roedyrustam/vibes-plug/session-handoff-resume.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,620 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00059 $0.01620
Opus 5 $0.00030 $0.00810
Sonnet 5 $0.00012 $0.00324
Haiku 4.5 $0.00006 $0.00162

Measured 6d ago against content hash fc4807256c4a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

session-handoff-resume scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/session-handoff-resume/SKILL.md · 165 lines

How it starts

The opening of the file, as written. The whole thing — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Session Handoff & Resume (2026 — Cross-Model Edition)

English | Bahasa Indonesia


English

Orchestration & Integration

Connects and orchestrates with relevant domain skills like brainstorming, zero-to-prod-orchestrator, and project-context-mapper to ensure cohesive execution.

Description

Saves ultra-compact project checkpoints and enables seamless work resumption across new chat sessions, different accounts, or different AI models (Gemini, Claude, GPT). Designed for minimum token consumption while preserving full context needed for continuation.

Trigger Conditions

  • Session is running very long and context window is nearly exhausted.
  • User wants to switch to a new chat session or different AI model.
  • User wants to save progress before closing and resume later.
  • User says "save checkpoint", "handoff", "save progress", "resume later".

Checkpoint Format (Ultra-Compact)

When creating a checkpoint, output a compact YAML block under 200 tokens:

# CHECKPOINT — [Project Name] — [Date]
project: "[Project Name]"
goal: "[One-line goal of the current session]"
status: "[brief status: e.g., '60% — backend API done, frontend in progress']"
stack: "[e.g., Next.js 15 + Hono + Supabase + Drizzle]"
last_completed:
  - "[Most recent task completed]"
  - "[Second most recent]"
next_tasks:
  - "[Immediate next task]"
  - "[Following task]"
  - "[Following task]"
blockers: "[Any known blockers or pending decisions, or 'none']"
key_files:
  - "[path/to/critical/file.ts]"
  - "[path/to/another/file.ts]"
env_needed: "[List of env vars needed, e.g., SUPABASE_URL, STRIPE_KEY]"
notes: "[Any critical context that doesn't fit above]"

Cross-Model Handoff Protocol (2026)

Different AI models interpret context differently. Use this universal handoff prompt:

## RESUME CONTEXT — [Project Name]

You are resuming work on [Project Name]. Read this context carefully before taking any action.

**Goal**: [One-sentence project goal]
**Current Status**: [What's been done, what's pending]
**Tech Stack**: [Stack details]
**Repository**: [path or URL if available]

**Completed**:
- ✅ [Done item 1]
- ✅ [Done item 2]

**Next Tasks** (in priority order):
1. [ ] [Immediate next task — be specific]
2. [ ] [Second task]
3. [ ] [Third task]

**Critical Files to Read First**:
- [file path] — [why it's critical]
- [file path] — [why it's critical]

**Known Constraints**:
- [Constraint 1, e.g., "Use pnpm, not npm"]
- [Constraint 2, e.g., "Admin panel must be on admin.domain.com"]

**Do NOT**:
- [Something the previous session explicitly avoided]
- [Another anti-pattern to avoid]

Start by reading the critical files listed above, then confirm you understand the current state before proceeding.

Read the full file on GitHub · 165 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 165 lines · 59 tokens per session scan A fc4807256c4a

Subscribe to this mod's changes

session-handoff-resume is a skill published in the GitHub repository roedyrustam/vibes-plug (50 stars, last pushed 2d ago), licensed MIT. It adds 59 tokens to every session and 1,620 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

meeting-notes-to-tasks

Converts unstructured meeting notes into structured, assigned, time-bounded action items. Never leave a meeting without knowing who does what by when.

DevelopersGlobal/ai-agent-skills · 36 tokens

implement-improvements

Validate improvements from .turbo/improvements.md, recommend a working set tailored to what's in the backlog, and run one lane: direct fixes, investigation, or planned work. One lane per session. Use when the user asks to "implement improvements", "work on improvements", "address improvements", "process improvement…

tobihagemann/turbo · 79 tokens

note-improvement

Capture an out-of-scope improvement opportunity so it doesn't get lost. Use when the user asks to "note improvement", "save improvement", "track this for later", "remember this improvement", "note this idea", "log improvement", "backlog this", or "park this idea". Also invoke proactively when noticing something…

tobihagemann/turbo · 107 tokens

create-issue

Create a GitHub issue with a drafted title and body. Use when the user asks to "create an issue", "file an issue", "open an issue", "submit an issue", "report a bug", "file a bug report", "file a feature request", or "file a design proposal".

tobihagemann/turbo · 66 tokens

pick-next-issue

Fetch and rank open GitHub issues by community engagement, present the top 3 candidates, and plan implementation for the selected issue. Use when the user asks to "pick next issue", "next issue", "which issue should I work on", "top issues", "most popular issues", "prioritize issues", or "what should I work on next".

tobihagemann/turbo · 77 tokens

update-turbo

Update installed Turbo skills from the local repo with a dynamic changelog, conflict resolution for customized skills, and guided user experience. Use when the user asks to "update turbo", "update turbo skills", "reinstall turbo", or "upgrade turbo".

tobihagemann/turbo · 54 tokens