一键导入
git-commit
Use this skill when user asks to "commit changes", "create a commit", "stage and commit", or wants help with git commit workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill when user asks to "commit changes", "create a commit", "stage and commit", or wants help with git commit workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Conduct comprehensive deep research on any topic using Dify-powered workflow - searches documentation, academic papers, tutorials, APIs, best practices, and returns structured analysis with insights.
Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.
Intelligent web scraper with content extraction, multiple output formats, and error handling
Use this skill when user asks to "review code", "check for issues", "analyze code quality", "find bugs", or wants feedback on code implementation.
基于 SOC 职业分类
| name | git-commit |
| description | Use this skill when user asks to "commit changes", "create a commit", "stage and commit", or wants help with git commit workflow. |
| version | 1.0.0 |
| allowed-tools | ["Read","Bash","Glob","Grep"] |
Create well-structured git commits with conventional commit messages based on staged changes.
{
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Optional commit message override"
},
"type": {
"type": "string",
"enum": ["feat", "fix", "docs", "style", "refactor", "test", "chore"],
"description": "Conventional commit type",
"default": "auto"
},
"scope": {
"type": "string",
"description": "Optional scope for the commit"
}
}
}
git status to see current stategit diff --staged to see staged changesgit diff to see unstaged changesgit statusReport:
type(scope): descriptionUser Input: "Commit my changes"
Expected Behavior:
git status and git diff to understand changesUser Input: "创建一个 fix 类型的 commit"
Expected Behavior:
fix(scope): 描述 的提交信息