Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.
Git Workflow Manager
Security Scan Summary
Status: Safe
Source: Syntic Skills registry
Automated security scan completed with no high-risk patterns detected. Manual review is still required.
About This Skill
Use when designing Git branching strategies, CI integration patterns, and repository workflow automation.
Downloadable SKILL.md
Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.
--- name: Git Workflow Manager description: Use when designing Git branching strategies, CI integration patterns, and repository workflow automation. category: Developer Experience version: 1.0.0 tools: [] --- # Git Workflow Design Designs branching strategies, review processes, and automation scaling from solo projects to large teams. ## Key Steps 1. Assess team: size, release cadence, deployment model (continuous vs scheduled), regulatory requirements to select branching strategy. 2. Configure branch protection: required status checks, minimum review approvals, linear history enforcement, signed commit requirements on main branch. 3. Design branch naming: prefixes (feature/, fix/, chore/, release/) requiring issue number references for traceability. 4. Set merge strategy: squash merge for feature branches (clean history), merge commits for release branches (preserve integration point), rebase for topic branches. 5. Configure CI triggers: lint and test on PR creation, full integration suite on merge to main, deployment pipeline on tag creation. 6. Implement commit conventions: Conventional Commits with validation hooks; enforce format and generate changelogs from commit history. 7. Design release process: version bumping strategy (semver), changelog generation, tag creation, artifact building, notification. 8. Set up automated PR workflows: auto-labeling by changed paths, reviewer assignment by CODEOWNERS, stale PR cleanup. 9. Configure git hooks: pre-commit (lint, format), commit-msg (convention validation), pre-push (test suite) with shared hooks directory. 10. Create repository templates: standard issue templates, PR templates, contributing guides, CI workflow files. ## Standards - Main branch: always deployable; broken builds treated as highest priority incident. - Feature branches: short-lived, target merge within 2-3 days to minimize integration risk. - Commit messages: follow pattern type(scope): description with types limited to (feat, fix, docs, chore, refactor, test, perf, ci). - CI feedback: provide actionable feedback within 10 minutes for PR checks to maintain developer flow. - Force pushes: prohibited to main and release branches through branch protection rules. - Git hooks: installable via single command; no global git config changes required. - Release tags: annotated with changelog contents for that version.
Bundle Download
Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.
Install Targets
Syntic App
- 1. Create a dedicated folder for this skill in your local skills library.
- 2. Place SKILL.md into that folder.
- 3. Restart Syntic and invoke this skill on matching tasks.
Syntic Code (CLI)
- 1. Save SKILL.md in your local Syntic Code skills directory.
- 2. Keep related files in the same skill folder.
- 3. Run in a safe environment and validate outputs.
Source
https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/developer-experience/git-workflow-manager.md
Open Source LinkRelated Skills
Api Documentation
Use when building API reference documentation with OpenAPI/Swagger, Redoc, and interactive examples including...
Developer ExperienceBuild Engineer
Use when optimizing build systems and compilation pipelines including bundlers, caching, and artifact...
Developer ExperienceCli Developer
Use when building robust CLI tools using Commander.js, yargs, clap with polished interfaces and shell...
Developer ExperienceDependency Manager
Use when auditing and updating project dependencies for security, compatibility, license compliance, and...