100% Free · One-Command Install · No Account Needed

Set Reminders Inside
Claude Code

Two free slash commands that add a persistent reminder and task system directly into Claude Code. Just type /remind me tomorrow at 9am to… and it's saved — across every session, every project.

Download Free Package See How It Works
claude — ~/my-project
$ claude
 
> /remind me next Tuesday at 2pm about walking the dog
 
Reminder saved: [T0001] "Walking the dog"
Due: Tuesday 2026-05-26 at 14:00
Recurrence: none · In-session pop-up: registered
 
> /my-tasks all
 
────────────────────────────────────────────────
T0001 Walking the dog Tue 14:00 none
────────────────────────────────────────────────
 
>

Reminders That Live Inside Claude Code

Claude Code has no built-in reminder system. These two skills fix that — tasks persist across every session, in every project directory.

🗣️

Natural Language, Zero Syntax

Type /remind me next Friday at 3pm to review the PR and Claude parses the date, time, and task automatically — no flags required.

🌐

Survives Every Session Change

Reminders are written to ~/.claude/my-tasks.md — a global file that exists outside any project, visible from every Claude Code window you open.

🔔

Alerts You Automatically

A lightweight hook runs once per day when you open Claude Code. If anything is overdue or due today, Claude tells you before you've typed a single word.

🔁

Recurring Reminders Built In

/remind me every weekday at 9am to prep for standup — set it once, it repeats forever and advances automatically when you mark it done.

📋

Full Reminder Dashboard

See today's reminders, this week's schedule, or everything overdue — filtered, sorted, and actionable with /my-tasks from any directory.

📄

Plain Text. Always Yours.

No database, no sync service, no login. Just a Markdown file in ~/.claude/ that you can read, edit, or back up at any time.

Two Commands. Every Reminder Covered.

Install once into ~/.claude/skills/ and both commands are available in every Claude Code session, in every project directory, forever.

/remind

Reminder Creator

Add tasks in plain English

/remind me tomorrow at 9am to check the deploy
/remind call the dentist next Monday morning
/remind every weekday at 9am standup prep --tag work
/remind pay server bill on the 1st of every month
/remind don't let me forget the team review friday 4pm
/remind --refresh-crons  # re-register pop-ups
/my-tasks

Task Dashboard

View & manage everything

/my-tasks  # overdue + due today
/my-tasks today
/my-tasks this-week
/my-tasks all
/my-tasks complete T0001
/my-tasks snooze T0002 2d

Up and Running in 2 Minutes

Download, unzip, run one command. No npm, no pip, no external services — just files dropped into your existing Claude Code config folder.

1

Download the package

Grab the zip from the download section below. It contains everything — both skills, the hook script, an empty task store, and a README.

# After downloading claude-task-master.zip:
unzip claude-task-master.zip
cd claude-task-master-dist
2

Run the installer

One command. The installer handles everything: creates skill directories, installs the hook script, initialises your task store, and safely patches ~/.claude/settings.json — without touching any hooks you already have.

chmod +x install.sh
./install.sh

That's it. Open Claude Code, type /remind me tomorrow at 9am to test this, and you're done.

3

What the installer sets up

Under the hood, five things happen automatically:

# Skills installed to:
~/.claude/skills/remind/skill.md
~/.claude/skills/my-tasks/skill.md

# Daily alert hook:
~/.claude/check-tasks.sh  (chmod +x)

# Your task store (created if new):
~/.claude/my-tasks.md

# Hook wired into settings automatically:
~/.claude/settings.json  (UserPromptSubmit)

Everything You Need

One zip. All free. No strings attached.

⬇ Download claude-task-master.zip

Includes install script, both skills, hook script, task store template, and README.

install.sh

Run: chmod +x install.sh && ./install.sh

One-command installer that creates skill directories, installs the hook, initialises your task store, and safely patches settings.json — idempotent and safe to re-run.

The /remind Skill

→ ~/.claude/skills/remind/skill.md

Natural language reminder creation. Accepts "me next Tuesday at 2pm about…" or structured flags. Writes to your global task file and registers in-session pop-ups.

The /my-tasks Skill

→ ~/.claude/skills/my-tasks/skill.md

Full task dashboard. Filter by today, this-week, overdue, or all. Mark complete, snooze, delete, or edit tasks. Handles recurring task advancement automatically.

Daily Alert Hook

→ ~/.claude/check-tasks.sh

Runs once per calendar day when you open Claude Code. Checks your task file and surfaces overdue and today's reminders automatically — no /my-tasks needed.

All files are plain text — inspect them before running anything.

Every Command at a Glance

/remind — Add Reminders

/remind me [when] [what]Natural language, any order
--tag workTag for filtering later
--recur dailyForce recurrence rule
every weekday at 9amAuto-detected recurrence
--refresh-cronsRe-register pop-ups after restart

/my-tasks — View & Manage

/my-tasksDue today + overdue (default)
today / this-week / allTime-based filters
overdue / doneStatus filters
complete T0001Mark done (recurring advances)
snooze T0001 2dDelay by 2d / 1w / 1m
delete T0001Remove permanently
`;