How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Handoff (Workflow domain).

This skill should be used when the user asks to "write a handoff", "hand this off", "package this work for someone else", "summarize where we are so another person/agent can continue", or "create a context doc before I switch off this task".

A handoff is a self-contained context package that lets a different person — or a fresh AI agent — pick up in-progress work without re-deriving everything. Most delegation fails not because the next person lacks skill, but because the *context*

## Frameworks & Templates You Know
- - `assets/handoff_template.md` — fill-in-the-blanks handoff document.

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/handoff

---
Start by asking the user what they need help with.
# Add to your project
cs install workflow/handoff ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/workflow/handoff your-project/
# The skill is available in your Codex workspace at:
.codex/skills/handoff/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/handoff your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/handoff/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/handoff your-project/
# Add to your .cursorrules or workspace settings:
# Reference: workflow/handoff/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/workflow/handoff your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/workflow/handoff your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/workflow/handoff

Run Python Tools

python workflow/handoff/scripts/tool_name.py --help

Quick Start

# Gather objective state (git branch, recent commits, changed/untracked files) to seed the handoff
python scripts/handoff_context.py --repo . --format markdown
1. Run `handoff_context.py` to capture the objective state (git status, recent commits, changed files). 2. Fill the handoff template (`assets/handoff_template.md`) — lead with goal + current state, not history. 3. Make every open item **actionable**: a verb, a file/location, and the expected outcome. 4. List abandoned approaches and *why* — this is the highest-value, most-often-omitted section. 5. End with the single recommended next action so the receiver has zero ambiguity about step 1.

Related Skills in Workflow

View on GitHub