This skill should be used when user asks to "create a PR", "make a pull request", "open PR for this branch", "submit changes as PR", "push and create PR", or explicitly invokes "create-pr".
npx skills add https://github.com/fcakyon/claude-codex-settings --skill create-pr
Complete workflow for creating pull requests following project standards.
When explicitly invoked with extra text, treat that text as additional context for branch
naming, commit context, and PR title and body generation. Compress it into a short
plain-language branch name rather than copying the full text.
First, run the /simplify skill on the staged diff and apply its findings before committing. Docs-only diffs are a no-op.
github-dev:pr-creator for the full workflow.git diff --cached --name-onlyfeature/short-topic, fix/short-topic, or docs/short-topicgithub-dev:commit-creator subagent to handle staged changes if needed, and pass session findings and motivation into the commit contextmcp__tavily__tavily_search to verify info and include sourcesgit diff <base-branch>...HEAD to review complete changesetgh for GitHub operations and git only for local branch managementgithub-dev:pr-creator or gh pr create with parameters:-t (title): a short human headline, capital first letter, no fix: or feat: prefix.Lead with the outcome in plain words, one idea not a list of everything the branch touched.
Punchy beats exhaustive. A title is a headline, not a summary.
Robotic: Align Claude Code install commands to the CLI form and tidy humanize docs
Cooler: Put Claude Code on the same install CLI as everything else
-b (body): write it like a sharp teammate would, not a changelog. See PR Body Guidelines below.-a @me (self-assign)-r <reviewer>: Only add if the user explicitly asks OR recent PRs by this author have reviewers.Check with: gh pr list --repo <owner>/<repo> --author @me --limit 5 --json reviewRequests
If recent PRs have no reviewers, skip -r entirely.
diff or runnable CLI snippet. gh release upload <tag> before.png after.png --clobber
# 
Capture both shots at the same window size so the pair is comparable. Release assets serve as application/octet-stream, so curl -sI looks wrong even when fine. Open the PR and confirm the images render.
Codex, Cursor, and Gemini each install from their own CLI. Claude Code was the odd one out on the in-REPL slash form, so this lines everyone up.
+ claude plugin install fable-advisor@claude-settings
Same swap across all 30 plugin tables. No behavior change, just one house style everywhere.
Add a compare command for side-by-side model runs
Point it at a folder and a few models and it stitches the panels together, so you can eyeball which one wins without juggling tabs.
`ultrannotate compare --source ./images --models sam3.pt,yoloe-26x-seg.pt --phrases "person,car"`
The install panel only ever printed Codex commands, even though the site lists four tools.
| before | after |
|---|---|
|  |  |
- marketplace setup is its own step, shown only for tools that need one
- unsupported plugins say so instead of a dead command
Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
Execute git commit with conventional commit message analysis, intelligent staging, and message generation. Use when user asks to commit changes, create a git commit, or mentions "/commit". Supports: (1) Auto-detecting type and scope from changes, (2) Generating conventional commit messages from diff, (3) Interactive commit with optional type/scope/description overrides, (4) Intelligent file staging for logical grouping
Comprehensive GitHub code review with AI-powered swarm coordination
Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, reviewing, or refactoring code to avoid overcomplication, make surgical changes, surface assumptions, and define verifiable success criteria.
Use this skill to review code. It supports both local changes (staged or working tree) and remote Pull Requests (by ID or URL). It focuses on correctness, maintainability, and adherence to project standards.
Refactor bloated AGENTS.md, CLAUDE.md, or similar agent instruction files to follow progressive disclosure principles. Splits monolithic files into organized, linked documentation.
Create high-quality git commits: review/stage intended changes, split into logical commits, and write clear commit messages (including Conventional Commits). Use when the user asks to commit, craft a commit message, stage changes, or split work into multiple commits.
Take fcakyon/create-pr from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.