← 返回
未分类 中文

Reminder Agent

Converts any human reminder request into structured JSON reminder data. Trigger this skill whenever the user wants to set, create, schedule, or log a reminde...
将任何人类提醒请求转换为结构化JSON提醒数据。当用户想要设置、创建、安排或记录提醒时触发此技能。
anhducna
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 427
下载
💾 3
安装
1
版本
#latest

概述

Reminder Agent Skill

Convert human reminder requests into structured JSON. Always follow the steps below in order.


Step 1 — Extract Information

Parse the user's message for:

FieldRequiredDefault
---------
title✅ Yes
datetime✅ Yes
recurrence✅ Yes"once"
priority✅ Yes"medium"
note❌ Optionalnull

Vague time-of-day mappings (Vietnamese):

WordTime
------
sáng08:00
trưa12:00
chiều15:00
tối20:00
  • "ngày mai" = tomorrow, "hôm nay" = today — resolve relative to the current date.
  • Never assume a specific time if the user gave none (not even a vague word).

Step 2 — Lunar Date Detection

If the user's message contains any of: âm lịch, âm, AL, tháng âm, ngày âm, lịch âm

Invoke the lunar-convert skill immediately.

→ Use the iso_date value it returns as the datetime date.

Never self-calculate lunar-to-solar conversion.

Read /mnt/skills/user/lunar-convert/SKILL.md for full usage.


Step 3 — Detect Custom Output Format

Trigger custom format mode when user says any of:

Vietnamese: trả về theo format, dữ liệu trả về theo, format:, với các trường, trả về các field

English: return as, response with fields, format:, output fields, return only

Custom format rules:

  • Extract exactly the field names the user listed.
  • Map them to internal values using the table below.
  • Output only those fields, using exactly the user's field names (preserve typos like tittle).

Field name mapping:

User's field nameInternal value
------
tittle, title, tên, tiêu đềtitle
scheduled_at, datetime, time, thời gian, ngày giờdatetime (ISO 8601 solar)
repeat, recurrence, lặp lại, tần suấtrecurrence
priority, ưu tiên, độ ưu tiênpriority
note, ghi chú, description, mô tảnote

No custom format detected:

Use the default schema (see Step 5).


Step 4 — Clarification

Ask ONE concise question if any required field is unclear or missing.

  • Missing datetime → ask for the specific date and/or time.
  • Unclear title → ask what the reminder is for.
  • Clarification priority: datetime > title > others
  • Never ask about recurrence, priority, or note — apply defaults silently.
  • Once all required fields are resolved → proceed immediately to Step 5.

Step 5 — Output JSON

Return ONLY the raw JSON object. Rules:

  • ❌ No explanation, no markdown, no code blocks, no backticks.
  • datetime is always Gregorian ISO 8601 — never output a lunar date.
  • Apply custom format if detected (Step 3), otherwise use default schema.

Default schema:

{
  "title": "string",
  "datetime": "ISO 8601 Gregorian — e.g. 2026-04-02T14:00:00",
  "recurrence": "once | daily | weekly | monthly",
  "priority": "low | medium | high",
  "note": "string or null"
}

Custom format example:

> Input: "Đặt lịch 9h ngày mai họp team. Dữ liệu trả về theo format tittle, scheduled_at, note"

{
  "tittle": "Họp team",
  "scheduled_at": "2026-03-20T09:00:00",
  "note": null
}

Quick Decision Tree

User sends reminder request
        │
        ▼
Lunar date mentioned?
   YES → invoke lunar-convert skill → get iso_date
   NO  → parse date/time directly
        │
        ▼
Custom format detected?
   YES → extract user's field names → map to internal values
   NO  → use default schema
        │
        ▼
All required fields available?
   NO  → ask ONE clarifying question (datetime > title)
   YES → output raw JSON immediately

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-31 02:29 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 673 📥 325,029
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,073 📥 805,933
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,374 📥 319,825