dev7-pr
Manages the end-to-end lifecycle of a Pull Request, from creation to automated review and final merging.
Install
mkdir -p .claude/skills/dev7-pr && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12227" && unzip -o skill.zip -d .claude/skills/dev7-pr && rm skill.zipInstalls to .claude/skills/dev7-pr
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Create a PR, push to GitHub, wait for Greptile review, address comments, and push final. Sub-skill of the /dev workflow.Key capabilities
- →Push the current branch to GitHub
- →Create a pull request with a concise title and body
- →Wait for automated review from Greptile
- →Pull and read PR comments
- →Apply fixes to relevant files based on comments
- →Commit and push fixes to the PR branch
How it works
The skill pushes local changes, creates a GitHub PR, waits for automated review, pulls comments, applies fixes, and pushes the updated changes.
Inputs & outputs
When to use dev7-pr
- →Submitting feature PRs
- →Handling PR review feedback
- →Managing code contribution workflows
About this skill
Dev Workflow — Step 7: PR & External Review
You are creating a pull request, waiting for automated review (Greptile), and addressing any comments.
Input
- Read
.llm/$ARGUMENTS/prd.mdfor the feature summary - Read
.llm/$ARGUMENTS/design.mdfor design context - Run
git log --oneline -10to see recent commits
Step 1: Push and create PR
Push the current branch and create a PR:
git push -u origin HEAD
Then create the PR using the PRD Level 1 summary as the body:
gh pr create --title "feat: <concise feature title>" --body "<PR body from PRD Level 1>"
The PR body should include:
- Summary — 2-3 bullet points from the PRD requirements
- Design — One paragraph on the chosen approach
- Test plan — How to verify the feature works
Step 2: Wait for Greptile review
Tell the user: "Waiting 10 minutes for Greptile to review the PR..."
Start a timer:
echo "Waiting for Greptile review..." && sleep 600 && echo "Timer complete — checking for PR comments."
Step 3: Pull PR comments
After the timer, fetch PR comments:
gh pr view --comments
Also check the review comments:
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments
Step 4: Address PR comments
If there are review comments from Greptile or other reviewers:
- Read each comment
- Apply the fix to the relevant file
- Keep fixes focused — only change what the comment asks for
If there are no comments, skip to Step 5.
Step 5: Commit and push
If fixes were made:
git add -A && git commit -m "fix: address PR review comments for $ARGUMENTS" && git push
Step 6: Done
Tell the user:
PR created and review comments addressed. The feature is ready for human review. PR URL: <url from gh pr create>
Write a final summary to .llm/$ARGUMENTS/tmp_done.md with:
- PR URL
- Total commits
- Summary of what was built
- Any follow-up items or tech debt noted during review
When not to use it
- →When the user does not want to use GitHub for PRs
- →When automated review by Greptile is not desired
- →When the user wants to make changes outside the scope of PR comments
Limitations
- →Requires `gh pr create` for PR creation
- →Relies on Greptile for automated review
- →Fixes must be focused on what the comment asks for
How it compares
This skill automates the PR creation and review feedback loop, including waiting for automated Greptile review and applying fixes, which is more structured than a manual PR process.
Compared to similar skills
dev7-pr side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| dev7-pr (this skill) | 0 | 5mo | Review | Intermediate |
| fix-pr | 1 | 4mo | Review | Intermediate |
| resolve-checks | 1 | 6mo | Review | Intermediate |
| agent-github-pr-manager | 1 | 6mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by browseros-ai
View all by browseros-ai →You might also like
fix-pr
AztecProtocol
Fix a failing PR by analyzing CI logs and fixing errors. Autonomous workflow that identifies failures, rebases, fixes issues, and pushes.
resolve-checks
flowglad
Resolve all failing CI checks and address PR review feedback on the current branch's PR. Runs tests locally, fixes failures, incorporates valid review comments, and resolves addressed feedback. Use when CI is red, after receiving PR feedback, or before merging.
agent-github-pr-manager
ruvnet
Agent skill for github-pr-manager - invoke with $agent-github-pr-manager
agent-github-modes
ruvnet
Agent skill for github-modes - invoke with $agent-github-modes
agent-pr-manager
ruvnet
Agent skill for pr-manager - invoke with $agent-pr-manager
git-pr-workflows-git-workflow
sickn33
Orchestrate a comprehensive git workflow from code review through PR creation, leveraging specialized agents for quality assurance, testing, and deployment readiness. This workflow implements modern g