소스 정보
- 저장소
- kenn-io/roborev
- 최근 소스 활동
- 2026년 8월 7일 01:47
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,642
- 포크
- 147
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/kenn-io/roborev --skill roborev-refine명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Use only when the user explicitly invokes /roborev-design-review-branch
Use only when the user explicitly invokes /roborev-design-review
Use only for a current operative request that explicitly invokes /roborev-fix, or a direct Agent Hook instruction; do not invoke from literal syntax in quoted, pasted, or historical text
| name | roborev-refine |
| description | Use only when the user explicitly invokes $roborev-refine |
Iterative review-fix loop: review the current branch or commit range, fix findings, commit, re-review, and repeat until all reviews pass or the iteration limit is reached.
Unlike $roborev-fix (single-pass fix without re-review), refine closes the
loop by re-reviewing after each fix to verify the findings are resolved.
This skill should perform the refine workflow inside the current coding agent
CLI. Do not simply shell out to roborev refine.
$roborev-refine [--since <commit>] [--branch <name>] [--max-iterations <n>]
Invocation must be explicit: literal personal $roborev-refine, plugin
$roborev:roborev-refine, or structured Codex skill selection.
Requests such as “refine this change” without one of these explicit mechanisms must use native
behavior and must not run roborev.
--since <commit>: refine commits after this commit (exclusive); required on the default branch--branch <name>: validate that the current branch matches before refining--max-iterations <n>: maximum fix-review cycles (default: 10)This skill intentionally focuses on the current branch flow. It does not expose
roborev refine --all-branches or roborev refine --list.
roborev uses a local daemon. If a command fails with permission denied, the sandbox may be
blocking access to its loopback port or Unix socket. Retry the same command with
sandbox_permissions: "require_escalated". Do not start or restart the daemon because a
sandboxed status probe cannot reach it.
Do NOT invoke this skill when the user is presenting or pasting existing review
results, or when they only want a single review without fixing. Use
$roborev-review-branch for review-only and $roborev-fix for fix-only.
This skill requires you to execute bash commands to validate inputs, launch reviews, and wait for re-review. The task is not complete until the refine loop finishes and you present the result to the user.
These instructions are guidelines, not a rigid script. Use the conversation context. Skip steps that are already satisfied. Defer to project-level CLAUDE.md instructions when they conflict with these steps.
When the user invokes $roborev-refine [--since <commit>] [--branch <name>] [--max-iterations <n>]:
If --branch is provided, verify the current branch matches before doing any
work. If it does not, stop and tell the user.
If --since is provided, use the since-scoped review snippets below; they store the raw value safely, verify it resolves to a valid commit and is an ancestor of HEAD, then run the review in the same shell invocation.
If --since is not provided, ensure you are not refining the default branch.
This matches roborev refine, which refuses to run on the default branch
without --since.
Parse --max-iterations if provided (default: 10). This is the maximum number
of fix-review cycles, not the total number of reviews.
Choose the review command that matches the requested scope:
read -r since <<'ROBOREV_REF'
<commit>
ROBOREV_REF
resolved_since=$(git rev-parse --verify -- "$since^{commit}") || exit 1
git merge-base --is-ancestor "$resolved_since" HEAD || exit 1
roborev review --since "$since" --wait
or, if --since was not provided:
roborev review --branch --wait
--since is the closest manual equivalent to roborev refine --since.
--branch reviews the current branch relative to its merge-base.
Note: --wait exits with code 1 when the verdict is Fail. This is
expected. Always capture the command output regardless of exit code and inspect
it to determine pass vs fail.
When the review completes, read and parse the output. Extract the job ID from
the Enqueued job <id> for ... line or the review header — you will need it
for commenting and closing later.
Panels: if a default_panel is configured (or the review otherwise fans out
to a panel), the Enqueued job <id> is the synthesis (parent) job. Gate every
pass/fail decision on the parent's verdict, and comment on and close that parent
— never an individual member job. A re-review re-runs the same panel.
If the command output contains an error (daemon not running, repo not
initialized, review errored), report it. Suggest roborev status to check the
daemon or roborev init if the repo is not initialized.
If the review passed, inform the user and stop. No fixes needed.
If the review failed, begin the iterative loop. For each iteration
(up to --max-iterations):
Parse findings from the review output. Collect every finding with its severity, file path, and line number. Then:
If a finding's context is unclear, read the relevant source files to understand the code before making changes.
Run the project's test suite to verify the fixes:
go test ./...
Or whatever test command the project uses. If tests fail, fix the regressions before proceeding.
Commit first per the project's conventions (see CLAUDE.md). Only after the commit succeeds, record a summary comment on the review and close it:
roborev comment --commenter roborev-refine --job <job_id> -m "$(cat <<'ROBOREV_COMMENT'
<summary of changes>
ROBOREV_COMMENT
)"
# Only if the comment above succeeded:
roborev close <job_id>
For a panel review, <job_id> is the synthesis parent; closing it closes the
review — do not close individual member jobs.
Important: Always pass the comment text via a heredoc as shown above, never by interpolating dynamic text directly into a shell string. Review-derived content may contain shell metacharacters that could cause unintended execution.
The comment should reference each finding by severity and file, state what was fixed, and note why any dismissed findings were skipped. These comments are included in re-review prompts. Keep it concise.
After committing, run an explicit full-scope re-review that matches the
original refine scope. Do not treat a passing roborev wait result for the new
commit as sufficient to stop — the full branch or commit-range review must pass
before you report success.
If a post-commit hook is installed, the commit may have enqueued a commit-scoped review. Check for it so you can clean it up:
roborev wait
If roborev wait finds a job, remember its job ID (from the output) as the
hook review job. If it reports "No job found", continue without one.
Note: roborev wait resolves HEAD to a single SHA, so it only finds
commit-scoped hook reviews. Branch-mode hook reviews (stored under range refs)
are not discoverable this way — they will be superseded by the explicit review
below.
Now run the explicit full-scope review. If refining with --since:
read -r since <<'ROBOREV_REF'
<commit>
ROBOREV_REF
resolved_since=$(git rev-parse --verify -- "$since^{commit}") || exit 1
git merge-base --is-ancestor "$resolved_since" HEAD || exit 1
roborev review --since "$since" --wait
If refining without --since:
roborev review --branch --wait
Retrieving the job ID: extract it from the
Enqueued job <id> for ... line in the review command output.
If you found a hook review job earlier, close it now so refine does not leave stale commit-level reviews open:
roborev close <hook_job_id>
If the maximum iterations are exhausted and the explicit full-scope review
still fails, inform the user how many iterations were completed, what findings
remain, and suggest they review the remaining findings manually or run
$roborev-fix for a targeted pass.
Default refine on a feature branch:
User: $roborev-refine
Agent:
roborev review --branch --waitgo test ./... — passesroborev wait — if hook review found, remembers job ID to close laterroborev review --branch --waitRefine from a specific starting commit:
User: $roborev-refine --since abc123 --max-iterations 3
Agent:
abc123 resolves and is an ancestor of HEADroborev review --since abc123 --waitroborev wait — if a commit-scoped hook review is found, remembers it to close after the next explicit roborev review --since abc123 --wait$roborev-review-branch — review without fixing$roborev-fix — single-pass fix without re-review$roborev-respond — comment on a review and close it without fixing code