From chad-tools
Resume work on a feature branch. Checks rebase status, shows recent commits, and orients to current state. Use when starting or resuming work on any non-default branch, or when the user says things like "where was I", "pick up where I left off", "continue working on this branch".
How this skill is triggered — by the user, by Claude, or both
Slash command
/chad-tools:resume-branchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When resuming work on a branch:
When resuming work on a branch:
main, fall back to master)git fetch origingit log HEAD..origin/<default> --onelinegit log --oneline -5gh pr view --json state,url,title 2>/dev/nullgit status --shortnpx claudepluginhub metcalfc/claude-plugin --plugin chad-toolsRebases the current feature branch onto the base branch (main/master/develop) to keep it up-to-date and prevent merge conflicts.
Validates Git repo state before starting work on issues/features: fetches remotes, checks existing PRs/issues, detects branch conflicts, stale changes, unclean diffs.
Summarizes git repository state: branch/sync status, staged/unstaged/untracked changes counts, recent commits, stashes, and suggested next steps.