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 9, 2026 at 08:35
SKILL.md
| name | create-pr |
| description | プルリクエストを作成する |
| disable-model-invocation | false |
| allowed-tools | Bash |
| argument-hint | [commit-message] |
現在のブランチ名を取得し、main や develop でないことを確認する。
git branch --show-current
main や develop の場合はエラーとして報告し、処理を中断するステージング状態と変更内容を確認する。
git status
git diff --staged
git diff
このブランチの develop からの差分を確認し、PR タイトルと説明を決定する。
git log develop..HEAD --oneline
git diff develop...HEAD --stat
未コミットの変更がある場合のみ、コミットを作成する。
Co-Authored-By を追加するgit add . && git commit -m "$(cat <<'EOF'
<COMMIT_MESSAGE>
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
EOF
)"
リモートブランチが存在するか確認し、適切なプッシュコマンドを実行する。
git push origin <BRANCH_NAME>
develop ブランチに向けたプルリクエストを作成するPR タイトルと説明を決定し、ユーザーに確認してから作成する。
gh pr create --base develop --title "<PR_TITLE>" --body "$(cat <<'EOF'
## Summary
<変更の概要を箇条書きで>
## Test plan
<テスト方法のチェックリスト>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"
[HINT] Download the complete skill directory including SKILL.md and all related files