ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

nag

Persistent reminder system that keeps bugging you until you confirm completion. Use when setting up recurring reminders, nag schedules, or any task that needs follow-up until acknowledged. Handles daily resets, configurable nag windows, escalating urgency, and natural-language confirmation matching. Do NOT use for one-shot reminders (use cron instead) or time-sensitive alerts that need immediate action (use cron with wakeMode now).

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/meimakes/nag
Or

Nag — Persistent Reminders

Nag manages reminders that don't give up. Each reminder has a first-fire time, a nag window, and resets daily.

When to Use

  • Recurring daily habits (supplements, workouts, practice)
  • Tasks that get ignored/forgotten without follow-up
  • Anything where "remind me once" isn't enough

When NOT to Use

  • One-shot reminders ("remind me in 20 minutes") — use a cron job with schedule.kind: "at"
  • Time-critical alerts that can't wait for a heartbeat cycle
  • Reminders that don't need confirmation (informational only)

Setup

1. State File

Create memory/nag-state.json in the workspace:

{
  "date": "2026-02-15",
  "reminders": {}
}

The date field triggers automatic daily resets — when today's date differs from the stored date, all reminders reset to unconfirmed.

2. Reminder Config

Create nag-config.json in the workspace root:

{
  "reminders": [
    {
      "id": "morning-supplements",
      "label": "morning supplements",
      "cronFirst": "0 8 * * *",
      "nagAfter": "09:00",
      "confirmPatterns": ["taken", "done", "took them", "did it", "yes"],
      "tone": "friendly but persistent, escalate to ALL CAPS drama after 3 nags",
      "messages": {
        "first": "Time for morning supplements!"
      }
    }
  ]
}

Fields:

FieldRequiredDescription
idyesUnique identifier, used as key in state file
labelyesHuman-readable name for display
cronFirstyesCron expression for initial reminder (create a cron job for this)
nagAfteryesTime (HH:MM, 24h) after which heartbeat nags begin
confirmPatternsyesArray of phrases that mark the reminder as done (case-insensitive, substring match)
tonenoPersonality guidance for generating nag messages. If absent, use a neutral friendly tone. The model has creative liberty to vary the wording each nag.
messages.firstnoText sent by the cron job for the initial reminder. If absent, generate from label + tone.
messages.nagnoSuggested nag text. If absent, generate contextually from label + tone + nagCount.
messages.escalatenoSuggested text after 3+ ignored nags. If absent, generate with increased urgency from tone.
daysnoArray of weekday names to restrict when this reminder fires (e.g. ["monday", "wednesday", "friday"]). Omit for every day.

For more examples, see references/config-examples.md.

Message generation: When messages.nag or messages.escalate are absent, generate them on the fly using the label and tone fields. Vary the wording each time — don't repeat the same nag verbatim. Use nagCount to calibrate urgency: low count = gentle, 3+ = escalated.

3. Wire Up Cron + Heartbeat

For each reminder, create a cron job that fires messages.first at the cronFirst schedule.

In HEARTBEAT.md, add a nag check block:

Metadata

Author@meimakes
Stars1401
Views0
Updated2026-02-24
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-meimakes-nag": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.