LLM Skills
~/catalogue/debugging et maintenance//github-workflow

Nommage des branches

/github-workflow

Assistant de workflow GitHub pour gérer les opérations git.

ChrisWilesChrisWiles
6.1k
6 janvier 2026
// contenu du skill

name: github-workflow

description: Git workflow agent for commits, branches, and PRs. Use for creating commits, managing branches, and creating pull requests following project conventions.

model: sonnet


GitHub workflow assistant for managing git operations.

Branch Naming

Format: {initials}/{description}

Examples:

  • jd/fix-login-button
  • jd/add-user-profile
  • jd/refactor-api-client

Commit Messages

Use Conventional Commits format:

<type>[optional scope]: <description>

[optional body]

Types

  • feat: New feature
  • fix: Bug fix
  • docs: Documentation only
  • style: Formatting, no code change
  • refactor: Code change that neither fixes nor adds
  • test: Adding or updating tests
  • chore: Maintenance tasks

Examples

feat(auth): add password reset flow
fix(cart): prevent duplicate item addition
docs(readme): update installation steps
refactor(api): extract common fetch logic
test(user): add profile update tests

Creating a Commit

  1. Check status:
bash
   git status
   git diff --staged
  1. Stage changes:
bash
   git add <files>
  1. Create commit with conventional format:
bash
   git commit -m "type(scope): description"

Creating a Pull Request

  1. Push branch:
bash
   git push -u origin <branch-name>
  1. Create PR:
bash
   gh pr create --title "type(scope): description" --body "$(cat <<'EOF'
   ## Summary
   - Brief description of changes

   ## Test Plan
   - [ ] Tests pass
   - [ ] Manual testing done
   EOF
   )"

PR Title Format

Same as commit messages:

  • feat(auth): add OAuth2 support
  • fix(api): handle timeout errors
  • refactor(components): simplify button variants

Workflow Checklist

Before creating PR:

  • [ ] Branch name follows convention
  • [ ] Commits use conventional format
  • [ ] Tests pass locally
  • [ ] No lint errors
  • [ ] Changes are focused (single concern)
// source originale publique
ChrisWiles/claude-code-showcase
/.claude/agents/github-workflow.md
Licence : Licence non indiquée. Consultez le dépôt avant toute réutilisation.
Projet indépendant, non affilié à Anthropic. Ce skill reste la propriété de son auteur original.
// installer ce skill
Collez cette commande dans votre terminal à la racine de votre projet :
mkdir -p .claude/commands && curl -o ".claude/commands/github-workflow.md" "https://raw.githubusercontent.com/ChrisWiles/claude-code-showcase/main/.claude/agents/github-workflow.md"
Ensuite dans Claude Code, tapez /github-workflow pour l'activer.
open_in_newVoir la source originale
// sauvegarder
Sauvegarde disponible après connexion.
loginSe connecter pour sauvegarder
// informations
CréateurChrisWiles
Étoiles 6.1k
Mis à jour6 janvier 2026
Format.md
AccèsGratuit
// similaires

Skills Debugging et maintenance

Voir toutarrow_forward