원클릭으로
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 직업 분류 기준
| 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
)"
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/.