Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/ericboehs/claude-plugins/remindersnpx skills add ericboehs/claude-plugins --skill remindersgit clone --depth 1 https://github.com/ericboehs/claude-pluginsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00045 | $0.01281 |
| Opus 5 | $0.00023 | $0.00641 |
| Sonnet 5 | $0.00009 | $0.00256 |
| Haiku 4.5 | $0.00005 | $0.00128 |
Grade A, and why
reminders scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 144 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Apple Reminders (remindctl)
Manage Apple Reminders from the command line using remindctl.
Prerequisites
remindctl must be installed. If any command fails with "command not found", tell the user to install it:
brew install steipete/tap/remindctl
After install, they may need to grant Reminders access: remindctl authorize
Usage
/reminders— Show today's reminders/reminders list— Show all reminder lists/reminders add Buy milk— Quick add to default list/reminders add Buy milk --list Groceries --due tomorrow— Add with options
Arguments after /reminders are passed directly to remindctl.
Commands
Always use --no-color --no-input flags to ensure clean output without ANSI codes or interactive prompts.
Show reminders
Use --json when you need stable IDs for subsequent complete/edit/delete operations.
# Today's reminders (default) — use --json to get stable IDs
remindctl show today --json --no-color --no-input
# Other filters
remindctl show tomorrow --json --no-color --no-input
remindctl show week --json --no-color --no-input
remindctl show overdue --json --no-color --no-input
remindctl show upcoming --json --no-color --no-input
remindctl show completed --json --no-color --no-input
remindctl show all --json --no-color --no-input
# Specific date
remindctl show 2026-03-01 --json --no-color --no-input
# Filter by list
remindctl show today --list "Work" --json --no-color --no-input
JSON output returns an array of objects with stable id fields (UUIDs):
[
{
"id": "58E13B6F-32B0-4587-879F-E81AE06F581C",
"title": "Buy milk",
"listName": "Groceries",
"dueDate": "2026-03-01T14:00:00Z",
"isCompleted": false,
"priority": "none"
}
]
List management
# Show all lists
remindctl list --no-color --no-input
# Show reminders in a specific list
remindctl list "Groceries" --no-color --no-input
# Create a new list
remindctl list "Groceries" --create --no-color --no-input
# Rename a list
remindctl list "Old Name" --rename "New Name" --no-color --no-input
# Delete a list
remindctl list "Old Name" --delete --force --no-color --no-input
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 144 lines · 45 tokens per session scan A 2929bf1a4edc
reminders is a skill published in the GitHub repository ericboehs/claude-plugins (2 stars, last pushed 8d ago), licensed MIT. It adds 45 tokens to every session and 1,281 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…