Git Context
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 featurefix:- Bug fixdocs:- Documentation onlystyle:- Formatting, no code changerefactor:- Code change that neither fixes nor addsperf:- Performance improvementtest:- Adding testschore:- 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.
Related Skills
Epic Sync
Sync epic issue bodies, labels, and local coordination snapshots from GitHub.
Git 使用 Git Worktrees
创建孤立的 Git worktrees,带有智能目录选择与安全验证。
Git Claude skills github
[Building agent skills blog](https://www.anthropic.com/engineering/equipping-agents-for-the-real-world-with-ag
Git #148
, [#161](https://github.com/affaan-m/everything-claude-code/pull/161))
Git GitHub MCP
| Token | Repos, issues, PRs, workflows |
Git GitHub MCP Server
Official first-party server to read repos, manage issues/PRs, and automate workflows.
Git