一键导入
pr
Create a pull request with Problem/Solution format. Can optionally commit first. Use when opening PRs or when branch changes are ready for review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a pull request with Problem/Solution format. Can optionally commit first. Use when opening PRs or when branch changes are ready for review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Traces code history via git blame and log to explain why code exists in its current form. Use when asked about code history, reasoning behind changes, or "when/why did this change".
Commit changes with smart messages. Supports full and partial commits. Use whenever committing changes or handling pre-commit hook failures.
Use the gh CLI for GitHub interactions, plus setup and pushing. Use when interacting with GitHub, setting up GitHub tools, or pushing to remote.
Universal polyglot linting and per-project config management. Use when you need to lint files, understand tool selection logic, invoke linting from commands/agents, or manage mr-sparkle config.
Resolves git merge conflicts by analyzing intent from both sides. Use when merge conflicts are detected or when git operations fail with conflict errors.
User's README style preferences — ultra-terse, action-focused, <50 lines. Use when writing or reviewing any README file.
基于 SOC 职业分类
| name | pr |
| description | Create a pull request with Problem/Solution format. Can optionally commit first. Use when opening PRs or when branch changes are ready for review. |
| argument-hint | ["optional problem context"] |
Analyze branch context:
git branch --show-currentgit remote show origin | grep 'HEAD branch'git log --oneline <base>..HEADgit diff <base>...HEADDetermine Problem scope:
Generate PR description in Problem/Solution format:
## Problem
{problem statement - describe the issue being solved}
## Solution
{plain language overview of the changes}
For multiple problems, use numbered lists with matching numbers in both sections.
$ARGUMENTS provided, use as context for the Problem statementGenerate PR title:
Create PR with gh CLI:
.tmp/pr-body.md, then gh pr create --title "title" --body-file .tmp/pr-body.mdgit pub firstReturn PR URL