Agent Skillskenn-io/roborev › roborev-respond

roborev-respond

GitHub

用于通过显式调用执行roborev代码审查的回复与关闭操作。包含输入验证、评论记录及审查状态更新,支持处理面板角色识别和沙箱权限问题。

internal/skills/codex/roborev-respond/SKILL.md kenn-io/roborev

Trigger Scenarios

用户显式调用$roborev-respond命令 需要向roborev提交审查评论并关闭任务

Install

npx skills add kenn-io/roborev --skill roborev-respond -g -y
More Options

Non-standard path

npx skills add https://github.com/kenn-io/roborev/tree/main/internal/skills/codex/roborev-respond -g -y

Use without installing

npx skills use kenn-io/roborev@roborev-respond

指定 Agent (Claude Code)

npx skills add kenn-io/roborev --skill roborev-respond -a claude-code -g -y

安装 repo 全部 skill

npx skills add kenn-io/roborev --all -g -y

预览 repo 内 skill

npx skills add kenn-io/roborev --list

SKILL.md

Frontmatter
{
    "name": "roborev-respond",
    "description": "Use only when the user explicitly invokes $roborev-respond"
}

roborev-respond

Record a comment on a roborev code review and close it.

Usage

$roborev-respond <job_id> [message]

Explicit invocation only

Invocation must be explicit: literal personal $roborev-respond, plugin $roborev:roborev-respond, or structured Codex skill selection. Requests such as “respond to this review” without one of these explicit mechanisms must use native behavior and must not run roborev.

Sandbox access

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.

IMPORTANT

This skill requires you to execute bash commands to record the comment and close the review. The task is not complete until you run both commands and see confirmation output.

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.

Instructions

When the user invokes $roborev-respond <job_id> [message]:

1. Validate input

If no job_id is provided, inform the user that a job ID is required. Suggest roborev status or roborev fix --list to find job IDs. Discovery surfaces synthesis parents (and non-panel reviews), never individual panel members, so the job ID you comment on and close is the parent.

If a job_id is provided, inspect it before closing:

roborev show --job <job_id> --json

If job.panel_role is "member", do not comment on or close that job. Resolve the synthesis parent for the same job.panel_run_uuid if it is already known from the conversation or discovery output; otherwise ask the user for the synthesis parent ID. Only continue once the resolved job ID is a synthesis parent or a non-panel review.

2. Record the comment and close the review

If a message is provided, immediately execute:

roborev comment --job <resolved_job_id> "<message>" && roborev close <resolved_job_id>

If the message contains quotes or special characters, escape them properly in the bash command.

If no message is provided, ask the user what they'd like to say, then execute the commands with their comment.

3. Verify success

Both commands will output confirmation. If either fails, report the error to the user. Common causes:

  • The daemon is not running
  • The job ID does not exist
  • The repo is not initialized (suggest roborev init)
  • The review is already closed (not an error, but worth noting to the user)

The comment is recorded in roborev's database and the review is closed. View results with roborev show.

Examples

With message provided:

User: $roborev-respond 1019 Fixed all issues

Agent action:

roborev comment --job 1019 "Fixed all issues" && roborev close 1019

Then confirm: "Comment recorded and review #1019 closed."


Without message:

User: $roborev-respond 1019

Agent: "What would you like to say about review #1019?"

User: "The null check was a false positive"

Agent action:

roborev comment --job 1019 "The null check was a false positive" && roborev close 1019

Then confirm: "Comment recorded and review #1019 closed."

See also

  • $roborev-fix — fix a review's findings in code, then comment and close it

Version History

  • 3148b42 Current 2026-08-16 02:32

    增加沙箱环境下的守护进程发现安全性,修复因权限拒绝导致的误判问题,优化 Unix Socket 回退机制。

  • dec53d0 2026-07-24 12:15

Same Skill Collection

internal/skills/claude/roborev-design-review-branch/SKILL.md
internal/skills/claude/roborev-design-review/SKILL.md
internal/skills/claude/roborev-fix/SKILL.md
internal/skills/claude/roborev-lookahead-review-branch/SKILL.md
internal/skills/claude/roborev-lookahead-review/SKILL.md
internal/skills/claude/roborev-refine/SKILL.md
internal/skills/claude/roborev-respond/SKILL.md
internal/skills/claude/roborev-review-branch/SKILL.md
internal/skills/claude/roborev-review/SKILL.md
internal/skills/claude/roborev-snooze/SKILL.md
internal/skills/codex/roborev-design-review-branch/SKILL.md
internal/skills/codex/roborev-design-review/SKILL.md
internal/skills/codex/roborev-fix/SKILL.md
internal/skills/codex/roborev-lookahead-review-branch/SKILL.md
internal/skills/codex/roborev-lookahead-review/SKILL.md
internal/skills/codex/roborev-refine/SKILL.md
internal/skills/codex/roborev-review-branch/SKILL.md
internal/skills/codex/roborev-review/SKILL.md
internal/skills/codex/roborev-snooze/SKILL.md
internal/skills/droid/roborev-design-review-branch/SKILL.md
internal/skills/droid/roborev-design-review/SKILL.md
internal/skills/droid/roborev-fix/SKILL.md
internal/skills/droid/roborev-lookahead-review-branch/SKILL.md
internal/skills/droid/roborev-lookahead-review/SKILL.md
internal/skills/droid/roborev-refine/SKILL.md
internal/skills/droid/roborev-respond/SKILL.md
internal/skills/droid/roborev-review-branch/SKILL.md
internal/skills/droid/roborev-review/SKILL.md
internal/skills/droid/roborev-snooze/SKILL.md
internal/skills/grok/roborev-design-review-branch/SKILL.md
internal/skills/grok/roborev-design-review/SKILL.md
internal/skills/grok/roborev-fix/SKILL.md
internal/skills/grok/roborev-lookahead-review-branch/SKILL.md
internal/skills/grok/roborev-lookahead-review/SKILL.md
internal/skills/grok/roborev-refine/SKILL.md
internal/skills/grok/roborev-respond/SKILL.md
internal/skills/grok/roborev-review-branch/SKILL.md
internal/skills/grok/roborev-review/SKILL.md
internal/skills/grok/roborev-snooze/SKILL.md

Metadata

Files
0
Version
5cb63cb
Hash
692418bf
Indexed
2026-07-24 12:15

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-22 10:27
浙ICP备14020137号-1 $mapa de visitantes$