一键导入
commit-message-generator
Generate clear, conventional, and meaningful commit messages following best practices and conventional commit standards
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate clear, conventional, and meaningful commit messages following best practices and conventional commit standards
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Maintain and organize a curated library of code templates, boilerplate, and scaffolds for rapid project initialization
Generate reusable, customizable code snippets for common programming patterns and boilerplate code across multiple languages
Provide guidance on git workflows, branching strategies, and best practices for individual and team development
Generate personalized, context-aware greetings for developers at different times of day and moods
Provide inspiring coding wisdom, productivity tips, and encouragement to keep developers motivated and focused
Science-backed techniques for maintaining deep focus, managing distractions, and maximizing productive coding sessions
| name | Commit Message Generator |
| description | Generate clear, conventional, and meaningful commit messages following best practices and conventional commit standards |
Generate high-quality commit messages that:
Invoke this skill when:
Examine the git diff to understand:
Choose the appropriate conventional commit type:
Determine the scope (area of codebase):
auth, api, uiparser, validatorlogin, checkoutCreate a subject line that:
type(scope):Include a body for complex changes:
Add footer for:
BREAKING CHANGE: descriptionCloses #123, Fixes #456Co-authored-by: Name <email>feat(auth): add password reset functionality
Implements password reset via email token. Users can now request
a password reset link that expires after 1 hour.
- Add /reset-password endpoint
- Implement email token generation
- Add reset form UI
Closes #142
fix(api): resolve null pointer exception in user validation
The validator was not checking for null email values before
processing, causing crashes when users submitted empty forms.
Previous behavior: Crash on null email
New behavior: Return validation error message
Fixes #234
feat(api)!: change authentication to JWT tokens
BREAKING CHANGE: Session-based auth is replaced with JWT tokens.
Clients must now include 'Authorization: Bearer <token>' header
instead of cookie-based sessions.
Migration guide:
1. Update API client to use Authorization header
2. Remove session cookie handling
3. Implement token refresh logic
Closes #567
docs(readme): add installation instructions for Windows
Added step-by-step Windows installation guide including:
- Node.js version requirements
- Common PATH configuration issues
- WSL2 setup recommendations
refactor(parser): extract validation logic to separate module
Improves code organization and testability by moving validation
rules into dedicated validator module. No functional changes.
- Create validator.ts module
- Move validation rules from parser.ts
- Update tests to reflect new structure
<type>[(optional scope)][!]: <description>
[optional body]
[optional footer(s)]
feat(auth): ...
fix(api): ...
docs(readme): ...
style(button): ...
refactor(parser): ...
perf(query): ...
test(auth): ...
build(deps): ...
ci(github): ...
chore(release): ...
feat: add [feature]feat(scope): implement [functionality]feat: support [capability]feat: enable [feature]fix: resolve [issue]fix(scope): correct [problem]fix: prevent [error]fix: handle [edge case]refactor: extract [component]refactor: simplify [logic]refactor: reorganize [structure]refactor: rename [element] to [new name]docs: add [documentation]docs: update [section]docs: improve [content]docs: fix typo in [location]ui, component, layout, style, form, nav, header, footerapi, auth, db, model, controller, middleware, serviceclient, server, shared, config, types, utilsci, cd, docker, k8s, deploy, monitoring, loggingfeat(api): add user profile management endpoints
Implements CRUD operations for user profiles including:
- GET /users/:id/profile - Fetch profile
- PUT /users/:id/profile - Update profile
- POST /users/:id/profile/avatar - Upload avatar
- DELETE /users/:id/profile/avatar - Remove avatar
All endpoints include proper authentication and authorization.
Closes #123, #124, #125
build(deps): upgrade React from 17.0.2 to 18.2.0
Major version update with breaking changes in:
- Concurrent rendering API
- Automatic batching behavior
- SSR changes
Updated all components to use new createRoot API.
All tests passing with new version.
BREAKING CHANGE: Requires Node.js >= 14.0.0
fix(security): patch XSS vulnerability in comment rendering
SECURITY: User-submitted comments were not properly sanitized,
allowing script injection attacks.
Solution: Implement DOMPurify sanitization on all user content
before rendering.
Severity: High
Affected versions: 1.0.0 - 1.2.3
Fixed in: 1.2.4
CVE-XXXX-XXXXX
<type>(<scope>): <subject>
<body paragraph 1>
<body paragraph 2>
<footer>
git-workflow-guide: For overall git workflowschangelog-generator: For creating changelogs from commitspr-description-generator: For pull request descriptionssemantic-versioning: For version bumping based on commits