roborev-respond — for Claude Code roborev-respond, synth-d, community, for Claude Code, ide skills, roborev status, roborev fix --open --list, roborev init, roborev show, roborev-respond 1019 Fixed all issues

v1.0.0

关于此技能

适用场景: Ideal for AI agents that need record a comment on a roborev code review and close it. 本地化技能摘要: # roborev-respond Record a comment on a roborev code review and close it. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

功能特性

Record a comment on a roborev code review and close it.
/roborev-respond <job id [message]
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.

# 核心主题

davidirvine davidirvine
[0]
[0]
更新于: 4/29/2026

技能概览

先看适用场景、限制条件和安装路径,再决定是否继续深入。

适用场景: Ideal for AI agents that need record a comment on a roborev code review and close it. 本地化技能摘要: # roborev-respond Record a comment on a roborev code review and close it. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

核心价值

推荐说明: roborev-respond helps agents record a comment on a roborev code review and close it. roborev-respond Record a comment on a roborev code review and close it. This AI agent skill supports Claude Code, Cursor, and

适用 Agent 类型

适用场景: Ideal for AI agents that need record a comment on a roborev code review and close it.

赋予的主要能力 · roborev-respond

适用任务: Applying Record a comment on a roborev code review and close it
适用任务: Applying /roborev-respond <job id [message]
适用任务: Applying These instructions are guidelines, not a rigid script. Use the conversation

! 使用限制与门槛

  • 限制说明: Only if the comment above succeeded:
  • 限制说明: Usage IMPORTANT This skill requires you to execute bash commands to record the comment and close the review
  • 限制说明: Requires repository-specific context from the skill documentation

关于来源内容

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

roborev-respond 是什么?

适用场景: Ideal for AI agents that need record a comment on a roborev code review and close it. 本地化技能摘要: # roborev-respond Record a comment on a roborev code review and close it. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

如何安装 roborev-respond?

运行命令:npx killer-skills add davidirvine/synth-d。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

roborev-respond 适用于哪些场景?

典型场景包括:适用任务: Applying Record a comment on a roborev code review and close it、适用任务: Applying /roborev-respond <job id [message]、适用任务: Applying These instructions are guidelines, not a rigid script. Use the conversation。

roborev-respond 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

roborev-respond 有哪些限制?

限制说明: Only if the comment above succeeded:;限制说明: Usage IMPORTANT This skill requires you to execute bash commands to record the comment and close the review;限制说明: Requires repository-specific context from the skill documentation。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add davidirvine/synth-d。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    roborev-respond 已启用,可立即在当前项目中调用。

! 来源说明

此页面仍可作为安装与查阅参考。继续使用前,请结合上方适用场景、限制条件和上游仓库说明一起判断。

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

roborev-respond

# roborev-respond Record a comment on a roborev code review and close it. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows. Record a

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

roborev-respond

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

Usage

/roborev-respond <job_id> [message]

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 --open --list to find job IDs.

2. Record the comment and close the review

If a message is provided, immediately execute:

bash
1roborev comment --job <job_id> -m "$(cat <<'ROBOREV_MSG_EOF' 2<message> 3ROBOREV_MSG_EOF 4)" 5# Only if the comment above succeeded: 6roborev close <job_id>

Always pass the comment text via a heredoc as shown above to prevent shell injection from review-derived or user-supplied content.

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:

bash
1roborev comment --job 1019 -m "$(cat <<'ROBOREV_MSG_EOF' 2Fixed all issues 3ROBOREV_MSG_EOF 4)" 5roborev 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:

bash
1roborev comment --job 1019 -m "$(cat <<'ROBOREV_MSG_EOF' 2The null check was a false positive 3ROBOREV_MSG_EOF 4)" 5roborev 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

相关技能

寻找 roborev-respond 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

本地化技能摘要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

widget-generator

Logo of f
f

本地化技能摘要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

本地化技能摘要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

本地化技能摘要: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
开发者工具