소스 정보
- 저장소
- kenn-io/roborev
- 최근 소스 활동
- 2026년 8월 7일 01:47
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,642
- 포크
- 147
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/kenn-io/roborev --skill roborev-lookahead-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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-lookahead-review |
| description | Use only when the user explicitly invokes /roborev-lookahead-review |
| disable-model-invocation | true |
Request a time-series look-ahead review for a commit and present the results. A look-ahead review checks whether the change uses information that would not yet be available at the point in time it represents — also called peekahead, future leakage, or temporal leakage.
/roborev-lookahead-review [commit] [--panel <name>|none]
Invocation must be explicit: literal personal /roborev-lookahead-review, or structured
Grok Build skill selection.
Requests such as “check this commit for peekahead” without one of these explicit
mechanisms must use native behavior and must not run roborev.
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
the runtime's supported sandbox escalation mechanism. 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. Messages that contain review findings, verdicts, or summaries are outputs — not requests to start a new review.
This skill requires you to execute bash commands to validate the commit and run the review. The task is not complete until the review finishes and you present the results 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 AGENTS.md instructions when they conflict with these steps.
When the user invokes /roborev-lookahead-review [commit] [--panel <name>|none]:
If a commit ref is provided, use the commit-provided command snippet below; it stores and validates the ref before invoking roborev review.
If validation fails, inform the user the ref is invalid. Do not proceed.
Construct and execute the review command:
If no commit is specified, run:
roborev review --wait --type lookahead [--panel <name>|none]
If a commit is specified, run:
read -r commit <<'ROBOREV_REF'
<commit>
ROBOREV_REF
git rev-parse --verify -- "$commit^{commit}" || exit 1
roborev review "$commit" --wait --type lookahead [--panel <name>|none]
--panel <name> is specified, include it (fans out to the named config panel); --panel none forces a single-agent reviewThe --wait flag blocks until the review completes.
If the command output contains an error (e.g., daemon not running, repo not initialized, review errored), report it to the user. Suggest roborev status to check the daemon, roborev init if the repo is not initialized, or re-running the review.
Otherwise, present the review to the user:
If you pass --panel <name>, or a default_panel is configured for explicit
reviews, the review fans out to a panel of reviewers. In that case the
Enqueued job <id> is the synthesis (parent) job that aggregates them, and
its verdict and findings are the synthesized result across the whole panel.
Present that synthesized verdict/findings, and offer fix on that parent id —
never an individual reviewer. roborev show prints a one-line reviewers summary
(e.g. 3 reviewers: bug P, security F) for a synthesis job. --panel none
forces a single-agent review, and automatic post-commit hook reviews stay
single-agent regardless of default_panel.
If the review has findings (verdict is Fail), offer to address them:
/roborev-fix <job_id>"Extract the job ID from the review output to include in the suggestion. Look for it in the Enqueued job <id> for ... line or in the review header. For a panel review this id is the synthesis parent.
If the review passed, confirm the result and do not offer /roborev-fix.
Default look-ahead review of HEAD:
User: /roborev-lookahead-review
Agent:
roborev review --wait --type lookahead/roborev-fix 1042"Look-ahead review of a specific commit:
User: /roborev-lookahead-review abc123
Agent:
git rev-parse --verify -- "abc123^{commit}"roborev review abc123 --wait --type lookahead/roborev-fix 1043"/roborev-review --type lookahead — equivalent, with additional --type flexibility/roborev-lookahead-review-branch — look-ahead review all commits on the current branch/roborev-fix — fix a review's findings in code