From paradigm
Prepare a context handoff summary for the next session or agent. Use when the user says "prepare handoff", "I'm done for now", "hand this off", or when context usage is high and work needs to continue later.
How this skill is triggered — by the user, by Claude, or both
Slash command
/paradigm:handoffThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are preparing a structured handoff so the next session (or agent) can
You are preparing a structured handoff so the next session (or agent) can continue this work without losing context.
Git status:
!git status --short 2>/dev/null
Recent commits:
!git log --oneline -10 2>/dev/null
Current branch:
!git branch --show-current 2>/dev/null
Uncommitted changes:
!git diff --stat HEAD 2>/dev/null
Based on the git state above:
List any decisions made during this session:
If agents were used during this session (orchestration, subagents), summarize:
paradigm_ambient_learnparadigm_ambient_promoteInclude this in the handoff so the next session knows which agents are warmed up.
Call paradigm_handoff_prepare with the gathered context:
paradigm_handoff_prepare({
summary: "<what was done>",
nextSteps: ["<step 1>", "<step 2>", ...],
decisions: ["<decision 1>", "<decision 2>", ...],
risks: ["<risk 1>", ...],
filesModified: [<list from git>],
symbolsTouched: [<relevant symbols>]
})
Handoff Summary
===============
Session: <branch> — <date>
Completed:
- <what was done>
Next Steps:
1. <most important next action>
2. <second action>
...
Key Decisions:
- <decision and rationale>
Risks:
- <things to watch out for>
Files to Review:
- <files that need attention>
To resume: The next session will automatically receive this
context via paradigm_session_recover.
npx claudepluginhub ascend42/a-paradigm --plugin paradigmGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.