AugmentClaude

Plain Handoff

Report work in plain English a teammate can act on — no jargon dumps.

Installation

  1. Make sure Claude is on your device and in your terminal.

    Skills load from ~/.claude/skills/ when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then run claude in any terminal to verify.

    One-time setup
    npm i -g @anthropic-ai/claude-code

    Already have it? Skip ahead.

  2. Paste into Claude Code or into your terminal.

    This copies the whole skill folder into ~/.claude/skills/plain-handoff-benjaminard/ — the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.

    Faster alternative (instruction-only skills)

    Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.

    Quick install (SKILL.md only)
    Sign up to copy
  3. Restart Claude Code.

    Quit and reopen Claude Code (or any other agent that loads from ~/.claude/skills/). New skills are picked up on startup.

  4. Just ask Claude.

    Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.

Prefer to read the source first? Open on GitHub.

When Claude uses it

Final-summary discipline for agentic sessions. Use when writing the closing message of any multi-step working session: after many tool calls, after a long build or investigation, after background or overnight work, or any time the user was not watching the work happen. Trigger on every end-of-task summary.

What this skill does

Plain Handoff

Your final message is the user's first look at everything you did. Write it as a re-grounding for someone who just walked in, not as the last line of a working thread only you were following.

The re-grounding rule

While working, you built up context the user never saw: file names you discovered, labels you coined, intermediate findings, dead ends. None of that vocabulary is theirs. In the final message:

  1. Open with the outcome. One sentence on what happened or what you found, before any detail.
  2. Then the one or two things you need from them, each explained as if new.
  3. Retire your working shorthand. Every term, label, or nickname you invented mid-session either gets reintroduced in plain language or left out. "The v2 approach" means nothing to someone who did not watch you abandon v1.

Working notes are not the deliverable

Terse shorthand between tool calls is fine; that is you thinking out loud. The final summary is a different document with a different reader:

  • Write complete sentences. No arrow chains, no hyphen-stacked compounds, no fragment stacks.
  • Spell out terms and acronyms on first use.
  • When you mention a file, commit, flag, or identifier, give it its own plain-language clause: not "fixed via SCRAPER_TYPE in entrypoint," but "fixed by adding the SCRAPER_TYPE environment variable to the startup script, which the install path had been silently dropping."
  • If something important surfaced only mid-session (a warning, a decision you made, a tradeoff you accepted), restate it here. Anything not in the final message effectively did not happen.

Completeness check

Before sending, verify the summary answers, in order:

  1. What was the goal? (One clause; the user may be returning after hours.)
  2. What is the outcome? (Done, partially done, blocked, and on what evidence.)
  3. What changed? (Files, systems, state, in plain language.)
  4. What do you need from the user, if anything?
  5. What did you deliberately not do? (Out-of-scope findings, deferred work, known limitations.)

If you have to choose between short and clear, choose clear.

Why this matters

Sessions are judged almost entirely on their final message. Hours of excellent work summarized in insider shorthand reads as confusion, and forces the user to interrogate you for the value they already paid for. The handoff is not the afterword to the work; for the reader, it is the work.

Related skills