一键导入
finishing-a-development-branch
Use this when you have completed some feature implementation and have written passing tests, and you are ready to create a PR.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this when you have completed some feature implementation and have written passing tests, and you are ready to create a PR.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | Finishing a Development Branch |
| description | Use this when you have completed some feature implementation and have written passing tests, and you are ready to create a PR. |
npm test / cargo test / pytest / go test ./...
If tests fail:
Tests failing ([N] failures). Must fix before creating PR:
[Show failures]
Cannot proceed until tests pass.
Confirm that there is some formatting/lint/typechecking in the project. If NONE of these exist, ask me if there was something that you missed.
Use the Task tool to run any formatters and fix issues in a subagent. Check for formatter config files based on the project language.
Use the Task tool to run any linters and fix issues in a subagent. Run the appropriate linter for the project language.
Use the Task tool to run type checking and fix issues in a subagent.
Use the nori-code-reviewer subagent to do a self review. You do NOT have to follow the subagent's suggestions. This is merely a way to get a fresh pair of eyes on the code.
Confirm that you are not on the main branch. If you are, ask me before proceeding. NEVER push to main without permission.
Push and create a PR.
git push -u origin [feature-branch]
gh pr create --title "[title]" --body "$(cat <<'EOF'
## Summary
🤖 Generated with Nori
<2-3 bullets of what changed>
## Test Plan
- [ ] <verification steps>
EOF
)"
git fetch && git merge main
gh pr checks
sleep 60 && gh pr checks
If CI did not pass, examine why and fix the issue.
If this was a change to a webapp, spin up the server and the ui in a demo localhost link and show me the link so that I can review the changes.
Tell me: "I can automatically get review comments, just let me know when to do so."