pr
PR
Commands
create- Create a new PR with structured templatecreate -v- Show draft PR before creating, ask for confirmationcreate --draft- Create as draft PR (work in progress)update- Update existing PR description after new commitsupdate -v- Show changes before updating, ask for confirmationreview <pr>- Review a PR (number or URL), output analysis to terminal
Workflow: create
-
Safety check: Verify current branch is not main/master. Abort if so.
-
Push branch: If no upstream:
git push -u origin HEAD. Otherwise verify up to date.
More from johnie/skills
wp-cli
Drive WordPress from the command line via `wp` CLI — site migrations, search-replace, bulk plugin/theme/user/post operations, option and config edits, multisite management, and cron scheduling. Use whenever the user wants to do something to a WordPress site that a terminal can reach faster than wp-admin.
34stricli
Build type-safe CLI applications with Stricli. Use when creating TypeScript CLIs with typed flags/positional args, multi-command routing, or automatic help generation. Stricli catches parameter errors at compile time. Use this whenever the user mentions CLI frameworks, command-line tools, argument parsing, or typed commands in TypeScript.
9commit
Create semantically correct, granular git commits by analyzing staged and unstaged changes. Use when committing code, splitting changes into atomic commits, or preparing commits before a PR.
7