How this skill is triggered — by the user, by Claude, or both
Slash command
/flow:pr-titleThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Scripts live next to this SKILL.md, not in the user's project.** Before
Scripts live next to this SKILL.md, not in the user's project. Before
running any script, determine the directory containing this SKILL.md file. Use
that absolute path as {SKILL_DIR} when constructing script paths below.
!read references/usage.md
Run the gather script, passing the user's project directory with -C:
python {SKILL_DIR}/scripts/gather_context.py -C <user-project-directory>
Check these in the JSON output BEFORE proceeding:
pr_number is null, STOP and say: "Error: No PR exists
for this branch. Use /flow:pr-create to create one first."Update the PR title:
python {SKILL_DIR}/scripts/update_title.py -C <user-project-directory> --title "<new title>"
After updating, output:
Updated PR #<number> title to: <new title>
<url>
npx claudepluginhub salimhamed/claude-code-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.