greploop
Iteratively fix a PR against Greptile review until 5/5 confidence. Polls Greptile comments, applies safe fixes, pushes, and repeats.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Iteratively fix a PR against Greptile review until 5/5 confidence. Polls Greptile comments, applies safe fixes, pushes, and repeats.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Check a PR for Greptile review comments, status checks, and completeness. Use after creating a PR to see if Greptile has reviewed it.
Agent workflow automation, documentation maintenance checklists, and slash commands for the EdgeLab project. Load this skill when adding modules, screens, or using agent workflows.
Commit changes, push to remote, and create a GitHub PR. Use when completing a feature and ready to open a pull request.
Review uncommitted changes, commits, branch diffs, or PRs against EdgeLab conventions. Load this skill when asked to review code.
Build, test, format, install, lint, and model export commands for the EdgeLab multi-module Android project. Load this skill when you need to run Gradle commands or verify changes.
Release build workflow, signing configuration, and GitHub Actions release process for EdgeLab and CyclingCopilot. Load this skill when preparing a release.
| name | greploop |
| description | Iteratively fix a PR against Greptile review until 5/5 confidence. Polls Greptile comments, applies safe fixes, pushes, and repeats. |
Iteratively apply Greptile review suggestions until the PR reaches a 5/5 confidence score.
Get PR number (from arguments or detect current branch):
gh pr view --json number,url --jq '.number'
Poll Greptile for review comments:
mcp__greptile__list_merge_request_comments(
name: "owner/repo",
remote: "github",
defaultBranch: "main",
prNumber: <N>,
greptileGenerated: true
)
Check confidence score from Greptile summary comment:
Apply safe suggestions from Greptile comments:
Run project checks:
./gradlew ktfmtFormat && ./gradlew test
Commit and push fixes:
git add -A
git commit -m "Apply Greptile review suggestions
- <list of fixes applied>"
git push
Comment on PR: "Applied Greptile review suggestions ✅"
Loop back to step 2 until 5/5 or no more actionable comments.
ktfmtFormat before committing/skill:greploop — Fix the PR for the current branch/skill:greploop <number> — Fix a specific PR number