How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-git:simple-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a simple, concise pull request title and description for minor changes.
Create a simple, concise pull request title and description for minor changes.
Use this for:
Gathers git context:
git status - Current changesgit rev-parse --abbrev-ref origin/HEAD - Detect the default branch (use this result, e.g. origin/main → main, do NOT substitute from context)git diff <default-branch>...HEAD - All changes since branching (use the branch name from the command above)git log --oneline <default-branch>..HEAD - Commit historyGenerates a concise PR:
CRITICAL: Output will be used directly with gh pr create.
Structure:
Template:
Brief description of what this changes and why.
Any additional context, risks, or follow-up items (optional).
npx claudepluginhub itsthatguy/nix-shared --plugin claude-gitGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.