com um clique
source-command-ccg-commit
智能 Git 提交:分析改动生成 Conventional Commit 信息,支持拆分建议
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
智能 Git 提交:分析改动生成 Conventional Commit 信息,支持拆分建议
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
REST API design patterns including resource naming, status codes, pagination, filtering, error responses, versioning, and rate limiting for production APIs.
Django testing strategies with pytest-django, TDD methodology, factory_boy, mocking, coverage, and testing Django REST Framework APIs.
Spring Security best practices for authn/authz, validation, CSRF, secrets, headers, rate limiting, and dependency security in Java Spring Boot services.
为网页应用快速接入 OpenClaw 通道配置,自动输出可直接复制的 Webhook URL 与 Token。用于用户说“帮我配置 OpenClaw 通道”“给我 Webhook 和 Token”“一键生成接入参数”“OpenClaw 对话接入配置”这类场景,支持外部网页与本地网页两种模式,减少手工查配置和复制错误。
基于 AI 自动生成高质量 PPT 图片和视频,支持智能转场和交互式播放。
Enforce TDD workflow for Kotlin. Write Kotest tests first, then implement. Verify 80%+ coverage with Kover.
| name | source-command-ccg-commit |
| description | 智能 Git 提交:分析改动生成 Conventional Commit 信息,支持拆分建议 |
Use this skill when the user asks to run the migrated source command ccg-commit.
分析当前改动,生成 Conventional Commits 风格的提交信息。
/commit [options]
| 选项 | 说明 |
|---|---|
--no-verify | 跳过 Git 钩子 |
--all | 暂存所有改动 |
--amend | 修补上次提交 |
--signoff | 附加签名 |
--emoji | 包含 emoji 前缀 |
--scope <scope> | 指定作用域 |
--type <type> | 指定提交类型 |
[模式:检查]
[模式:分析]
--all → 执行 git add -A[模式:建议]
按以下维度聚类:
若检测到多组独立变更(>300 行 / 跨多个顶级目录),建议拆分。
[模式:生成]
格式:[emoji] <type>(<scope>): <subject>
语言:根据最近 50 次提交判断中文/英文
[模式:执行]
git commit [-S] [--no-verify] [-s] -F .git/COMMIT_EDITMSG
| Emoji | Type | 说明 |
|---|---|---|
| ✨ | feat | 新增功能 |
| 🐛 | fix | 缺陷修复 |
| 📝 | docs | 文档更新 |
| 🎨 | style | 代码格式 |
| ♻️ | refactor | 重构 |
| ⚡️ | perf | 性能优化 |
| ✅ | test | 测试相关 |
| 🔧 | chore | 构建/工具 |
| 👷 | ci | CI/CD |
| ⏪️ | revert | 回滚 |
# 基本提交
/commit
# 暂存所有并提交
/commit --all
# 带 emoji 提交
/commit --emoji
# 指定类型和作用域
/commit --scope ui --type feat --emoji
# 修补上次提交
/commit --amend --signoff
--no-verify 可跳过.git/COMMIT_EDITMSG