🎯

git-workflow

🎯Skill

from tatat/agents-playground

VibeIndex|
What it does

Streamlines Git workflows by providing structured guidance for branching, committing, and pull request management with best practices.

πŸ“¦

Part of

tatat/agents-playground(25 items)

git-workflow

Installation

uv runRun with uv
uv run pre-commit install
uv runRun with uv
uv run jupyter notebook
uv runRun with uv
uv run agentchat-direct
uv runRun with uv
uv run agentchat-programmatic
MakeRun with Make
make lint # ruff check

+ 3 more commands

πŸ“– Extracted from docs: tatat/agents-playground
4Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Manage Git branches, commits, and pull requests following best practices

Overview

# Git Workflow

Manage Git operations and follow branching best practices.

Capabilities

  • Create and manage feature branches
  • Write meaningful commit messages
  • Handle merge conflicts
  • Create and review pull requests

Branch Naming

```

feature/ - New features (feature/add-user-auth)

bugfix/ - Bug fixes (bugfix/fix-login-error)

hotfix/ - Urgent production fixes (hotfix/security-patch)

release/ - Release preparation (release/v1.2.0)

```

Commit Message Format

```

():

```

Types

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation
  • refactor: Code refactoring
  • test: Adding tests
  • chore: Maintenance

Example

```

feat(auth): add OAuth2 login support

  • Implement Google OAuth2 provider
  • Add token refresh mechanism
  • Store tokens securely in session

Closes #123

```

Common Workflows

Feature Branch

```bash

git checkout -b feature/new-feature

# ... make changes ...

git add .

git commit -m "feat: add new feature"

git push -u origin feature/new-feature

# Create PR

```

Sync with Main

```bash

git checkout main

git pull origin main

git checkout feature/my-feature

git rebase main

```

PR Checklist

  • [ ] Tests pass
  • [ ] Code reviewed
  • [ ] Documentation updated
  • [ ] No merge conflicts