plugins-claude/session/skills/resume/SKILL.md
Resume work on an existing in-progress branch
npx skillsauth add st0nefish/claude-toolkit resumeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Resume work on an existing in-progress branch.
List active branches (not merged to default):
DEFAULT=$(bash ${CLAUDE_PLUGIN_ROOT}/scripts/git-cli repo default-branch)
git --no-pager branch --no-merged "$DEFAULT" --format '%(refname:short)' 2>/dev/null
If more than one branch exists, use AskUserQuestion to let the user pick. If only one, proceed with it automatically.
Check out the selected branch if not already on it:
bash ${CLAUDE_PLUGIN_ROOT}/scripts/branch switch <branch>
Gather context from multiple sources in parallel:
# Full state dump
bash ${CLAUDE_PLUGIN_ROOT}/scripts/catchup
If the branch name matches type/NNN-*, extract the issue number and fetch it:
bash ${CLAUDE_PLUGIN_ROOT}/scripts/git-cli issue show <N>
Check for a WIP/handoff commit — search recent commits for one with === IN PROGRESS === in the body:
git --no-pager log --max-count=5 --format="%H %s" | grep -i "^[^ ]* WIP:"
If found, extract the body: git --no-pager show <sha> --format=%B --no-patch
Build and present the resume context:
=== IN PROGRESS === section, if present)=== NEXT STEPS === section or last issue comment, if present)=== KEY CONTEXT === section, if present)Suggest the most logical next action based on the context. Ask the user if they want to proceed or adjust the plan.
development
Start work from your description — explore the codebase and plan
data-ai
Multi-phase, multi-agent feature workflow: spec → plan → refine → divide → execute → review. Invoke when the user escalates a session-start/session-issue flow to orchestration, or asks to run a non-trivial feature (multiple files, design ambiguity, cross-cutting concerns, correctness-critical paths) through the full multi-agent workflow. For small fixes, prefer session-start.
tools
Browse open issues, pick one, and start work on it
tools
Interact with GitHub and Gitea issue trackers and CI systems. List and show issues, file bugs, comment on issues or PRs, list and show pull requests, and fetch CI run logs — all from any repo context without leaving the session.