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.