.claude/skills/git-workflows/SKILL.md
Git workflows including branching strategies, commits, merging, rebasing, and GitHub collaboration. Activate for git commands, version control, PRs, and repository management.
npx skillsauth add markus41/claude gitworfkflowsInstall 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.
Provides comprehensive Git version control capabilities for the Golden Armada AI Agent Fleet Platform.
Activate this skill when working with:
```bash
git status git log --oneline -10 git diff git diff --staged
git add <file> git add . git add -p # Interactive staging
git commit -m "message" git commit -am "message" # Add and commit git commit --amend
git branch git branch <name> git checkout <branch> git checkout -b <branch> git switch <branch> git switch -c <branch>
git merge <branch> git merge --no-ff <branch> git rebase <branch>
git fetch git pull git push git push -u origin <branch> ```
``` main ─────●─────────────●─────────────●─────── │ │ │ release ─────┼─────●───────┼─────────────┼─────── │ │ │ │ develop ─────●─────┼───────●─────────────●─────── │ │ │ │ feature ─────●─────┘ │ │ │ │ hotfix ───────────────────●─────────────┘ ```
```bash
feature/add-agent-api feature/GA-123-user-auth
bugfix/fix-agent-timeout bugfix/GA-456-memory-leak
hotfix/critical-security-patch
release/v1.0.0 ```
```bash
<type>(<scope>): <subject>
<body> <footer>feat: New feature fix: Bug fix docs: Documentation style: Formatting (no code change) refactor: Code refactoring test: Adding tests chore: Maintenance
git commit -m "feat(agent): add Claude agent support" git commit -m "fix(api): resolve timeout in task processing" git commit -m "docs: update deployment instructions" ```
```bash git checkout develop git pull origin develop git checkout -b feature/new-feature
git add . git commit -m "feat: implement new feature" git push -u origin feature/new-feature
```
```bash git checkout develop git pull origin develop git checkout feature/my-feature git rebase develop
git push --force-with-lease ```
```bash git rebase -i HEAD~3 # Interactive rebase last 3 commits
```
```bash
git reset --soft HEAD~1
git reset --hard HEAD~1
git restore --staged <file>
git restore <file>
git revert <commit-hash> ```
```bash
gh pr create --title "Feature: Add agent API" --body "Description" gh pr list gh pr checkout <number> gh pr merge <number> gh pr review <number> --approve
gh issue create --title "Bug: Agent timeout" --label bug gh issue list gh issue close <number>
gh repo clone <owner>/<repo> gh repo view --web ```
```gitignore
node_modules/ venv/ pycache/
dist/ build/ *.egg-info/
.env .env.local *.local
.idea/ .vscode/ *.swp
.DS_Store Thumbs.db
*.log logs/
*.pem *.key credentials.json ```
```bash
#!/bin/sh npm run lint npm run test
#!/bin/sh if ! grep -qE "^(feat|fix|docs|style|refactor|test|chore)((.+))?: .{1,50}" "$1"; then echo "Invalid commit message format" exit 1 fi ```
development
Enhanced plan-authoring skill with Pre-Writing context gathering, task metadata, non-TDD templates, Red Flags, telemetry, and an automated plan linter. Use when you have a spec or requirements for a multi-step task, before touching code.
tools
Documentation intelligence engine with graph-based API docs, algorithm library, and drift detection
tools
Ultraplan cloud planning — kick off a plan in the cloud from your terminal, review and revise in the browser, then execute remotely or send back to CLI
tools
--- name: mcp description: Configure MCP servers for Claude Code — stdio vs HTTP, authentication, Tools/Resources/Prompts distinction, channels (CI webhook, mobile relay, Discord bridge, fakechat), and cost of always-loaded tools. Use this skill whenever adding an MCP server, debugging connection issues, choosing between MCP Tools vs Prompts vs Resources, installing channel servers, or managing .mcp.json. Triggers on: "MCP server", "mcp config", "add Obsidian MCP", "install context7", "channels"