.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 ```
tools
Build Teams-native agents with the Teams SDK (formerly Teams AI Library v2) — App class, activity routing, adaptive cards, streaming, AI-generated labels, feedback, message extensions, Teams-as-MCP-server, and the bring-your-own-AI pattern with Agent Framework.
tools
Run agents on Microsoft Foundry (formerly Azure AI Foundry) Agent Service — prompt agents vs hosted agents, threads/runs and the Responses API, built-in tools (Bing grounding, code interpreter, file search, MCP, OpenAPI, A2A), connected agents, Entra agent identity, SDKs, and observability/evaluations.
tools
Build and host custom engine agents with the Microsoft 365 Agents SDK — AgentApplication, the Activity protocol, channel reach via Azure Bot Service, hosting Agent Framework or Semantic Kernel engines, and the Agents Toolkit/Playground workflow. Successor to the Bot Framework SDK.
tools
Design, govern, and extend Microsoft Copilot Studio agents — topics, generative orchestration, knowledge, tools and MCP, agent flows, autonomous triggers, publishing channels, Copilot Credits pricing, and solution-based ALM on Power Platform.