Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:1
forks:0
updated:February 12, 2026 at 01:18
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | git-commit |
| description | git差分を分析し、フォーマットに従ったコミットを自動作成する。 |
git の変更内容を分析して、適切なコミットメッセージを自動生成し、ユーザーの確認後にコミットを実行するスキルです。
このスキルは、git-commit-agent サブエージェントを呼び出して、以下の処理を実行します:
git status で現在のステージング状態を確認git diff で変更内容を詳細に取得type を判定(feat/fix/test/docs/refactor/chore)type: description フォーマットのメッセージを作成type のファイルが混在している場合、自動的に分割を提案git add 対象に選定git add でファイルをステージgit commit でコミットを実行/git-commit
このコマンドを実行すると、git-commit-agent サブエージェントが起動し、以下の処理を自動実行します:
=== Git Commit Preview ===
Commit Type: feat
Description: git-commitスキルの実装
Staged Files (will be committed):
✓ .claude/skills/git-commit/SKILL.md
✓ .claude/agents/git-commit-agent/git-commit-agent.md
Unstaged Files (not included):
- CLAUDE.md (modified)
Generated Message:
feat: git-commitスキルの実装
Continue with commit? [Y/n]
異なる type のファイルが混在している場合、自動的に分割を提案:
=== Git Commit Preview ===
Multiple commit types detected. Changes will be split into 3 commits:
📝 Commit 1 of 3
Type: docs
Description: README の更新
Files:
✓ docs/README.md
📝 Commit 2 of 3
Type: feat
Description: 認証機能の実装
Files:
✓ backend/src/auth.ts
📝 Commit 3 of 3
Type: test
Description: 認証機能のテスト追加
Files:
✓ backend/src/auth.test.ts
Generated Messages:
1. docs: README の更新
2. feat: 認証機能の実装
3. test: 認証機能のテスト追加
Continue with all commits? [Y/n]
| 項目 | 詳細 |
|---|---|
| コマンド | git status, git diff, git add, git commit |
| 判定ロジック | ファイルパス・変更タイプから type 自動判定 |
| 実装 | git-commit-agent サブエージェント |
コミット分析、メッセージ生成、確認フローの詳細は、.claude/agents/git-commit-agent/ で定義されています。