一键导入
commit-message
Draft a structured commit message for all uncommitted changes, auto-detecting project type (React, Rails, or generic).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Draft a structured commit message for all uncommitted changes, auto-detecting project type (React, Rails, or generic).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a comprehensive, well-structured README.md file for the project.
Generate a comprehensive .gitignore file at the project root covering common environments, frameworks, and operating systems.
Review a GitHub Pull Request using the gh CLI and provide a comprehensive report with prioritized suggestions.
Review uncommitted local code changes and provide a prioritized report with suggested fixes.
Generate comprehensive markdown documentation for a Rails controller, including actions, routes, request/response formats, and business logic.
Generate a formatted Slack standup update by summarizing entries from the last working day and today in a work log markdown file.
| name | commit-message |
| description | Draft a structured commit message for all uncommitted changes, auto-detecting project type (React, Rails, or generic). |
| disable-model-invocation | true |
Draft a commit message for all the uncommitted changes.
YOU MUST run git diff HEAD as your FIRST action before doing anything else.
DO NOT attempt to infer changes from context or memory. DO NOT skip this step. DO NOT proceed without running this command first.
git diff HEAD in the terminal to get ALL uncommitted changesInstructions:
(feat|fix|chore): (Brief title of change)
(Brief description of the change)
Components Changes:
- (Any Components changes)
API Integration:
- (Any changes to the API integration)
UI/UX Features:
- (Any changes to the UI/UX Features)
Testing:
- (Any testing updates)
Other Changes:
- (Any other changes)
(feat|fix|chore): (Brief title of change)
(Brief description of the change)
Database Changes:
- (Any database/migration changes)
API Changes:
- (Any overall API updates)
Controller Changes:
- (Any controller updates)
Model Changes:
- (Any model updates)
Testing:
- (Any testing updates)
Other Changes:
- (Any other changes)
Request Body Changes:
(If any API endpoints were added or modified that accept request bodies, include the full request structure)
Example Request Body:
```json
(Full JSON request body structure with required/optional fields)
```
Response Body Changes:
(If API response bodies changed, include the full response structure for both success and error cases)
Success Response:
```json
(Full JSON response body for successful requests)
```
Error Response(s):
```json
(Full JSON response body for error cases)
```
(feat|fix|chore): (Brief title of change)
(Brief description of the change)
Changes:
- (List key changes by file or functionality)
Impact:
- (Any notable impacts or side effects)