Add proactive-reminders skill to productivity plugin#140
Open
DyrtyJax wants to merge 1 commit intoanthropics:mainfrom
Open
Add proactive-reminders skill to productivity plugin#140DyrtyJax wants to merge 1 commit intoanthropics:mainfrom
DyrtyJax wants to merge 1 commit intoanthropics:mainfrom
Conversation
Author
|
Hey @mattpic-ant — would love your eyes on this when you get a chance. This is based on a reminder system we run in production (waste management company, 11-person team). The key insight is that |
Time-based reminders that deliver via chat when they come due. Supports natural language scheduling, recurrence, cross-team reminders, and CRM/project-tracker linking. Complements task-management: tasks track what needs doing, reminders ensure it gets done on time. Includes production-tested implementation patterns from a team running their entire CRM on Claude Cowork + MCP tools.
4e6ff0d to
b835376
Compare
This was referenced Mar 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a
proactive-remindersskill to the productivity plugin — time-based reminders that deliver themselves via ~~chat when they come due.This fills a gap between
task-management(tracks what needs doing) and actually ensuring it gets done on time. Tasks are a backlog; reminders are a push notification.What it does
Why this matters
Every sales team needs follow-up reminders. Every ops team needs deadline nudges. The existing
task-managementskill is great for tracking work, but it's passive — the user has to check TASKS.md. Reminders are active — they find you.Production tested
This skill is based on a system we run in production at Dyrt, an 11-person waste management company in LA. We built our entire CRM and operations stack on Claude Cowork + MCP tools. The reminder system handles 50+ reminders/week across our sales team, with 15-minute cron delivery via Cloudflare Workers.
Key production lessons baked into the skill:
Files
productivity/skills/proactive-reminders/SKILL.md— the skill definitionRelationship to existing skills
They work best together: use
task-managementfor your backlog, useproactive-remindersfor time-sensitive follow-ups.