Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:698
forks:99
updated:24. März 2026 um 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.