skills/orcanote-template/SKILL.md
Guide for creating reusable templates in Orca Note with optional dynamic date and time variables.
npx skillsauth add sethyuan/orcanote-agent-skills orcanote-templateInstall 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 and managing reusable block templates within Orca Note.
To create a new template, follow these sequential steps:
create_page tool to create a new page that will serve as your template.Template using the insert_tags tool to the newly created page. This tag is essential for Orca Note to recognize and list the page as a template.Orca Note templates support dynamic variables that resolve automatically when new blocks are generated from the template.
Insert date placeholders using the following syntax: <% date:natural_language_description %>
Examples:
<% date:today %><% date:Friday %><% date:next Monday %>Insert time placeholders using the following syntax: <% time:natural_language_description[:format] %>
The format parameter is optional. If provided, use standard time format strings (e.g., HH:mm).
Examples:
<% time:now %><% time:one hour later:HH:mm %><% time:tomorrow morning %>When asked to "create a daily log template", you should:
create_page(name="Daily Log Template")Template tag by calling the insert_tags tool.# Log for <% date:today %>
Start Time: <% time:now:HH:mm %>
## Tasks
- ...
documentation
Guide for creating Excalidraw-based whiteboards in Orca Note. Use when user mentions whiteboard or Excalidraw.
documentation
Guide for creating and managing reminders in Orca Note. Use this skill when the user wants to set a reminder or schedule a task.
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.