skills/orcanote-markdown/SKILL.md
Create and edit Orca Note Flavored Markdown with callouts, highlights, Excalidraw based whiteboard, mermaid and other Orca Note-specific syntax. Use when inserting markdown into Orca Note, or when user mentions writing notes, callouts, highlights, Excalidraw, whiteboard, mermaid or Orca Note notes.
npx skillsauth add sethyuan/orcanote-agent-skills orcanote-markdownInstall 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 enables skills-compatible agents to create and edit valid Orca Note Flavored Markdown, including all Orca Note-specific syntax extensions.
Orca Note uses a combination of Markdown flavors:
This is a paragraph.
This is another paragraph (blank line between creates separate paragraphs).
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
Maximum heading level is 4 (####).
| Style | Syntax | Example | Output |
|-------|--------|---------|--------|
| Bold | **text** or __text__ | **Bold** | Bold |
| Italic | *text* or _text_ | *Italic* | Italic |
| Bold + Italic | ***text*** | ***Both*** | Both |
| Strikethrough | ~~text~~ | ~~Striked~~ | ~~Striked~~ |
| Highlight | ==text== | ==Highlighted== | ==Highlighted== |
| Inline code | `code` | `code` | code |
Use backslash to escape special characters:
\*This won't be italic\*
\#This won't be a heading
1\. This won't be a list item
Common characters to escape: \*, \_, \#, \`, \|, \~
[[BlockID]]
[[Block Alias]]
Block ID is a number.
[Display Text](https://example.com)
[Link used outside of Orca Note](orca-note://[repo]/block?blockId=[blockId])
Note: Spaces must be URL-encoded as %20 in Markdown links.



{01:59:59}
{59:59}
> [!note]
> This is a notice callout.
> [!info]
> Outer callout
> > [!note]
> > Inner callout
| Type | Description |
|------|-------------|
| info | Blue, info icon |
| warning | Orange, warning icon |
| error | Red, exclamation icon |
| tip | Green, bulb icon |
| important | Purple, exclamation icon |
| note | Grey, note icon |
- Item 1
- Item 2
- Nested item
- Another nested
- Item 3
1. First item
2. Second item
1. Nested numbered
2. Another nested
3. Third item
- [ ] Incomplete task
- [x] Completed task
- [ ] Task with sub-tasks
- [ ] Subtask 1
- [x] Subtask 2
> This is a blockquote.
> It can span multiple lines.
>
> And include multiple paragraphs.
>
> > Nested quotes work too.
Use `backticks` for inline code.
Use double backticks for ``code with a ` backtick inside``.
```
Plain code block
```
```javascript
// Syntax highlighted code block
function hello() {
console.log("Hello, world!");
}
```
```python
# Python example
def greet(name):
print(f"Hello, {name}!")
```
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
This is inline math: $e^{i\pi} + 1 = 0$
$$
\begin{vmatrix}
a & b \\
c & d
\end{vmatrix} = ad - bc
$$
$x^2$ Superscript
$x_i$ Subscript
$\frac{a}{b}$ Fraction
$\sqrt{x}$ Square root
$\sum_{i=1}^{n}$ Summation
$\int_a^b$ Integral
$\alpha, \beta$ Greek letters
```mermaid
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Do this]
B -->|No| D[Do that]
C --> E[End]
D --> E
```
```whiteboard
{
"elements": [...],
"files": {}
}
```
---
***
___
- - -
* * *
# Project Alpha
## Overview
This project aims to improve workflow using modern techniques.
> [!important]
> The first milestone is due on ==January 30th==.
## Tasks
- [x] Initial planning
- [x] Resource allocation
- [ ] Development phase
- [ ] Backend implementation
- [ ] Frontend design
- [ ] Testing
- [ ] Deployment
## Technical Notes
The main algorithm uses the formula $O(n \log n)$ for sorting.
```python
def process_data(items):
return sorted(items, key=lambda x: x.priority)
```
## Architecture
```mermaid
graph LR
A[Input] --> B[Process]
B --> C[Output]
B --> D[Cache]
```
orcanote-mermaid skill for Mermaid syntax and more details.orcanote-whiteboard skill for whiteboard syntax (based on Excalidraw) and more details.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 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.