Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
$ git log --oneline --stat
stars:698
forks:99
updated:2026年3月24日 21:32
SKILL.md
| name | draft-pr |
| description | Generate a PR title and description from your changes |
| disable-model-invocation | true |
| allowed-tools | Bash, Read, Grep, Glob |
Generate a PR title and description that will pass CI checks.
git branch --show-current
git log --oneline main..HEAD
git diff main..HEAD --stat
gh pr list --head "$(git branch --show-current)" --state=open --json url -q '.[0].url'
Read .github/pull_request_template.md for the required structure.
<type>(<scope>): <description> (Conventional Commits)Fill in each section from the template:
Print the generated title and full PR body in raw markdown format, ready to copy.
If an open PR already exists for this branch, offer to update it with gh pr edit.