Back to list
5dlabs

git-integration

by 5dlabs

Cognitive Task Orchestrator - GitOps on Bare Metal or Cloud for AI Agents

2🍴 1📅 Jan 24, 2026

SKILL.md


name: git-integration description: Git and GitHub integration patterns including branching, conflict resolution, and GitHub Actions. agents: [atlas] triggers: [git, github, merge, conflict, pr, branch, release]

Git and GitHub Integration

Patterns for Git workflows, conflict resolution, and GitHub automation.

Core Specialization

  • Git Operations: Branching, merging, rebasing, conflict resolution
  • GitHub Features: PRs, Issues, Actions, Releases
  • Workflow Automation: GitHub Actions, webhooks
  • Release Management: Semantic versioning, changelogs
  • Repository Management: Branch protection, CODEOWNERS

Execution Rules

  1. Clean history. Meaningful commits, squash when appropriate
  2. Conventional commits. feat:, fix:, chore:, etc.
  3. PR best practices. Clear description, linked issues
  4. Conflict resolution. Prefer rebase over merge for feature branches
  5. Automation. Automate repetitive tasks with Actions

Branch Management

Create Feature Branch

# From latest main
git fetch origin main
git checkout -b feature/task-123 origin/main

Rebase Before PR

git fetch origin main
git rebase origin/main
git push --force-with-lease

Interactive Rebase

# Clean up last 3 commits
git rebase -i HEAD~3

Conflict Resolution

During Rebase

git status                    # See conflicted files
# Edit files to resolve conflicts
git add <resolved-files>
git rebase --continue

# Abort if needed
git rebase --abort

Resolution Strategy

  1. Understand both sides of the conflict
  2. Preserve intent of all changes where possible
  3. Run tests after resolving
  4. Document non-obvious resolution decisions
  5. Escalate if resolution risks breaking functionality

GitHub CLI

# Create PR
gh pr create --title "feat: description" --body "Closes #123"

# List PRs
gh pr list --state open

# Merge PR (squash)
gh pr merge --squash --auto

# Create release
gh release create v1.0.0 --generate-notes

# View PR checks
gh pr checks

GitHub Actions Patterns

Basic CI Workflow

name: CI
on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Build
        run: make build
      - name: Test
        run: make test

Auto-merge for Dependabot

name: Dependabot auto-merge
on: pull_request

permissions:
  contents: write
  pull-requests: write

jobs:
  auto-merge:
    runs-on: ubuntu-latest
    if: github.actor == 'dependabot[bot]'
    steps:
      - name: Auto-merge
        run: gh pr merge --auto --squash "$PR_URL"
        env:
          PR_URL: ${{ github.event.pull_request.html_url }}
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Conventional Commits

PrefixPurposeExample
feat:New featurefeat: add user authentication
fix:Bug fixfix: resolve login timeout
docs:Documentationdocs: update API reference
style:Formattingstyle: fix indentation
refactor:Code refactoringrefactor: extract auth service
test:Adding teststest: add auth unit tests
chore:Maintenancechore: update dependencies

Release Management

Semantic Versioning

  • MAJOR (1.x.x): Breaking changes
  • MINOR (x.1.x): New features, backward compatible
  • PATCH (x.x.1): Bug fixes

Release Process

# Tag release
git tag -a v1.2.0 -m "Release v1.2.0"
git push origin v1.2.0

# Create GitHub release
gh release create v1.2.0 --generate-notes

Guidelines

  • Understand both sides of a conflict before resolving
  • Preserve intent of all changes where possible
  • Run tests after resolving conflicts
  • Document non-obvious resolution decisions
  • Escalate if resolution risks breaking functionality

Score

Total Score

65/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon