🎯

create-handoff

🎯Skill

from pc-style/pc-skills

VibeIndex|
What it does

Generates a comprehensive HANDOFF.md document to preserve project context, files, progress, and next steps for seamless continuation in a new AI session.

πŸ“¦

Part of

pc-style/pc-skills(12 items)

create-handoff

Installation

πŸ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add pc-style/pc-skills --skill create-handoff
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Create a handoff message to continue work in a new AI session. Use when the user wants to save context for later, create a handoff document, or prepare work for continuation in a fresh session. Captures relevant files, context, and goals so the next session can start immediately without rediscovering the codebase.

Overview

# Create Handoff

Generate a HANDOFF.md file to preserve context for the next AI session.

When to Use

  • User says "let's continue later"
  • User asks to save current progress
  • Session is ending but work is incomplete
  • User explicitly asks for a handoff

Process

  1. Identify relevant files (target 8-15 files, up to 20 for complex work)

- Files being edited or will be edited

- Dependencies and imports

- Relevant tests

- Configuration files

- Key reference documentation

  1. Draft context and goals

- What we're working on

- Current state and progress

- Decisions made

- Constraints and preferences

- Technical patterns discovered

- Next steps or remaining tasks

  1. Exclude

- Conversation back-and-forth

- Dead ends and failed attempts

- Meta-commentary

- File contents (just list paths)

Output Format

Save to HANDOFF.md in the repository root:

```markdown

# Handoff: [Brief Title]

Context

[What we're building/fixing and why]

Current State

[What's been done, what's in progress]

Key Files

  • path/to/file.ts - [why it matters]
  • path/to/test.ts - [relevant tests]

[8-15 files with brief descriptions]

Decisions & Constraints

  • [Decision made]
  • [User preference]
  • [Technical constraint]

Next Steps

  1. [Specific task]
  2. [Specific task]

```

Tips

  • Be generous with files - cost is low, missing critical files is high
  • Preserve user preferences exactly as stated
  • Focus on actionable next steps
  • Keep it scannable - bullet points over paragraphs

More from this repository10

🎯
blog-post🎯Skill

Generates cybernetic developer blog posts in a dual-author MDX format with custom components and API/CLI publishing methods.

🎯
git-commit🎯Skill

Generates intelligent git commits using Conventional Commits, automatically analyzing code changes and creating semantic, descriptive commit messages.

🎯
git-commit-push🎯Skill

Automates Git workflow by staging changes, creating conventional commits, and pushing to the current branch's origin.

🎯
linear-status-check🎯Skill

Checks and validates the linear status of a project, ensuring sequential progression and identifying potential workflow disruptions.

🎯
explore-codebase🎯Skill

Quickly explore and map codebase structure, find files by patterns, and understand project architecture using Opencode's Explore agent.

🎯
code-review🎯Skill

Performs comprehensive code review analysis, identifying potential issues, best practices, and improvement suggestions across various programming languages.

🎯
git-create-branch🎯Skill

Creates a new Git branch with conventional naming, ensuring clear and structured branch management for different types of work.

🎯
load-handoff🎯Skill

Seamlessly loads and continues work from a HANDOFF.md file, reading context and preparing to execute next steps.

🎯
github-create-pr🎯Skill

Creates a GitHub pull request from a specified branch to another, with optional title, body, and assignee configuration.

🎯
git-push-origin🎯Skill

Pushes a local Git branch to its remote origin (GitHub) for the first time, setting up upstream tracking.