원클릭으로
dev7-pr
Create a PR, push to GitHub, wait for Greptile review, address comments, and push final. Sub-skill of the /dev workflow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a PR, push to GitHub, wait for Greptile review, address comments, and push final. Sub-skill of the /dev workflow.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Search for a product across multiple retailers in parallel, save pricing data to disk, and produce an HTML report with the best deals and direct product links. Use when the user asks to compare prices, find the best deal, or check prices across stores.
Research a topic across multiple sources using parallel tabs, save raw content and findings to files, then produce an HTML report and PDF. Use when the user asks to research, investigate, or gather information on a topic.
Extract structured data from web pages — tables, lists, product info, pricing — into clean CSV, JSON, or markdown tables. Parallelizes across hidden tabs for multi-source extraction and saves results to disk incrementally. Use when the user asks to scrape, extract, or pull data from a page.
Find alternative products to something the user is looking at or considering. Searches across retailers and review sites, compares options, and delivers a ranked HTML report with ratings, pricing, and direct links. Use when the user asks for alternatives, similar products, or "something like this but..."
Bookmark the current page to a "📚 Read Later" folder and save a PDF copy for offline reading. Use when the user wants to save a page for later, bookmark it for reading, or keep an offline copy.
Save web pages as PDF files for offline reading, archiving, or sharing. Use when the user asks to save, download, export, or archive a page as PDF.
| name | dev7-pr |
| description | Create a PR, push to GitHub, wait for Greptile review, address comments, and push final. Sub-skill of the /dev workflow. |
| argument-hint | ["feature_name"] |
You are creating a pull request, waiting for automated review (Greptile), and addressing any comments.
.llm/$ARGUMENTS/prd.md for the feature summary.llm/$ARGUMENTS/design.md for design contextgit log --oneline -10 to see recent commitsPush 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:
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."
After the timer, fetch PR comments:
gh pr view --comments
Also check the review comments:
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments
If there are review comments from Greptile or other reviewers:
If there are no comments, skip to Step 5.
If fixes were made:
git add -A && git commit -m "fix: address PR review comments for $ARGUMENTS" && git push
Tell the user:
PR created and review comments addressed. The feature is ready for human review. PR URL:
Write a final summary to .llm/$ARGUMENTS/tmp_done.md with: