โ† All skills
Tencent SkillHub ยท Developer Tools

macOS Notes

Create, read, search, and manage macOS Notes via AppleScript. Use when the user asks to take a note, jot something down, save an idea, create meeting notes,...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Create, read, search, and manage macOS Notes via AppleScript. Use when the user asks to take a note, jot something down, save an idea, create meeting notes,...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/notes.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

macOS Notes

Manage Apple Notes via $SKILL_DIR/scripts/notes.sh. Notes content is stored as HTML internally; the script accepts plain text or HTML body and returns plaintext when reading.

List folders

Always list folders first to discover accounts and folder names: "$SKILL_DIR/scripts/notes.sh" list-folders Output format: account โ†’ folder (one per line).

Create a note

echo '<json>' | "$SKILL_DIR/scripts/notes.sh" create-note JSON fields: FieldRequiredDefaultDescriptiontitleyes-Note title (becomes the first line / heading)bodyno""Note content (plain text โ€” converted to HTML automatically)htmlno""Raw HTML body (overrides body if both provided)foldernodefault folderFolder name (from list-folders)accountnodefault accountAccount name (from list-folders)

Read a note

echo '<json>' | "$SKILL_DIR/scripts/notes.sh" read-note JSON fields: FieldRequiredDefaultDescriptionnameyes-Note title (exact match)foldernoall foldersFolder to search inaccountnodefault accountAccount to search in

List notes

echo '<json>' | "$SKILL_DIR/scripts/notes.sh" list-notes JSON fields: FieldRequiredDefaultDescriptionfoldernodefault folderFolder nameaccountnodefault accountAccount namelimitno20Max notes to return

Search notes

echo '<json>' | "$SKILL_DIR/scripts/notes.sh" search-notes JSON fields: FieldRequiredDefaultDescriptionqueryyes-Text to search for in note titlesaccountnodefault accountAccount to search inlimitno10Max results to return

Interpreting natural language

Map user requests to commands: User saysCommandKey fields"Note this down: ..."create-notetitle, body"Save meeting notes"create-notetitle: "Meeting notes โ€” <date>", body"What did I write about X?"search-notesquery: "X""Show my notes"list-notes(defaults)"Read my note about X"read-notename: "X""Save this in my work notes"create-noteMatch closest account/folder from list-folders

Example prompts

"Note down the API key format: prefix_xxxx" echo '{"title":"API key format","body":"Format: prefix_xxxx"}' | "$SKILL_DIR/scripts/notes.sh" create-note "Show my recent notes" echo '{}' | "$SKILL_DIR/scripts/notes.sh" list-notes "What did I write about passwords?" echo '{"query":"password"}' | "$SKILL_DIR/scripts/notes.sh" search-notes "Read my note about Hinge" echo '{"name":"Hinge"}' | "$SKILL_DIR/scripts/notes.sh" read-note "Create a meeting summary in my iCloud notes" "$SKILL_DIR/scripts/notes.sh" list-folders Then: echo '{"title":"Meeting summary โ€” 2026-02-17","body":"Discussed roadmap.\n- Q1: launch MVP\n- Q2: iterate","account":"iCloud","folder":"Notes"}' | "$SKILL_DIR/scripts/notes.sh" create-note

Critical rules

Always list folders first if the user hasn't specified an account/folder โ€” folder names are reused across accounts Specify both account and folder when targeting a specific location โ€” folder: "Notes" alone is ambiguous Password-protected notes are skipped โ€” the script cannot read or modify them Pass JSON via stdin โ€” never as a CLI argument (avoids leaking data in process list) All fields are validated by the script (type coercion, range checks) โ€” invalid input is rejected with an error All actions are logged to logs/notes.log with timestamp, command, and note title Body uses plain text โ€” newlines in body are converted to <br> automatically; use html for rich formatting Note title = first line โ€” Notes.app treats the first line of the body as the note name

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/notes.sh Scripts