create-local-routinelisted
Install: claude install-skill talentedgeai/infinite-leverage
# Skill: create-local-routine
Create a persistent local scheduled routine using `mcp__scheduled-tasks__create_scheduled_task`. Routines are stored as `SKILL.md` files in `/Users/tracnguyendang/.claude/scheduled-tasks/` and survive Desktop restarts indefinitely.
## When to use
Trigger this skill when the user says things like:
- "schedule a task to..."
- "create a routine that runs every..."
- "set up a scheduled agent for..."
- "add a cron job to..."
**Always use `mcp__scheduled-tasks__create_scheduled_task`.** Notes on alternatives:
- `CronCreate` — session-only; `durable: true` exists in the schema but is not implemented
- `RemoteTrigger` — cloud CCR; use only when the Mac must be asleep (requires repo/git, no local env)
---
## How scheduled routines work
- **Persistent on disk** — stored in `~/.claude/scheduled-tasks/{taskId}/SKILL.md`, survives restarts indefinitely.
- **Local timezone** — cron expressions are in local time. No UTC conversion needed.
- **No minimum interval** — sub-hourly supported.
- **No expiry** — runs forever until disabled or deleted.
- **App must be open** — fires while Claude Desktop is running; if closed when due, catches up on next launch.
- **Shows approval prompt** — calling the tool shows the user a confirmation dialog before registering.
- **Managed via** `mcp__scheduled-tasks__list_scheduled_tasks` / `mcp__scheduled-tasks__update_scheduled_task`.
---
## Step 1 — Load schema
```
ToolSearch(query: "select:mcp__scheduled-tasks__create