在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
commit
// Stage, commit, create PR, and merge to main. Use for the standard commit-PR-merge cycle.
$ git log --oneline --stat
stars:115
forks:77
updated:2026年2月21日 12:32
SKILL.md
// Stage, commit, create PR, and merge to main. Use for the standard commit-PR-merge cycle.
| name | commit |
| description | Stage, commit, create PR, and merge to main. Use for the standard commit-PR-merge cycle. |
| argument-hint | [optional: commit message] |
| allowed-tools | ["Bash","Read","Glob"] |
Stage changes, commit with a descriptive message, create a PR, and merge to main.
git status
git diff --stat
git log --oneline -5
git checkout -b <short-descriptive-branch-name>
git add -A):git add <file1> <file2> ...
Do NOT stage .claude/settings.local.json or any files containing secrets.
If $ARGUMENTS is provided, use it as the commit message. Otherwise, analyze the staged changes and write a message that explains why, not just what.
git commit -m "$(cat <<'EOF'
<commit message here>
EOF
)"
git push -u origin <branch-name>
gh pr create --title "<short title>" --body "$(cat <<'EOF'
## Summary
<1-3 bullet points>
## Test plan
<checklist>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"
gh pr merge <pr-number> --merge --delete-branch
git checkout main
git pull
settings.local.json and sensitive files from staging--merge (not --squash or --rebase) unless asked otherwise$ARGUMENTS is provided, use it exactly