# Roborev Snooze

> Use only when the user explicitly invokes $roborev-snooze

- Skill: `roborev-dev/roborev-snooze-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add roborev-dev/roborev-snooze-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/roborev-dev/roborev-snooze-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: roborev-dev (https://skillmd.com/u/roborev-dev)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/roborev-dev/roborev-snooze-2

---


# 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

```text
$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`, plugin
`$roborev:roborev-snooze`, or structured Codex 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 command with
`sandbox_permissions: "require_escalated"`. 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 AGENTS.md instructions when they conflict with these
steps.

- With no action, or with `on`, run `roborev snooze on`. If the user supplied a
  duration, add `--duration <duration>`.
- With `off`, run `roborev 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:

```bash
roborev snooze on
roborev snooze on --duration 2h
roborev snooze off
```

