ワンクリックで
creating-prs
How to create pull requests for this project. Use when opening a PR on GitHub.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
How to create pull requests for this project. Use when opening a PR on GitHub.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Flow workspace management — commands, state format, rendering, and PRs. Load this skill at the start of every session.
How to add new CLI commands to flow. Use when creating a new subcommand, adding flags, or modifying the command tree.
How to create Claude Code skills for this project. Use when adding new skills, creating SKILL.md files, or setting up skill directories.
Testing conventions and patterns for this project. Use when writing tests, creating mocks, or understanding the test infrastructure.
How to update documentation for this project. Covers updating the root README, creating and updating VHS tape recordings, running gendocs, and the make commands that tie it together.
How to write PRDs for this project. Use when creating a new product requirement document, planning a feature, or adding to docs/prd/.
| name | creating-prs |
| description | How to create pull requests for this project. Use when opening a PR on GitHub. |
## What
One-line summary of the change.
## Why
Brief motivation — what problem this solves or what it enables.
## Ref
- Related PRD, issue, or link (if any)
Every PR must have exactly one semver label. Use gh pr create --label <label>.
| Label | When to use |
|---|---|
no-release | Docs, CI, refactors — no version bump |
patch | Bug fixes |
minor | New features, enhancements |
major | Breaking changes |
gh pr create \
--title "Add workspace clone command" \
--label minor \
--body "$(cat <<'EOF'
## What
Adds `flow clone` to clone a workspace to a new ID.
## Why
Users want to duplicate workspace setups without re-editing state files.
## Ref
- [PRD-006](docs/prd/006-clone.md)
EOF
)"