Agent skill
handoff
Handoff skill to assess project state and provide context for a new agent. Uses /assess logic to identify doc-code gaps, broken features, and next steps.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/handoff-grahama1970-agent-skills
Metadata
Additional technical details for this skill
- short description
- Handoff briefing and project context bridge
SKILL.md
Handoff Skill
This skill is designed to bridge context between agents during a transition. It uses the philosophy of the /assess skill to generate a structured local/HANDOFF.md that helps a new agent understand the project's current state, what is working, what is broken, and what to do next.
Assessment Logic (via /assess)
When triggering this skill, the agent must:
- Gather Facts: Run
.pi/skills/handoff/run.shto get automated project data (git, docs, todos). - Analyze Alignment: Compare
README.mdandCONTEXT.mdagainst the actual code. - Identify "Current Broken": Locate failed tests,
TODOs, and recent bug-related commits. - Determine Next Steps: Review
0N_TASKS.md(if exists) and recently touched files.
Output Format: HANDOFF.md
The agent should generate or update a local/HANDOFF.md file using the following structure:
# Handoff Report: <Project Name>
**Timestamp**: <ISO Date>
**Active Agent**: <Current Agent Name>
## 1. Project Overview
- **Ecosystem**: <Python/Node/etc>
- **Core Purpose**: <Brief summary from README>
## 2. Current State (Doc-Code Alignment)
- **Documented Features**: <List>
- **Implemented Reality**: <Note any gaps>
- **Drift/Misalignments**: <Flag differences between docs and code>
## 3. What is Working Well
- <List passing critical paths or high-quality modules>
## 4. What is Currently Broken
- **Failed Tests**: <List>
- **Known Issues**: <From /assess findings or TODOs>
- **Recent Regressions**: <From git history>
## 5. Next Steps
1. <Highest priority task>
2. <Next task>
## 6. Project Context for Success
- **Key Files**: <Paths to core logic>
- **Recent Changes**: <Summary of last 3-5 commits>
How to Use
- Trigger with "create handoff report" or "handoff this project".
- Run
bash .pi/skills/handoff/run.sh. - Perform a supplemental
/assessdeep dive if needed. - Prepare Environment: Ensure the
local/directory exists (create it if missing). - Synthesize Findings: Generate or update
local/HANDOFF.mdusing the collected facts and/assessphilosophy. - Present the summary to the user.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?