montagao/skills

reminders

Internal helper for creating and managing reminders/notifications.

First seen Mar 5, 2026

Installation

$ npx skills add montagao/skills --skill reminders

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from montagao/skills · top by installs.

npx skills add montagao/skills

Browse all from montagao/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,191 B
  • docs SUMMARY.md 83 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 10 installs

SKILL.md

reminders (internal)

Create recurring or one-time reminders that send messages to a channel.

Input contract (JSON)

Create recurring reminder

{ "action": "createrecurring", "name": "Daily plan", "schedule": "Every day at 07:30", "timezone": "Australia/Melbourne", "deliver": { "channel": "telegram", "to": "..." }, "message": "/plan", "suppressIf": "HEARTBEATOK (optional)" }

Create one-time reminder

{ "action": "create_once", "name": "...", "runAt": "YYYY-MM-DDTHH:mm", "timezone": "Australia/Melbourne", "deliver": { "channel": "telegram", "to": "..." }, "message": "..." }

List reminders

{ "action": "list" }

Update reminder

{ "action": "update", "id": "...", "patch": { "schedule": "...", "message": "...", "deliver": {...} } }

Delete reminder

{ "action": "delete", "id": "..." }

Behavior

  • Never asks user questions.
  • Returns JSON only.
  • If suppressIf is provided, do not deliver when output is exactly that string.

Output

{ "ok": true, "action": "create_recurring", "id": "..." }