Add handoff skill for session continuity#237
Open
Mrbaeksang wants to merge 1 commit into
Open
Conversation
Adds a cross-cutting `handoff` skill that compacts the current conversation into a resume-ready document so another agent or a future session can continue without re-deriving context. The skill follows the agent-skills anatomy (Overview, When to Use, Process, Common Rationalizations, Red Flags, Verification) and covers choosing a temp-dir destination, referencing durable artifacts instead of duplicating them, redacting secrets/PII, and a "Suggested Skills" section pointing at the next workflow. Integration: - skills/handoff/SKILL.md (new) - using-agent-skills: discovery flowchart, lifecycle note, quick reference - README: skill count 24 -> 25, skill table row, project tree - CLAUDE.md: cross-cutting phase entry - AGENTS.md: intent -> skill mapping Verified: hooks/session-start-test.sh passes (touches the meta-skill). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a new cross-cutting
handoffskill that compacts the current conversation into a resume-ready document, so another agent or a future session can continue the work without re-deriving context.This fills a genuine gap in the pack: there is currently no skill for preserving work state across sessions /
compact/ agent handoffs. It complementscontext-engineering(which loads context in) by handling the out direction.Why a skill, not prose
It follows the standard anatomy from
docs/skill-anatomy.md:Adapted from Matt Pocock's
handoffskill, reworked into a model-agnostic, process-driven form (attribution noted in the skill).Integration
skills/handoff/SKILL.md(new)using-agent-skills: discovery flowchart branch, lifecycle note, quick-reference rowREADME.md: skill count 24 → 25, skill table row, project treeCLAUDE.md: cross-cutting phase entryAGENTS.md: intent → skill mappingVerification
Per
CONTRIBUTING.md, this PR touchesskills/using-agent-skills/SKILL.md(embedded by the session-start hook), so the hook regression test was run:Frontmatter validated:
namematches the directory,descriptionis what-then-"Use when" and is 320 chars (< 1024).🤖 Generated with Claude Code