skills/orcanote-reminder/SKILL.md
Guide for creating and managing reminders in Orca Note. Use this skill when the user wants to set a reminder or schedule a task.
npx skillsauth add sethyuan/orcanote-agent-skills orcanote-reminderInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill provides a standard workflow for creating reminders within Orca Note.
To create a reminder, follow these two steps:
insert_markdown tool to write the content of the reminder into the note.insert_tags tool to apply a "Reminder" tag to the block, specifying its trigger time and recurrence properties.The "Reminder" tag is used to define the scheduling logic. It supports the following properties:
| Property | Description | Required | Format/Units |
| :--- | :--- | :--- | :--- |
| Date time | The trigger date and time for the reminder. | Yes | Unix timestamp in seconds |
| Repeat every | The recurrence interval. Multiple intervals can be separated by commas (,). | No | m,h,d,w,M,y (min, hour, day, week, month, year) |
| Repeat until | The expiration date for recurring reminders. | No | Unix timestamp in seconds |
When setting the Repeat every property, use these abbreviated units:
m: Minute(s)h: Hour(s)d: Day(s) - e.g., 1d for every dayw: Week(s) - e.g., 1w for every weekM: Month(s) - e.g., 1M for every monthy: Year(s) - e.g., 1y for every yearinsert_markdown: "Buy groceries"insert_tags: Reminder with Date time: 1771149600 (corresponds to 2026-02-15 18:00)insert_markdown: "Team Sync Meeting"insert_tags: Reminder with attributes:
Date time: 1770773400 (corresponds to 2026-02-11 09:30)Repeat every: "1w"Repeat until: 1798646400 (corresponds to 2026-12-31)documentation
Guide for creating Excalidraw-based whiteboards in Orca Note. Use when user mentions whiteboard or Excalidraw.
documentation
Guide for creating reusable templates in Orca Note with optional dynamic date and time variables.
documentation
Guide for querying/searching data (blocks) in Orca Note.
development
Comprehensive guide for creating software diagrams using Mermaid syntax. Use when users need to create, visualize, or document software through diagrams including class diagrams (domain modeling, object-oriented design), sequence diagrams (application flows, API interactions, code execution), flowcharts (processes, algorithms, user journeys), entity relationship diagrams (database schemas), C4 architecture diagrams (system context, containers, components), state diagrams, git graphs, pie charts, gantt charts, or any other diagram type. Triggers include requests to "diagram", "visualize", "model", "map out", "show the flow", or when explaining system architecture, database design, code structure, or user/application flows.