skills/git-workflows/SKILL.md
Local git operations for syncing, branching, merging, and conflict resolution
npx skillsauth add dtsong/my-claude-setup git-workflowsInstall 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.
A comprehensive suite of git workflow skills for local repository operations.
.., shell metacharacters, or null bytes.. traversal, null bytes, and shell metacharacters| Skill | Purpose | Invoke |
|-------|---------|--------|
| /git-sync | Fetch and show remote changes | git sync, what's new upstream |
| /git-pull | Pull with merge/rebase strategy | git pull, get latest |
| /git-push | Push with upstream handling | git push, push changes |
| Skill | Purpose | Invoke |
|-------|---------|--------|
| /git-stash | Save/pop/list stashed changes | git stash, save my work |
| Skill | Purpose | Invoke |
|-------|---------|--------|
| /git-branch | Create branches with naming conventions | git branch, new branch |
| /git-switch | Switch branches safely | git switch, checkout branch |
| /git-branches | List and visualize branch status | git branches, list branches |
| /git-delete-branch | Delete local/remote with safety | delete branch, cleanup branch |
| Skill | Purpose | Invoke |
|-------|---------|--------|
| /git-merge-main | Merge main into feature branch | merge main, update from main |
| /git-rebase | Rebase onto main with guidance | git rebase, rebase onto main |
| /git-squash | Squash commits non-interactively | git squash, clean up commits |
| Skill | Purpose | Invoke |
|-------|---------|--------|
| /git-abort | Abort failed merge/rebase/cherry-pick | git abort, cancel merge |
| /git-conflicts | Guided conflict resolution | git conflicts, fix conflicts |
# Sync workflow
/git-sync # See what's new
/git-pull # Get changes
/git-push # Push changes
# Branch workflow
/git-branch feat/xyz # Create branch
/git-switch main # Switch branch
/git-branches # See all branches
# Integration
/git-merge-main # Update from main
/git-rebase # Rebase on main
/git-squash # Clean up history
git rebase -i) requires a TTY and fails in Claude Code — use git rebase (non-interactive) or git rebase --ontogit checkout is ambiguous (branches vs files) — prefer git switch for branches, git restore for files--force) to protected branches is rejected by most remotes — use --force-with-lease which fails if remote has new commitsgit stash doesn't stash untracked files — use git stash -u to include untrackedgit pull with diverged branches creates merge commits — use git pull --rebase or git pull --ff-only to avoid surprise mergesgit add . stages everything including .env files and secrets — always use git add <specific-files> or check git status first/commit - Create commits with conventional messages/commit-push-pr - Full commit, push, and PR workflow/gh-pr-* - GitHub PR operationsdevelopment
Use when the council needs to surface organizational knowledge buried across multiple internal sources (wikis, design docs, ADRs, past tickets, postmortems, chat archives, code repos). Plans where to look, what to cross-reference, and how to synthesize findings into evidence the council can act on. Do not use for external market research (use competitive-analysis), library evaluation (use library-evaluation), or technology trend assessment (use technology-radar).
testing
Use to convert a Word .docx file to PDF and/or verify its page count. Triggers on: converting docx to pdf, rendering a document, checking how many pages a docx produces, or asserting a page-count constraint (e.g. a resume must stay 2 pages). Wraps LibreOffice headless conversion.
development
Security audit checklist for web applications. Use when reviewing, auditing, or hardening a web app's security posture. Covers rate limiting, auth headers, IP blocking, CORS, security middleware, input validation, file upload limits, ORM usage, and password hashing. Triggers on requests like "review security", "harden this app", "security audit", "check for vulnerabilities", or when building/reviewing API endpoints.
development
Interactive wizard to craft effective prompts using Claude Code best practices