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 reminder — in any language (Vietnamese or English). This includes phrases like "nhắc tôi", "đặt lịch", "set a reminder", "remind me", "tạo reminder", "lên lịch", or any message describing a future task with a time. Also trigger when the user mentions âm lịch / lunar dates alongside a reminder request. Always use this skill — do NOT attempt to build reminder JSON from scratch without it.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/anhducna/reminder-agentWhat This Skill Does
The Reminder Agent is a specialized skill for OpenClaw that functions as a natural language processing bridge between human intent and structured data. Its primary purpose is to convert conversational requests—such as "remind me to check the oven in ten minutes" or "lên lịch họp lúc 3 giờ chiều ngày mai"—into standardized JSON objects. By standardizing these inputs, the skill ensures that downstream applications receive consistent, actionable data regardless of the linguistic complexity or the presence of non-standard date systems like the lunar calendar.
Installation
You can integrate this skill into your environment by running the following command in your OpenClaw terminal:
clawhub install openclaw/skills/skills/anhducna/reminder-agent
Use Cases
- Professional Scheduling: Automating meeting reminders based on natural language emails or chat messages.
- Task Management: Creating "to-do" entries by speaking directly to your agent while multitasking.
- Lunar Date Handling: Efficiently scheduling events for users who rely on lunar calendar dates (e.g., traditional festivals or birthdays) by triggering the
lunar-convertdependency. - Custom Integration: Developers can use the custom output format feature to map reminder data directly to existing database schemas or external task managers that use different field names.
Example Prompts
- "Nhắc tôi mua quà cho mẹ vào ngày 15 tháng 8 âm lịch, độ ưu tiên cao."
- "Set a reminder for the project deadline tomorrow at 10 AM, return as title, scheduled_at, and note."
- "Tạo nhắc nhở đi khám răng vào chiều thứ sáu tuần sau."
Tips & Limitations
- Defaults: The skill intelligently applies default values for
recurrence("once") andpriority("medium") so you don't have to specify them every time. - Clarification: If essential details like the title or specific date are missing, the agent is programmed to ask one concise, polite question to minimize user effort.
- Lunar Conversion: This skill does not calculate lunar dates internally. It acts as a gateway, routing requests to the
lunar-convertskill; ensure that dependency is installed to support lunar-based scheduling. - Strict Output: The skill returns raw, machine-readable JSON, making it ideal for automation workflows, but remember that it is strictly for data extraction, not for managing user calendars directly without an external backend.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-anhducna-reminder-agent": {
"enabled": true,
"auto_update": true
}
}
}