AgentSkillsCN

memo

当用户希望在终端中管理 Apple Notes 时使用。当您需要通过命令行创建、读取、搜索或整理笔记时,此技能同样适用。若需记录每日的 Markdown 笔记,请参考 daily-notes。

SKILL.md
--- frontmatter
name: memo
version: 1.0.0
description: "When the user wants to manage Apple Notes from the terminal. Also use when creating, reading, searching, or organizing notes via CLI. For daily markdown notes, see daily-notes."

memo - Apple Notes CLI

Manage Apple Notes from the terminal.


View Notes

bash
# List all notes
memo notes

# Filter by folder
memo notes -f "Folder Name"

# Search notes (fuzzy)
memo notes -s "search query"

Create Notes

bash
# Interactive create
memo notes -a

# Quick create with title
memo notes -a "Note Title"

Edit & Delete

bash
# Edit (interactive selection)
memo notes -e

# Delete (interactive selection)
memo notes -d

Move & Export

bash
# Move note to folder (interactive)
memo notes -m

# Export to HTML/Markdown (interactive)
memo notes -ex

Limitations

  • Cannot edit notes containing images/attachments
  • Interactive prompts require terminal access
  • macOS only

Setup

If permission issues:

  1. System Settings → Privacy & Security → Automation
  2. Enable Terminal access to Notes.app

Related Skills

  • Enhanced by: human-writing
  • Feeds into: daily-notes, notion-knowledge-capture