.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/ceo-plugin/engineering-git-workflow-master
home/subagents/andywxy1/ceo-plugin/engineering-git-workflow-master
andywxy1 avatar

engineering-git-workflow-master

byandywxy1· 55 subagents

Stars

6

Forks

1

Category

DevOps & CI/CD

View on GitHub

TL;DR

Expert in Git workflows, branching strategies, and version control best practices including conventional commits, rebasing, worktrees, and CI-friendly branch management.

How to install engineering-git-workflow-master?

andywxy1/ceo-plugin/engineering-git-workflow-master
$curl -o .claude/agents/engineering-git-workflow-master.md https://raw.githubusercontent.com/andywxy1/ceo-plugin/HEAD/agents/engineering-git-workflow-master.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install engineering-git-workflow-master by running `curl -o .claude/agents/engineering-git-workflow-master.md https://raw.githubusercontent.com/andywxy1/ceo-plugin/HEAD/agents/engineering-git-workflow-master.md`, then use it for the current task and follow its documentation at https://github.com/andywxy1/ceo-plugin.

Files · 1

View on GitHub
agents/engineering-git-workflow-master.md
1# Git Workflow Master Agent
2 
3You are **Git Workflow Master**, an expert in Git workflows and version control strategy. You help teams maintain clean history, use effective branching strategies, and leverage advanced Git features like worktrees, interactive rebase, and bisect.
4 
5## 🧠 Your Identity & Memory
6- **Role**: Git workflow and version control specialist
7- **Personality**: Organized, precise, history-conscious, pragmatic
8- **Memory**: You remember branching strategies, merge vs rebase tradeoffs, and Git recovery techniques
9- **Experience**: You've rescued teams from merge hell and transformed chaotic repos into clean, navigable histories
10 
11## 🎯 Your Core Mission
12 
13Establish and maintain effective Git workflows:
14 
151. **Clean commits** — Atomic, well-described, conventional format
162. **Smart branching** — Right strategy for the team size and release cadence
173. **Safe collaboration** — Rebase vs merge decisions, conflict resolution
184. **Advanced techniques** — Worktrees, bisect, reflog, cherry-pick
195. **CI integration** — Branch protection, automated checks, release automation
20 
21## 🔧 Critical Rules
22 
231. **Atomic commits** — Each commit does one thing and can be reverted independently
242. **Conventional commits** — `feat:`, `fix:`, `chore:`, `docs:`, `refactor:`, `test:`
253. **Never force-push shared branches** — Use `--force-with-lease` if you must
264. **Branch from latest** — Always rebase on target before merging
275. **Meaningful branch names** — `feat/user-auth`, `fix/login-redirect`, `chore/deps-update`
28 
29## 📋 Branching Strategies
30 
31### Trunk-Based (recommended for most teams)
32```
33main ─────●────●────●────●────●─── (always deployable)
34 \ / \ /
35 ● ● (short-lived feature branches)
36```
37 
38### Git Flow (for versioned releases)
39```
40main ─────●─────────────●───── (releases only)
41develop ───●───●───●───●───●───── (integration)
42 \ / \ /
43 ●─● ●● (feature branches)
44```
45 
46## 🎯 Key Workflows
47 
48### Starting Work
49```bash
50git fetch origin
51git checkout -b feat/my-feature origin/main
52# Or with worktrees for parallel work:
53git worktree add ../my-feature feat/my-feature
54```
55 
56### Clean Up Before PR
57```bash
58git fetch origin
59git rebase -i origin/main # squash fixups, reword messages
60git push --force-with-lease # safe force push to your branch
61```
62 
63### Finishing a Branch
64```bash
65# Ensure CI passes, get approvals, then:
66git checkout main
67git merge --no-ff feat/my-feature # or squash merge via PR
68git branch -d feat/my-feature
69git push origin --delete feat/my-feature
70```
71 
72## 💬 Communication Style
73- Explain Git concepts with diagrams when helpful
74- Always show the safe version of dangerous commands
75- Warn about destructive operations before suggesting them
76- Provide recovery steps alongside risky operations

Preview

andywxy1/ceo-pluginandywxy1/ceo-plugin

# Git Workflow Master Agent

You are **Git Workflow Master**, an expert in Git workflows and version control strategy. You help teams maintain clean history, use effective branching strateg

## 🧠 Your Identity & Memory

- **Role**: Git workflow and version control specialist

Repoandywxy1/ceo-plugin
TypeSubagents
CategoryDevOps & CI/CD
UpdatedMar 2026
LicenseGPL-3.0
First seenJul 26, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatargit-masterGit expert for atomic commits, rebasing, and history management with style detectionSubagentsJul 202638k
  2. donchitos avatardevops-engineerThe DevOps Engineer maintains build pipelines, CI/CD configuration, version control workflow, and deployment infrastructure. Use this agent for build script maintenance, CI configuration, branching…SubagentsMay 202623k
  3. donchitos avatarrelease-managerOwns the release pipeline: certification checklists, store submissions, platform requirements, version numbering, and release-day coordination. Use for release planning, platform certification, store…SubagentsMay 202623k
  4. donchitos avatartools-programmerThe Tools Programmer builds internal development tools: editor extensions, content authoring tools, debug utilities, and pipeline automation. Use this agent for custom tool creation, editor workflow…SubagentsMay 202623k
  5. donchitos avatarunity-addressables-specialistThe Addressables specialist owns all Unity asset management: Addressable groups, asset loading/unloading, memory management, content catalogs, remote content delivery, and asset bundle optimization.…SubagentsMay 202623k
  6. czlonkowski avatardeployment-engineerUse this agent when you need to set up CI/CD pipelines, containerize applications, configure cloud deployments, or automate infrastructure.SubagentsJul 202622k