roborev-snooze
GitHub用于临时静音或恢复 roborev Agent Hook 提醒,不影响审查队列。需显式调用,支持设置持续时长,处理沙箱权限及 Git 仓库状态异常。
Trigger Scenarios
Install
npx skills add kenn-io/roborev --skill roborev-snooze -g -y
SKILL.md
Frontmatter
{
"name": "roborev-snooze",
"description": "Use only when the user explicitly invokes \/roborev-snooze",
"disable-model-invocation": true
}
roborev-snooze
Temporarily silence or resume roborev Agent Hook reminders for the current worktree and branch. Reviews continue to enqueue and run while reminders are snoozed.
Usage
/roborev-snooze [on|off] [duration]
on is the default action and the duration defaults to eight hours. A duration
uses Go duration syntax such as 30m, 2h, or 12h.
Explicit invocation only
Invocation must be explicit: literal personal /roborev-snooze, or structured
Claude Code skill selection.
Requests such as “silence review notifications” 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 Bash command with
dangerouslyDisableSandbox: true. Do not start or restart the daemon because a
sandboxed status probe cannot reach it.
Instructions
This skill requires you to execute the matching command and report its result. Defer to project-level CLAUDE.md instructions when they conflict with these steps.
- With no action, or with
on, runroborev snooze on. If the user supplied a duration, add--duration <duration>. - With
off, runroborev snooze off. - Do not pause the review queue, disable post-commit hooks, or change review configuration. Snooze affects only Agent Hook reminders in the current worktree and branch.
- If the command fails because the current directory is not a tracked Git repository, report that error without trying to register or initialize it.
Examples:
roborev snooze on
roborev snooze on --duration 2h
roborev snooze off
Version History
- 3148b42 Current 2026-08-16 02:32


