Install
$ agentstack add skill-sethyuan-orcanote-agent-skills-orcanote-reminder ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Orca Note Reminder Skill
This skill provides a standard workflow for creating reminders within Orca Note.
Workflow
To create a reminder, follow these two steps:
- Insert Descriptive Content: Use the
insert_markdowntool to write the content of the reminder into the note. - Tag the Reminder Block: Use the
insert_tagstool to apply a "Reminder" tag to the block, specifying its trigger time and recurrence properties.
The Reminder Tag
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 |
Recurrence Units
When setting the Repeat every property, use these abbreviated units:
m: Minute(s)h: Hour(s)d: Day(s) - e.g.,1dfor every dayw: Week(s) - e.g.,1wfor every weekM: Month(s) - e.g.,1Mfor every monthy: Year(s) - e.g.,1yfor every year
Usage Examples
Simple Reminder
insert_markdown: "Buy groceries"insert_tags:ReminderwithDate time: 1771149600(corresponds to 2026-02-15 18:00)
Weekly Recurring Reminder
insert_markdown: "Team Sync Meeting"insert_tags:Reminderwith attributes:
Date time:1770773400(corresponds to 2026-02-11 09:30)Repeat every:"1w"Repeat until:1798646400(corresponds to 2026-12-31)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sethyuan
- Source: sethyuan/orcanote-agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.