AgentStack
SKILL verified MIT Self-run

Superpowers Ruby:handoff Resume

skill-zarpay-rails-template-handoff-resume · by zarpay

Use when starting a new session and wanting to continue from a previous handoff — reads the latest unrestored handoff document and restores session context

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-zarpay-rails-template-handoff-resume

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of Superpowers Ruby:handoff Resume? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Handoff Resume

Overview

Resume work from a previously created handoff document. Finds the latest unrestored handoff, reads it, marks it as consumed, archives it, and sets up the session to continue from where the previous session left off.

Core principle: Read the handoff, understand the context, then continue from Next Steps.

Announce at start: "I'm using the handoff-resume skill to restore session context."

When to Use

  • Starting a new session to continue previous work
  • After a session was ended without completing work
  • When a colleague or agent left a handoff for you
  • When you see handoff documents exist in docs/handoffs/

Don't use when:

  • Context was just compacted (the PostCompact hook handles this automatically)
  • There is no handoff document to resume from

The Process

Step 1: Find Unrestored Handoffs

# Look for handoff files with restored: false
ls docs/handoffs/*.md 2>/dev/null

Read each file's frontmatter and filter for restored: false. Sort by created date, newest first.

Step 2: Select Handoff

If one unrestored handoff exists: Use it automatically.

If multiple unrestored handoffs exist: Present them and ask which to resume:

Found multiple unrestored handoffs:

| # | Date | Topic | Branch |
|---|------|-------|--------|
| 1 | 2026-04-14 | handoff-skill | lg/handoff |
| 2 | 2026-04-13 | auth-refactor | fix/auth |

Which handoff should I resume from?

If no unrestored handoffs exist: Check the archive:

ls docs/handoffs/_archive/*.md 2>/dev/null

If archived handoffs exist, list them and offer to re-open one. If none exist at all, inform the user.

Step 3: Read and Present

Read the full handoff document. Present a summary:

Resuming from handoff: 
- Branch: 
- Created: 
- Goal: 
- Next steps:  items
- Files to read:  documents

Step 4: Mark as Restored and Archive

Update the handoff file's frontmatter:

  • Set restored: true
  • Add restored_at:

Move the file to docs/handoffs/_archive/.

Step 5: Restore Context

  1. Read the Files to Read section first — open each referenced plan, spec, or doc
  2. Review the Current State and Key Decisions — understand what was done and why
  3. Check Modified Files — run git status to see if the working tree matches expectations
  4. Note Failed Approaches — avoid repeating what didn't work
  5. Continue from Next Steps — start working on the first item

If any sections contain `` markers (from a hook-generated handoff), fill them in from available context before proceeding.

Pairs With

  • superpowers-ruby:handoff — Creates the handoff documents this skill resumes from
  • superpowers-ruby:handoff-list — View all available handoffs before choosing

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.