在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用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