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.
npx agentmods add skills/lerianstudio/ring/creating-handoffsnpx skills add LerianStudio/ring --skill creating-handoffsgit clone --depth 1 https://github.com/LerianStudio/ringWrote 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.
[](https://agentmods.dev/skills/lerianstudio/ring/creating-handoffs)<a href="https://agentmods.dev/skills/lerianstudio/ring/creating-handoffs"><img src="https://agentmods.dev/badge/skills/lerianstudio/ring/creating-handoffs.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00093 | $0.00719 |
| Opus 5 | $0.00046 | $0.00360 |
| Sonnet 5 | $0.00019 | $0.00144 |
| Haiku 4.5 | $0.00009 | $0.00072 |
Grade A, and why
ring:creating-handoffs 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Session Handoff Skill
When to use
- User is ending a session and wants to preserve context for later
- Context window is getting large and a fresh start would be beneficial
- Handing off work to another person or AI session
- User says "handoff", "save session", "wrap up", or "context transfer"
Skip when
- Session has minimal context that does not warrant a handoff document
- User simply wants to end the conversation without resuming later
- Work is fully complete with nothing pending
Creates a handoff document capturing session context, delivered via Claude Code's Plan Mode so the user gets a native "clear context and continue implementing" option.
Execution Protocol (exact order, no skipping)
Step 1: Gather Context
Before entering plan mode, collect:
- Completed work, decisions, and open items from conversation history
- Use
GlobandReadto verify file states and paths as needed - Use
Bashwithdatefor timestamps - Session name (from argument or infer from work done)
Step 2: Enter Plan Mode
Call EnterPlanMode tool.
Step 3: Write Handoff as the Plan
Write the full handoff document (template below) to the plan file path specified in the system message. The handoff IS the plan.
Step 4: Exit Plan Mode
Call ExitPlanMode tool — this presents the native resume options.
Step 5: Confirm to User
Handoff created and loaded as plan.
Choose "clear context and continue implementing" to resume in a fresh context.
Handoff Template
# Handoff: {Session Name}
**Created:** {timestamp}
**Session:** {session-name}
**Status:** {In Progress | Blocked | Ready for Review | Complete}
## Summary
{1-2 sentence overview}
## Current State
{Where things stand — specific about done vs pending}
## Completed Work
- {item with file references}
## In-Progress Work
- {partially done items — describe exactly where you stopped}
## Key Decisions
| Decision | Rationale | Alternatives Considered |
|----------|-----------|------------------------|
## What Worked
- {successful approaches worth reusing}
## What Didn't Work
- {failed approaches to avoid}
## Open Questions
- [ ] {unresolved questions or blockers}
## Next Steps
1. {First action when resuming — specific and actionable}
## Relevant Files
| File | Purpose | Status |
|------|---------|--------|
## Context for Resumption
{Gotchas, environment setup, branch state, test commands}
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.
- 5d ago First seen · 102 lines · 93 tokens per session scan A f00b99e508b3
ring:creating-handoffs is a skill published in the GitHub repository LerianStudio/ring (210 stars, last pushed 16d ago), licensed Apache-2.0. It adds 93 tokens to every session and 719 once invoked, about $0.0005 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-08-30.
Other skills, from other repositories
test-map
/test-map — Test Cases Documentation Generator.
incident
Incident response and postmortem generation from git/deploy context. When something breaks in production, this skill builds a timeline, identifies the probable cause, and generates a structured postmortem document. Flags: --since, --service, --sev, --revert, --comms, --dry-run.
presentation
Generate PowerPoint (PPTX) presentations from a topic, outline, or content file. Creates professional slides using python-pptx with consistent theming and typography. Modes: [topic] (from scratch), from [file] (from markdown), --slides N, --theme dark|light|corporate, --outline-only, --out [path], --lang [code].
ds-brief
Data-backed brief — research, source, double-verify, and render a visually rich single-file HTML report. Use when the user wants a sourced, fact-checked brief or report on a topic.
memstack-business-scope-of-work
Use this skill when the user says 'scope of work', 'SOW', 'define scope', 'project scope', 'write SOW', 'scope document', or is defining project boundaries, deliverables, and acceptance criteria for a formal engagement. Do NOT use for proposals, contracts, or invoicing.
investor-materials
Use when packaging or circulating the documents an investor reads outside the meeting — setting up or cleaning a data room, writing the one-pager or teaser that earns the first meeting, or drafting the recurring monthly investor update. NOT the slide narrative (that is pitch-deck), NOT the projection spreadsheet (that…