From backlog
Prepare a session handoff — summarize progress, annotate tasks with current status, and identify what's ready for the next session. Use at the end of a work session or when the user says they're done for now.
How this skill is triggered — by the user, by Claude, or both
Slash command
/backlog:handoffThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Prepare context for the next session so work can continue seamlessly.
Prepare context for the next session so work can continue seamlessly.
Review active tasks — call task_list with filter +ACTIVE to find tasks that were being worked on. Use the UUIDs from that response for the calls below; do not rely on UUIDs you remember from earlier in the session. For each task in the result:
task_annotate to record what was accomplished and what remainstask_stop to mark it as no longer activeReview pending tasks — call task_list with filter status:pending to see the full backlog. Note any tasks whose status has changed based on work done this session.
Log unplanned work — if work was done that wasn't tracked as a task, use task_log to record it retroactively with appropriate project and tags.
Update blocked tasks — if any blockers were resolved this session, use task_modify to remove dependencies or update descriptions.
Present the handoff summary:
Keep the summary concise — the goal is to give the next session (or agent) a clear starting point.
npx claudepluginhub backloghq/backlog --plugin backlogCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.