Our review
Automatically creates a pull request on GitHub using the workon CLI, after generating content and obtaining user approval.
Strengths
- Automates PR creation with title, summary, description, and testing instructions.
- Includes a code review step before submission.
- Automatically extracts ticket ID from branch name.
- Leverages existing PR templates to follow project conventions.
Limitations
- Requires the workon CLI to be installed and configured.
- Depends on a specific branch naming convention (username/{ticketid}/...).
- Does not handle complex cases like multi-step PRs or reviewer interactions.
When you are ready to submit code for review and want a structured PR with a preliminary code review.
If the workon CLI is not available or if the PR requires custom manual formatting not supported.
Security analysis
SafeThe skill uses safe commands (git diff, git log, cat, workon) to create a pull request. There are no destructive or exfiltrating actions, and it requires explicit user approval before pushing.
No concerns found
Examples
Create a pull request from this branchOpen a draft pull request for these changesname: workon-pr description: Create a pull request using the workon CLI. Use when the user says "workon pr", "create a PR", "open a PR", or indicates code is ready for review. disable-model-invocation: true allowed-tools: Bash(workon:), Bash(gh:), Bash(git:), Bash(cat:), Read
Create a Pull Request
Steps
-
Gather context by running these commands:
- Read the PR template:
cat .github/PULL_REQUEST_TEMPLATE.md - Get the diff:
git diff origin/HEAD...HEADorgit diff main...HEAD - Get commit history:
git log --oneline origin/HEAD...HEADorgit log --oneline main...HEAD - Extract ticket ID from branch name (format:
username/{ticketid}/...)
- Read the PR template:
-
Offer code review (ask the user):
- Before creating the PR, ask if they'd like you to run a code review first
- If yes, review the changes for issues, improvements, and potential bugs
- Address any findings before proceeding
-
Generate content for each section (you are responsible for generating this):
- Title: Concise description of the change (often matches ticket name)
- Summary: 1-2 sentences describing what changed and why
- Description: Detailed explanation referencing specific files/functions changed
- How to Test: Step-by-step verification instructions with expected outcomes
-
Get explicit user approval:
- Show the user the PR details (title, summary, description, testing instructions)
- Ask: "Ready to create this PR and push to GitHub?"
- WAIT for explicit confirmation (e.g., "yes", "go ahead", "create it")
- Do NOT proceed until you receive explicit approval
-
Create the PR after receiving approval:
workon pr -y --title "..." --summary "..." --ticket "..." --description "..." --testing "..."- Always use
-yflag to skip confirmation (user already approved) - Add
--draftif user asks for draft PR or mentions "draft", "WIP", "work in progress" - Ticket ID is auto-extracted from branch if not provided
- Base branch is auto-detected (
mainormaster) - Use
--base <branch>to override if needed
- Always use
Important Notes
- Do NOT modify the "Best Practices" checklist section in the PR template
- The workon CLI fills in the PR template sections automatically
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.