tatat/agents-playground

git-workflow

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

First seen Jan 24, 2026

Installation

$ npx skills add tatat/agents-playground --skill git-workflow

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from tatat/agents-playground · top by installs.

npx skills add tatat/agents-playground

Browse all from tatat/agents-playground

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 5
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,411 B
  • docs SUMMARY.md 92 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 14 installs

SKILL.md

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

<type>(<scope>): <subject>

<body>

<footer>

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

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

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