Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始めるcommit
スター23
フォーク0
更新日2026年7月25日 19:12
Create a git commit
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Create a git commit
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | commit |
| description | Create a git commit |
Create a git commit for the current staged and unstaged changes.
Run git status (never use -uall) and git diff (staged + unstaged) and git log --oneline -10 in parallel
Stage the relevant files by name (avoid git add -A or git add .). Do not commit files that likely contain secrets (.env, credentials, etc)
Write a concise commit message:
fix(scanner):, feat(subsonic):, refactor(db):) if the project already uses that style, otherwise match the project's existing commit styleCo-Authored-By trailerCreate the commit. Pass the message via HEREDOC:
git commit -m "$(cat <<'EOF'
message here
EOF
)"
Run git status to verify