Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
$ git log --oneline --stat
stars:30
forks:2
updated:2026年2月27日 17:28
SKILL.md
| name | pr |
| user_invocable | true |
| description | Open a draft pull request on GitHub. MUST use when you want to create/open a PR. |
Create a draft pull request with a clear title and explicit description of changes.
Follow conventional commit format for the PR title:
<type>: <description>
feat: New feature or capabilityfix: Bug fixrefactor: Code restructuringdocs: Documentation changeschore: Maintenance tasksperf: Performance improvementsThe body MUST be explicit about what changed. Structure:
## Summary
<Clear description of what this PR does and why>
## Changes
- <Specific change 1>
- <Specific change 2>
- <Specific change 3>
## Test plan
- [ ] <How to verify change 1>
- [ ] <How to verify change 2>
---
Generated with [Claude Code](https://claude.com/claude-code)
git status to check for uncommitted changesgit log main..HEAD --oneline to see all commits in this branchgit diff main...HEAD to see the full diff against maingit rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null || echo "no upstream"
git push -u origin HEADgh pr create --draft --title "<type>: <description>" --body "$(cat <<'EOF'
## Summary
<description>
## Changes
- <change 1>
- <change 2>
## Test plan
- [ ] <test 1>
- [ ] <test 2>
---
Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"