一键导入
generating-commit-messages
Generates clear, descriptive commit messages by analyzing git diffs. Use when writing commit messages or reviewing staged changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generates clear, descriptive commit messages by analyzing git diffs. Use when writing commit messages or reviewing staged changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Creates and runs integration tests for component interactions. Use when testing multiple modules working together.
Creates and runs unit tests for individual functions and modules. Use when writing or running unit tests.
Explores user intent, requirements and design before implementation. Use this before any creative work - creating features, building components, or modifying behavior.
Reviews code for best practices, security issues, and performance. Use when user asks to review, analyze, or audit code.
| name | generating-commit-messages |
| description | Generates clear, descriptive commit messages by analyzing git diffs. Use when writing commit messages or reviewing staged changes. |
Analyzes git changes and generates conventional commit messages.
git diff --staged to see changes<type>(<scope>): <summary>
<description>
feat: New featurefix: Bug fixdocs: Documentation changesrefactor: Code refactoringtest: Adding or modifying testschore: Maintenance tasksperf: Performance improvementsstyle: Code style changes (formatting, etc.)Input: Added user authentication with JWT tokens Output:
feat(auth): implement JWT-based authentication
Add login endpoint with token generation and validation middleware.
Includes token refresh logic and secure storage.
Closes #123
Input: Fixed bug where dates displayed incorrectly Output:
fix(reports): correct date formatting in timezone conversion
Use UTC timestamps consistently across report generation.
Previously used local time which caused discrepancies for users
in different timezones.