workflows-git

Orchestrate Git workflows across workspace setup, commit hygiene, and finish steps.

31|3|Updated Dec 23, 2025
One-click install
npx skills add https://github.com/MichelKerkmeester/Opencode_Dev_Environment --skill workflows-git
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflows-git
Source: https://github.com/MichelKerkmeester/Opencode_Dev_Environment/tree/main/.opencode/skill/workflows-git
Command: npx skills add https://github.com/MichelKerkmeester/Opencode_Dev_Environment --skill workflows-git

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes assets (resource) and references (resource) components.

What problem does it solve?

This skill provides structured Git workflow orchestration, guiding users through workspace setup, commits, and finish steps with standardized patterns to reduce mistakes and speed collaboration.

Core Features & Use Cases

  • Step-by-step git-workflow orchestration (worktree, commit, finish)
  • Templates for commit messages and PR workflows
  • Guardrails to enforce conventional commits and branch hygiene
  • Clear decision points to choose the next action

Quick Start

git-workflow: start new-workspace --type feature /feature/user-auth

Frequently Asked Questions about workflows-git

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up consistent Git workflows across my team?

Git workflow orchestration standardizes workspace setup, commit hygiene, and finish steps across team members. This Skill guides you through step-by-step processes using worktrees, conventional commits, and branch management to reduce mistakes and enforce consistent patterns from feature start to PR completion.

What's the best way to manage multiple branches and worktrees in Git?

Git worktrees isolate parallel work without branch conflicts. This Skill orchestrates worktree creation, switching between isolated workspaces, and cleanup, enabling teams to work on features, fixes, and reviews simultaneously while maintaining workspace separation and preventing accidental commits to the wrong branch.

How do I enforce conventional commits and maintain commit hygiene?

Conventional commits standardize message formatting for automated tooling and readable history. This Skill provides templates and guardrails to enforce consistent commit syntax, validate messages before pushing, and ensure atomic, well-documented commits that integrate with PR workflows and GitHub.

Can I automate Git workflow steps from workspace setup through PR review?

Yes. This Skill automates the complete workflow: initialize worktrees, scaffold commit messages using templates, validate branch hygiene, run test gates, and integrate with GitHub MCP for PR reviews and remote synchronization via PAT-based authentication.

What's the difference between using individual Git commands versus a workflow orchestrator?

Individual Git commands require manual sequencing and are error-prone at scale. A workflow orchestrator applies decision logic, templates, and guardrails to enforce patterns consistently, reducing context switching and ensuring teams follow the same branching strategy, commit format, and cleanup procedures.

Do I need GitHub integration to use structured Git workflows?

GitHub integration enables PR reviews, remote synchronization, and automated dependency setup. This Skill supports GitHub MCP with PAT-based authentication via .utcp_config.json, but core workflow orchestration—worktree management, commits, and branch hygiene—functions independently of remote platforms.