Calendar reminder

👤 cute-angel 📦 v1.0.1 ⭐ 4.5 ⬇️ 930 下載
🏠 生活服務 免費 🔑 需 API Key

📖 技能介紹

ICS Reminder

Use this skill when the user intent is to create or manage a reminder-like event that should appear in a subscribed calendar feed.

Reminder operations through scripts/reminder-client.mjs.

Create a reminder

node {baseDir}/scripts/reminder-client.mjs create --stdin

Required create fields:

  • title
  • start_at
  • timezone

Optional create fields:

  • notes
  • location
  • url
  • all_day
  • rrule
  • alarm_offset_minutes
  • source_text
  • idempotency_key

List reminders

node {baseDir}/scripts/reminder-client.mjs list

Delete a reminder

node {baseDir}/scripts/reminder-client.mjs delete "<id>"

Rotate ICS feed token

node {baseDir}/scripts/reminder-client.mjs rotate

Notes

  • Read REMINDER_API_TOKEN from the environment.
  • Read REMINDER_API_BASE_URL from the environment.
  • If REMINDER_API_BASE_URL is missing, stop and ask for configuration instead of guessing a local or remote endpoint.
  • Always use scripts/reminder-client.mjs; do not embed raw HTTP calls in the skill.
  • Ask a concise follow-up only when date, time, timezone, or recurrence is missing or ambiguous.
  • Keep raw user text inside the JSON request body only; do not splice it into shell flags, URLs, or command fragments.
  • Read references/time-parsing-rules.md for ambiguous dates, recurrence, all-day reminders, or past times.
  • Read references/api-contract.md before calling the helper script.
  • Read references/openclaw-config.md when the user needs help wiring the skill into ~/.openclaw/openclaw.json.
  • Confirm normalized schedule details in the final response and never reveal bearer tokens or raw secret values.

    本技能來自小蔥技能站7w4.net。

🤖 AI 評測

這個提醒技能質量不錯,能滿足日常使用需求。文件清晰易懂,操作邏輯直觀,安全措施到位,驗證機制完善。核心功能齊全,但缺少直觀的使用示例,新手可能需要多花時間理解。總體是個好用的工具,主要改進空間在文件的豐富度上。

📊 多維度評分

適應性4.2
規範性4.4
有效性4.7
可靠性4.3
可信度4.8

📁 包含檔案 (6 個)

📄 SKILL.md 2.3 KB
📄 _meta.json 140 B
📄 references/api-contract.md 2.1 KB
📄 references/openclaw-config.md 913 B
📄 references/time-parsing-rules.md 942 B
📄 scripts/reminder-client.mjs 3.5 KB