一键导入
git-commit-helper
Generate descriptive commit messages by analyzing git diffs. Use when the user asks for help writing commit messages or reviewing staged changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate descriptive commit messages by analyzing git diffs. Use when the user asks for help writing commit messages or reviewing staged changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Go High Level (GHL / HighLevel) expert consultant. Handles any GHL question - API integrations (v2 OAuth, endpoints, webhooks), UI navigation, workflows and automations, funnels and websites, CRM and contacts, calendars, conversations, payments, SaaS mode, white-labeling, sub-accounts, snapshots, troubleshooting, and best practices. Trigger when user mentions GoHighLevel, GHL, HighLevel, Go High Level, LeadConnector, LC Email, LC Phone, sub-account, location, snapshot, funnel, pipeline, or workflow in a GHL context, or asks about any feature, API endpoint, or configuration within the HighLevel platform. Also trigger for CRM platforms for agencies, white-label SaaS tools, or marketing automation when GHL is a plausible answer.
Go High Level (GHL / HighLevel) expert consultant. Handles any GHL question - API integrations (v2 OAuth, endpoints, webhooks), UI navigation, workflows and automations, funnels and websites, CRM and contacts, calendars, conversations, payments, SaaS mode, white-labeling, sub-accounts, snapshots, troubleshooting, and best practices. Trigger when user mentions GoHighLevel, GHL, HighLevel, Go High Level, LeadConnector, LC Email, LC Phone, sub-account, location, snapshot, funnel, pipeline, or workflow in a GHL context, or asks about any feature, API endpoint, or configuration within the HighLevel platform. Also trigger for CRM platforms for agencies, white-label SaaS tools, or marketing automation when GHL is a plausible answer.
Deep document research specialist for blog content creators. Finds rare, citable statistics and primary-source data buried in PDFs, PPTX, DOCX, XLSX, and Google Drive files from government, academic, NGO, and institutional sources - the documents standard web searches miss. Use when a user needs high-authority, non-article sources to strengthen blog content. Trigger on: research for my blog, find statistics, find data, find sources, primary sources, government reports, academic data, citable stats, or any request for document-based research.
Researches and qualifies sales leads by defining an ideal customer profile, searching for matching companies, scoring fit, and generating personalized outreach strategies with decision-maker contacts. Use when asked to find leads, prospect companies, identify potential customers, do lead generation, build a pipeline, research target accounts, find outreach targets, or identify ICP matches.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Suite of tools for creating elaborate, multi-component HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
| name | git-commit-helper |
| description | Generate descriptive commit messages by analyzing git diffs. Use when the user asks for help writing commit messages or reviewing staged changes. |
Analyze staged changes and generate commit message:
# View staged changes
git diff --staged
# Generate commit message based on changes
# (Claude will analyze the diff and suggest a message)
Follow conventional commits format:
<type>(<scope>): <description>
[optional body]
[optional footer]
Feature commit:
feat(auth): add JWT authentication
Implement JWT-based authentication system with:
- Login endpoint with token generation
- Token validation middleware
- Refresh token support
Bug fix:
fix(api): handle null values in user profile
Prevent crashes when user profile fields are null.
Add null checks before accessing nested properties.
Refactor:
refactor(database): simplify query builder
Extract common query patterns into reusable functions.
Reduce code duplication in database layer.
Review what's being committed:
# Show files changed
git status
# Show detailed changes
git diff --staged
# Show statistics
git diff --staged --stat
# Show changes for specific file
git diff --staged path/to/file
DO:
DON'T:
When committing multiple related changes:
refactor(core): restructure authentication module
- Move auth logic from controllers to service layer
- Extract validation into separate validators
- Update tests to use new structure
- Add integration tests for auth flow
Breaking change: Auth service now requires config object
Frontend:
feat(ui): add loading spinner to dashboardfix(form): validate email formatBackend:
feat(api): add user profile endpointfix(db): resolve connection pool leakInfrastructure:
chore(ci): update Node version to 20feat(docker): add multi-stage buildIndicate breaking changes clearly:
feat(api)!: restructure API response format
BREAKING CHANGE: All API responses now follow JSON:API spec
Previous format:
{ "data": {...}, "status": "ok" }
New format:
{ "data": {...}, "meta": {...} }
Migration guide: Update client code to handle new response structure
git diff --stagedUse git add -p for selective staging:
# Stage changes interactively
git add -p
# Review what's staged
git diff --staged
# Commit with message
git commit -m "type(scope): description"
Fix the last commit message:
# Amend commit message only
git commit --amend
# Amend and add more changes
git add forgotten-file.js
git commit --amend --no-edit