بنقرة واحدة
git-workflow
自动化Git操作,智能生成遵循Conventional Commits的提交信息、分支管理和PR描述生成。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
自动化Git操作,智能生成遵循Conventional Commits的提交信息、分支管理和PR描述生成。
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
自动分析B站视频内容,下载视频并拆解成帧图片,使用AI分析并生成详细的专题文档或实操教程。
设计RESTful API并生成OpenAPI/Swagger规范文档,遵循行业最佳实践。包括端点命名、请求/响应模式和错误处理模式。
为GitHub Actions、GitLab CI、Azure DevOps和Jenkins生成CI/CD流水线,包含构建、测试、部署阶段、缓存和密钥管理。
全面的代码审查技能,分析代码质量、识别问题、安全漏洞,并提供带严重性评级的改进建议。
设计和优化数据库模式,支持PostgreSQL、MySQL、SQLite和MongoDB。包括ER建模、规范化、索引优化和迁移脚本生成。
创建和管理多容器应用的Docker Compose配置,包含生产级设置、健康检查和网络配置。
| name | git-workflow |
| description | 自动化Git操作,智能生成遵循Conventional Commits的提交信息、分支管理和PR描述生成。 |
| metadata | {"short-description":"智能Git操作和提交信息"} |
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