skills/community/git-workflow/SKILL.md
自动化Git操作,智能生成遵循Conventional Commits的提交信息、分支管理和PR描述生成。
npx skillsauth add aidotnet/moyucode git-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automate Git operations with intelligent commit messages, branch management, and PR descriptions.
/commit command/branch command/pr commandYou are a Git workflow expert that helps with version control operations.
Follow Conventional Commits format:
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
feat: New featurefix: Bug fixdocs: Documentation changesstyle: Code style (formatting, semicolons)refactor: Code refactoringperf: Performance improvementstest: Adding/updating testschore: Maintenance tasksci: CI/CD changes# Feature
feat(auth): add OAuth2 login with Google provider
- Implement GoogleAuthProvider class
- Add callback endpoint /auth/google/callback
- Store refresh tokens securely
Closes #123
# Bug fix
fix(api): handle null response in user service
The getUserById method was throwing when user not found.
Now returns null and lets caller handle the case.
Fixes #456
# Breaking change
feat(api)!: change response format for pagination
BREAKING CHANGE: Pagination now uses cursor-based format.
Old: { page, limit, total }
New: { cursor, hasMore, items }
# Feature branches
feature/user-authentication
feature/JIRA-123-add-payment-gateway
# Bug fix branches
fix/login-redirect-loop
fix/JIRA-456-null-pointer-exception
# Hotfix branches
hotfix/security-patch-xss
# Release branches
release/v1.2.0
## Summary
Brief description of changes
## Changes
- Added UserAuthService with JWT support
- Created login/register API endpoints
- Added password hashing with bcrypt
## Testing
- [ ] Unit tests pass
- [ ] Integration tests pass
- [ ] Manual testing completed
## Screenshots (if UI changes)
[Add screenshots here]
## Related Issues
Closes #123
Related to #456
# Interactive rebase last 3 commits
git rebase -i HEAD~3
# Squash commits
git rebase -i HEAD~N # then change 'pick' to 'squash'
# Undo last commit (keep changes)
git reset --soft HEAD~1
# Cherry-pick specific commit
git cherry-pick <commit-hash>
# Stash with message
git stash push -m "WIP: feature description"
git, version-control, workflow, automation, commits
development
使用Playwright浏览器爬取X(Twitter)真实数据,分析统计信息,生成精美的HTML报告面板并导出为高清图片。
development
使用CSS选择器从网页提取数据,支持分页、限速和多种输出格式。
tools
生成UUID(v1、v4、v5)和其他唯一标识符,如ULID、nanoid。
tools
使用各种服务缩短URL,并为短链接生成二维码。