Git Context banner
llcoolblaze llcoolblaze

Git Context

Git community intermediate

Description

!`git status --short` !`git branch --show-current` !`git log -3 --oneline` !`git diff --stat` --- Based on the changes above, execute the full git workflow:

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for llcoolblaze/claude-boris, shared by 3 entries in this directory. It describes the repository, not this entry specifically.


description: Complete git workflow - stage changes, commit with conventional message, push to remote, and create a pull request

Git Context

!`git status --short` !`git branch --show-current` !`git log -3 --oneline` !`git diff --stat`


Based on the changes above, execute the full git workflow:

1. Stage Changes

Stage all modified files appropriately.

2. Commit

Create a commit with a **conventional commit** message:

  • feat: - New feature
  • fix: - Bug fix
  • docs: - Documentation only
  • style: - Formatting, no code change
  • refactor: - Code change that neither fixes nor adds
  • perf: - Performance improvement
  • test: - Adding tests
  • chore: - Maintenance, deps, config

Format: `type(scope): description`

Keep the first line under 72 characters. Add a body if the change needs explanation.

3. Push

Push to the remote repository. Create the remote branch if needed.

4. Create PR

Use `gh pr create` to open a pull request with:

  • Clear, descriptive title
  • Body explaining what changed and why
  • Link to related issues if applicable
gh pr create --title "type(scope): description" --body "## Summary
- What was done
- Why it was done

## Testing
- How it was tested

## Related
- Closes #123 (if applicable)"

If there are no changes to commit, inform the user and suggest next steps.