Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める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.