Workflow pr create
Skill marzun9620/agent_skills/workflow/skills/workflow-pr-create
My personal Claude Code skills — 59 of them. Use any, fork the repo, or contribute yours. Install with /plugin marketplace add marzun9620/agent_skills
npx -y skills add marzun9620/agent_skills --skill workflow-pr-createAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
PR creation flow. Verify all task checks pass, then create the PR with `gh pr create`. If the plan has a Linear ID, update Linear too. Triggers: PR creation, pull request, ship, gh pr create, merge request, code review request.
SKILL.md
1.3 KB, 374 tokens by cl100k_base, as published. Nobody here has run it
PR 作成手順
task check 通過 → PR 作成 → Linear 更新。
1. 品質ゲート確認
task check
いずれかが失敗したら修正してから PR 作成。PR に失敗を含めない。
2. 変更内容の確認
git diff main...HEAD --stat
3. PR 作成
gh pr create \
--title "{concise description, max 70 chars}" \
--body "$(cat <<'EOF'
## Summary
{bullet points of changes}
## Test
- `task check`: PASS (lint + typecheck + test + archgate)
Linear: {ID or "N/A"}
EOF
)"
- タイトルは 70 文字以内
- Summary はバレットポイント
- Test セクションに
task checkの結果を記載 - Linear ID があれば記載
4. Linear 更新(Linear ID がある場合)
Plan に Linear ID が記載されている場合:
- Status を "In Review" に更新
5. Plan 更新
- plan-update skill で Status を
in-reviewに更新
ルール
task checkが全通過するまで PR を作成しない- main にpush しない(PR 経由のみ)
- force push しない
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.