From tickler-mcp
Create, check, and manage persistent ticklers (reminders that survive agent session restarts). Use when an agent needs to follow up on something later, or to check what reminders are due.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tickler-mcp:ticklerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill to create, check, and manage ticklers: reminders that persist across agent session restarts via a local JSON store.
Use this skill to create, check, and manage ticklers: reminders that persist across agent session restarts via a local JSON store.
tickler_create — Create a new remindertickler_check — Return past-due pending ticklers (use in cron/morning review)tickler_list — List all ticklers, optionally filtered by status or tagtickler_complete — Mark a tickler donetickler_delete — Permanently remove a ticklertickler_snooze — Push due date forward by a duration string: "1d", "3h", "1w", "30m"Call tickler_check at the start of each daily review. If any ticklers are returned, surface them to the user before proceeding.
tickler_create:
title: "Follow up on trailer sale listing"
body: "Check if listing is getting views. Re-list on Facebook if needed."
due: "2026-04-07T09:00:00-07:00"
tags: ["trailer", "projects"]
creator: "marcus"
If the user isn't ready to act: tickler_snooze with id and duration: "3d".
Once actioned: tickler_complete with the tickler ID.
Default: ~/.tickler/ticklers.json
Override: set TICKLER_PATH env var before starting the MCP server.
tickler_check only returns past-due items. Use tickler_list to see all.npx claudepluginhub daveremy/tickler-mcpManages durable crons/reminders with list, add, delete, pause, resume, reconcile, and OpenClaw import. Handles natural language creation and multi-language triggers.
Automates Ticktick task operations via Composio's Ticktick toolkit through Rube MCP. Discovers tool schemas, manages connections, and executes workflows.