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:698
forks:99
updated:March 24, 2026 at 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.