Skip to main content
ClaudeWave
Skill262 estrellas del repoactualizado 3d ago

reminders

The reminders skill sets, lists, and cancels time-specific notifications for users. Use it when someone requests a reminder for a future time (like "remind me to call mom at 3pm"), wants to view pending reminders, or needs to cancel an existing reminder. This skill differs from timer functions which count down durations and note-taking features which store information without time triggers.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/sepivip/SeekerClaw /tmp/reminders && cp -r /tmp/reminders/app/src/main/assets/default-skills/reminders ~/.claude/skills/reminders
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Reminders

## Use when
- "remind me to X in 30 minutes", "remind me at 5pm"
- List or cancel existing reminders
- Time-specific notifications

## Don't use when
- Simple countdown timer (use timer)
- Save a note without time trigger (use notes)
- Recurring scheduled automation (use cron tools directly)

## Instructions
Use the reminder tools to manage reminders:

**Setting a reminder:**
1. Extract what to remind about
2. Parse when (natural language supported):
   - "in 30 minutes", "in 2 hours"
   - "tomorrow at 9am", "at 5pm"
   - "2024-01-15 14:30" (ISO format)
3. Call reminder_set with message and time
4. Confirm with the scheduled time

**Listing reminders:**
- Use reminder_list to show pending reminders
- Show ID, message, and when it's due

**Canceling reminders:**
- Use reminder_cancel with the reminder ID
- Confirm cancellation

Examples:
- "Remind me to call mom in 30 minutes"
  → reminder_set("Call mom", "in 30 minutes")
- "What reminders do I have?"
  → reminder_list()
- "Cancel reminder rem_abc123"
  → reminder_cancel("rem_abc123")
bookmarkSkill

Save and organize links for later reading. Use when: user wants to save a URL, manage bookmarks, find a saved link. Don't use when: user just wants to read/fetch a URL (use web_fetch) or research a topic (use research skill).

briefingSkill

Provide a personalized daily briefing with news, weather, and reminders. Use when: user asks for a briefing, morning update, daily summary, or 'what's new today'. Don't use when: user asks about a single specific topic like just weather or just news (use those skills instead).

burner-walletSkill

Operate the burner wallet — a small, app-managed Solana wallet that signs autonomously within caps. Use when: user asks about the burner, autonomous payments, x402, raising/lowering caps, funding the burner, or wiping/rotating it. Don't use when: user wants a regular MWA-popup transfer (just call solana_send / solana_swap and let routing decide).

calclawSkill

Track calories, protein, and macros from food photos or text. Log meals, view daily/weekly nutrition dashboards, set calorie goals, track weight, and get AI-powered portion estimates. Use when user mentions food, meals, calories, protein, macros, diet, nutrition, weight tracking, or sends food photos. Don't use when: user asks about restaurant recommendations, cooking recipes, or food delivery.

calculatorSkill

Perform calculations, unit conversions, and math operations. Use when: user asks to calculate, convert units, do math, percentages, tip calculations, or date arithmetic. Don't use when: user asks about crypto prices (use crypto-prices skill) or nutrition math (use calclaw skill).

crypto-pricesSkill

Get real-time cryptocurrency prices and market data from CoinGecko (free, no API key). Use when: user asks about crypto prices, token values, market data, 'what's BTC at?'. Don't use when: user wants to swap/trade tokens (use wallet tools), or wants crypto news (use news skill).

defineSkill

Look up definitions, word meanings, and etymology. Use when: user asks 'what does X mean', 'define X', word origins, etymology. Don't use when: user wants to translate between languages (use translate skill) or wants in-depth research on a concept (use research skill).

githubSkill

Search repositories, view issues, check PRs on GitHub. Use when: user asks about GitHub repos, issues, PRs, or wants to search GitHub. Don't use when: user wants general web search (use research skill) or asks about git concepts without GitHub context.