在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用pr-markdown-body-file
Always edit/create GitHub PR bodies from a markdown file; never inline escaped newlines.
星标21,134
分支832
更新时间2026年2月19日 11:57
SKILL.md
readonly菜单
Always edit/create GitHub PR bodies from a markdown file; never inline escaped newlines.
| name | pr-markdown-body-file |
| description | Always edit/create GitHub PR bodies from a markdown file; never inline escaped newlines. |
| version | 1 |
| source | flow-default |
Use this skill when creating or editing pull requests.
\n.--body-file.f pr open edit when available for local file-driven PR editing.Inline escaped newlines are fragile and can produce literal \n text in GitHub PR descriptions.
--body-file is deterministic and reviewable.
cat > /tmp/pr-body.md <<'EOF'
## Summary
- ...
## Scope
- ...
EOF
gh pr create --title "..." --body-file /tmp/pr-body.md
cat > /tmp/pr-body.md <<'EOF'
## Summary
- ...
EOF
gh pr edit <number> --body-file /tmp/pr-body.md
f pr open edit
This opens a local markdown file and syncs title/body on save.
gh pr view <number> --json body -q .body
\n.