mochi-remind

mochi-remind is a skill for Claude Code, Codex from kirodotdev/KiroCrew. It costs 20 tokens per session (852 once invoked), scanned A, original, Apache-2.0.

A reminder-handling workflow that checks due reminders, optionally compares meeting details with a connected calendar, and notifies the user in natural language. Completed reminders are marked as done.

In plain words
What is it for?
Processing due reminders, detecting cancelled or rescheduled meetings, updating meeting times when needed, and sending the appropriate notification.
Why use it?
It reduces missed reminders and avoids notifying the user twice about the same item.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Processing due reminders, detecting cancelled or rescheduled meetings, updating meeting times when needed, and sending the appropriate notification.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kirodotdev/kirocrew/mochi-remind
About the project

Kiro Crew is a persistent development workspace where agents continue multi-step software work across sessions, schedules, and connected interfaces. Developers use it locally or remotely through a desktop app, web dashboard, CLI, Slack, or Discord, with unattended tasks and recurring jobs. The catalogue contains skills and instructions for working with this workspace.

kirodotdev/KiroCrew · 3,687 stars · on GitHub · kiro.dev

Install

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.

Any agent
npx skills add kirodotdev/KiroCrew --skill mochi-remind
Clone the repo
git clone --depth 1 https://github.com/kirodotdev/KiroCrew

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mochi-remind

README.md
[![agentmods](https://agentmods.dev/badge/skills/kirodotdev/kirocrew/mochi-remind.svg)](https://agentmods.dev/skills/kirodotdev/kirocrew/mochi-remind)
Your own site
<a href="https://agentmods.dev/skills/kirodotdev/kirocrew/mochi-remind"><img src="https://agentmods.dev/badge/skills/kirodotdev/kirocrew/mochi-remind.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 852 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00020 $0.00852
Opus 5 $0.00010 $0.00426
Sonnet 5 $0.00004 $0.00170
Haiku 4.5 $0.00002 $0.00085

Measured 8d ago against content hash 3490d88c8eea, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

mochi-remind 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 8d ago.

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.

src/kiro_crew/apps/builtins/mochi/agents/skills/mochi-remind/SKILL.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

@mochi-remind — Handle Due Reminders

Handle reminders that have reached their trigger time.

Steps

1. Verify Meetings (if applicable)

For items with kind=meeting, only if the user has connected a calendar tool. Do not assume a server or tool name — look at the tools you actually have and find one that lists events in a time range.

  1. List events in a window around the meeting's triggerAt (±2 hours) to find it.
  2. Match by subject/title (fuzzy — the label may be abbreviated).
  3. Check the event status:
    • Cancelled: Tell the user the meeting was cancelled. Mark the item done.
    • Rescheduled (start time differs from triggerAt by >5 min): Tell the user the new time. Call update_watchlist to update triggerAt to the new start time minus the original lead time. Do NOT mark done.
    • Still on schedule: Proceed to notify normally (step 2).
  4. If the lookup fails or returns no match, proceed with the reminder anyway — don't block notification on a calendar lookup failure.

Skip this step for kind=reminder items or when you have no calendar tool.

2. Notify the User

Before notifying, check activity log for duplicates: Call read_mochi_file({ which: "activity" }) and scan the last 10 entries. If you find a notification entry within the last 15 minutes that already communicated the same reminder (same label/subject), skip the notification — it was already delivered by a concurrent agent. Just mark the item done and finish.

Use perform_pet_action({ action: "notify", pushToChat: true }) with natural language.

Single reminder: "Hey! You asked me to remind you to review the design doc"

Meeting reminder: "Heads up — Team sync starts in 5 minutes!"

Cancelled meeting: "Good news — Team sync was cancelled, you've got a free slot 🎉"

Rescheduled meeting: "Heads up — Team sync got moved to 3:30 PM (was 2:00 PM)"

Multiple reminders: "A few things! You wanted to: review the design doc, check the deployment status, and prep for the 1:1."

Read the full file on GitHub · 93 lines

Changes

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.

  1. 8d ago First seen · 93 lines · 20 tokens per session scan A 3490d88c8eea

Subscribe to this mod's changes

mochi-remind is a skill published in the GitHub repository kirodotdev/KiroCrew (3,687 stars, last pushed today), licensed Apache-2.0. It adds 20 tokens to every session and 852 once invoked, about $0.0001 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-30.