ワンクリックで
pr-workflow
Standard flow to create a branch, commit and Pull Request in this repo. Use whenever a code change is ready to become a PR.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Standard flow to create a branch, commit and Pull Request in this repo. Use whenever a code change is ready to become a PR.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Use whenever the user asks to check, consult, or look something up in Notion / the project's Notion docs. Restricts every Notion lookup to a single fixed page — never search the wider Notion workspace.
Structured diagnosis of failing pods in Kubernetes (CrashLoopBackOff, OOMKilled, ImagePullBackOff, etc.). Use when the user reports a failing pod, constant restarts, or a service down in the cluster.
SOC 職業分類に基づく
| name | pr-workflow |
| description | Standard flow to create a branch, commit and Pull Request in this repo. Use whenever a code change is ready to become a PR. |
Standard flow to take a code change to a PR. Never merge: the PR is opened and a human decides.
uv run pytest from inside payments_api/ and confirm everything
passes green.git diff) before committing: no secrets, no dead
code, no accidental files. If the pr-reviewer subagent exists, use it
for this review.git checkout -b feature/<short-description>
main.feature/health-detailed-endpoint.feat: ..., fix: ..., test: ...,
docs: ..., refactor: ....feat: add /health/detailed endpoint with uptime and db status.git push -u origin feature/<short-description>
Open the PR (via GitHub MCP or gh pr create) with this structure in the
description:
## Summary
What the change does and why, in 2-3 lines.
## Changes
- Bullet list of modified files/areas and what changed in each one.
## How to test
1. Concrete steps to verify the change locally.
2. Include the test command: `uv run pytest` (from `payments_api/`).
3. If applicable, an example curl/request against the endpoint.
main.