From Flow
Generate a PR description from the repo template, save it under flow/prs/, and update the live PR. Explicit-only; run only when invoked via /describe-pr or the user asks to describe a PR.
How this skill is triggered — by the user, by Claude, or both
Slash command
/flow:describe-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are tasked with generating a comprehensive pull request description following the repository's standard template.
You are tasked with generating a comprehensive pull request description following the repository's standard template.
Read the PR description template:
.github/PULL_REQUEST_TEMPLATE.md exists (standard GitHub location)Identify the PR to describe:
tracker pr-current --json url,number,title,state 2>/dev/nulltracker pr-list-openCheck for existing description:
flow/prs/{number}_description.md already existsGather comprehensive PR information:
tracker pr-diff {number}gh repo set-default and select the appropriate repositorytracker pr-view {number} --json commitstracker pr-view {number} --json baseRefNametracker pr-view {number} --json url,title,number,stateAnalyze the changes thoroughly: (ultrathink about the code changes, their architectural implications, and potential impacts)
Handle verification requirements:
uv run pytest, npm test, etc.), run it- [x]- [ ] with explanationGenerate the description:
Save the description:
flow/prs/{number}_description.mdUpdate the PR:
tracker pr-edit-body {number} flow/prs/{number}_description.mdTransition linked work-item states (if PR is linked to issues / work items):
tracker pr-closing-issues {number}tracker set-state <id> pr-submitted in-progressnpx claudepluginhub corticalstack/flow --plugin flowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.