Install
$ agentstack add skill-zarpay-rails-template-handoff-list ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
About
Handoff List
Overview
Display all available handoff documents, both active (unrestored) and archived (consumed). Helps you decide which handoff to resume or review.
Announce at start: "I'm using the handoff-list skill to show available handoffs."
When to Use
- When starting a session and unsure if handoffs exist
- When you want to review past handoff history
- Before using
superpowers-ruby:handoff-resumeto see what's available
The Process
Step 1: Scan Handoff Directories
# Active handoffs
ls docs/handoffs/*.md 2>/dev/null
# Archived handoffs
ls docs/handoffs/_archive/*.md 2>/dev/null
Step 2: Parse Frontmatter
For each file found, read the YAML frontmatter to extract: created, topic, branch, trigger, restored.
Step 3: Display Table
Present results with active (unrestored) handoffs first, then archived, sorted by date descending:
## Active Handoffs
| Date | Topic | Branch | Trigger |
|------|-------|--------|---------|
| 2026-04-14 | handoff-skill | lg/handoff | manual |
## Archived Handoffs
| Date | Topic | Branch | Trigger | Restored At |
|------|-------|--------|---------|-------------|
| 2026-04-13 | auth-refactor | fix/auth | compact | 2026-04-13T15:30:00 |
If no handoffs exist:
No handoff documents found in docs/handoffs/ or docs/handoffs/_archive/.
Use `/superpowers-ruby:handoff` to create one.
Step 4: Offer Next Action
If active handoffs exist, offer:
> "Would you like to resume from one of the active handoffs? Use /superpowers-ruby:handoff-resume."
Pairs With
- superpowers-ruby:handoff — Creates new handoff documents
- superpowers-ruby:handoff-resume — Resume from a specific handoff
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: zarpay
- Source: zarpay/rails-template
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.