From claude-hopper
Write a handover document that includes an open task list for the next agent. Use when switching sessions mid-way through a multi-task workload, not just a single in-progress job. Triggers on phrases like "handover with tasks", "task handover", "hand off the task list", "context cleanup with tasks", "pass on the work queue".
npx claudepluginhub danielrosehill/claude-code-plugins --plugin claude-hopperThis skill uses the workspace's default tool permissions.
A 2-in-1 handover skill: writes a structured `HANDOVER.md` that captures both the current state AND an actionable task list for the next agent. Use this instead of the regular handover when the session has an open queue of work items rather than a single focused task.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
A 2-in-1 handover skill: writes a structured HANDOVER.md that captures both the current state AND an actionable task list for the next agent. Use this instead of the regular handover when the session has an open queue of work items rather than a single focused task.
session-transfer:handover): One task in progress, next agent picks up where you left offBefore writing, gather ALL of the following:
git log --oneline -20)If $ARGUMENTS contains additional context about the task list, incorporate it.
Write HANDOVER.md at the repository root with the following structure:
# Agent Handover Document
## Metadata
- **Created**: [ISO 8601 timestamp]
- **Creating agent**: [Agent type and model]
- **Repository**: [repo name]
- **Branch**: [current branch]
- **Last commit**: [short hash + message]
- **Handover type**: Task list transition
## Context
[Brief summary of what this session was doing and why the handover is happening. Include any relevant background the next agent needs to understand the overall objective.]
## Task List
### Completed
- [x] [Task description] — [brief note on outcome/location of work]
### In Progress
- [ ] [Task description] — [current state, what's been done, what remains]
- **Files touched**: [list]
- **Current state**: [where exactly this was left]
- **Next action**: [specific next step]
### Not Started
- [ ] [Task description] — [any context or prerequisites]
### Deferred / Out of Scope
- [ ] [Task description] — [why deferred, any notes for future]
## Current Repository State
- **Build status**: [passing/failing/unknown]
- **Uncommitted changes**: [yes/no — summarize if yes]
- **Working tree clean**: [yes/no]
## Key Decisions Made
- [Decision]: [Rationale]
## Failed Approaches (Do Not Repeat)
- [What was tried]: [Why it failed]
## Files of Interest
| File | Why |
|------|-----|
| [path] | [reason this file matters] |
## Resumption Instructions
[Tell the next agent to start by reviewing the Task List above and begin with the highest-priority incomplete item. Include any ordering preferences, dependencies between tasks, or constraints.]
## Context the Next Agent Needs
[Environment variables, running services, non-obvious codebase quirks, etc.]
session-transfer:new-claude-here or session-transfer:handover spawn pattern)