一键导入
commit
Create git commits from current changes using Conventional Commits format. Use when ready to commit staged or unstaged changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create git commits from current changes using Conventional Commits format. Use when ready to commit staged or unstaged changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Generate a branch name from current changes and create it if on main. Use when starting new work and need a properly named feature branch.
Create a pull request from the current branch with quality checks. Use when changes are ready for review, after committing.
Interactive guide for creating new Claude skills with proper structure, frontmatter, and trigger conditions. Use when building a new skill, scaffolding a SKILL.md, or need guidance on skill best practices.
Run Prisma generate, lint (auto-fix), typecheck, and tests; iterate until clean, summarize results. Use when CI is failing or before pushing to verify the repo is clean.
Create a new GitHub issue for a feature, bug, or chore. Use when you have an idea, bug report, or task that needs a GitHub issue with analysis and solution options.
Merge current feature branch into fresh staging branch with conflict resolution. Use when ready to deploy a feature branch to the staging environment.
基于 SOC 职业分类
| name | commit |
| description | Create git commits from current changes using Conventional Commits format. Use when ready to commit staged or unstaged changes. |
| allowed-tools | Bash(git add:*), Bash(git status:*), Bash(git commit:*), Bash(git branch:*), Bash(git diff:*), Bash(git log:*) |
You are tasked with creating git commits for the changes made during this session.
Think about what changed:
git status to see current changesgit diff to understand the modificationsPlan your commit(s):
Add changes to the staging area:
git add "<file-path>". Always use the exact file path with quotes to avoid any errors.git statusCreate commit with proper format:
git branch --show-currenthey- → Linear issue (format: HEY-123)#123)<type>[optional scope]: <description> <issue-ref>feat, fix, docs, style, refactor, perf, test, build, ci, chorefeat(dashboard): add comprehensive user dashboard component with profile management HEY-123fix(media): handle multiple file types and size limits in upload validation #45refactor(auth): simplify token validation logic HEY-78docs(api): update authentication endpoint documentation #92Execute commit:
git commit -m "FORMATTED_MESSAGE"git statusRepeat steps 3-5 for each change:
git statusecho "No changes to commit"<type>[optional scope]: <description> <issue-ref>feat, fix, docs, style, refactor, perf, test, build, ci, chorehey-X): Use HEY-123 format#123 format