在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用commit
星标3
分支0
更新时间2026年4月8日 09:44
Create a git commit
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Create a git commit
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Set up development for one or more issues using git worktrees and tmux.
Verify implementation completeness against requirements after finishing a task
Break down a GitHub issue into sub-issues with acceptance criteria, then create and link them.
| name | commit |
| description | Create a git commit |
| user-invocable | true |
git statusgit diff HEADgit branch --show-currentgit log --oneline -10git revert can undo it preciselyFormat: <prefix>: <short description>
| Category | Patterns | Prefix |
|---|---|---|
| Tests | *_test.go, test_*.py, *_test.py, tests/ | test: |
| Documentation | *.md, docs/, README* | docs: |
| Lint/Format | Whitespace, import ordering, formatting only | lint: |
| Dependencies | go.mod, go.sum, requirements*.txt, pyproject.toml | chore: |
| Config | *.yaml, *.yml, *.json configs | chore: |
| Database | migrations/, db/queries/ | chore: or feat: |
| Proto | proto/**/*.proto | feat: or fix: |
| Bug Fix | Error handling, patches, single-line fixes | fix: |
| Refactor | Restructuring, renaming, moving code | refactor: |
| New Feature | New files, new functions, new capabilities | feat: |
Description: imperative mood, lowercase, no period, max 50 chars
For each logical unit of work:
git add <files>Show git log --oneline -<N> when done.