一键导入
manage-apple-notes
Interact with the Apple Notes app. CRUD operations for persistent storage of thoughts, data, and information across sessions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Interact with the Apple Notes app. CRUD operations for persistent storage of thoughts, data, and information across sessions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Search, discover, consume, and manage YouTube content using TypeScript CLI tools. Use when the user asks to search YouTube, get channel information, retrieve videos from a channel, get video transcripts, analyze YouTube content, manage favorite channels, organize saved videos with topics and thematics, or manage YouTube playlists (list, create, update, delete, add/remove videos). Works with channel handles (@username), URLs, or channel IDs. Includes both third-party API tools (no auth required) and official YouTube API tools (OAuth required for playlist management).
Access and process Gmail messages using the Gmail API. Use when the user asks to read, search, list, send, reply to, or forward emails. Supports OAuth 2.0 authentication with stored credentials.
Generate and edit images, create diagrams, infographics, and visualizations using Google's Nano Banana API (Gemini Image Generation). Use when the user asks to create images, edit existing images, generate architecture diagrams, flowcharts, ERDs, timelines, or any visual artifacts.
| name | manage-apple-notes |
| description | Interact with the Apple Notes app. CRUD operations for persistent storage of thoughts, data, and information across sessions. |
| license | MIT License |
| metadata | {"author":"lucek.ai","version":"1.0.0"} |
Tools to interact with Apple Notes. Notes are scoped to an automatically created agent-notes folder. Notes are formatted using HTML—supported elements are listed below.
# List notes
python scripts/list-notes.py
# Create note (heredoc for reliable input)
cat << 'EOF' | python scripts/create-note.py --title "My Note"
<div>Content here</div>
EOF
# Read note
python scripts/read-note.py --title "My Note"
# Delete note
python scripts/delete-note.py --title "My Note"
# Attach clipboard image to note
python scripts/attach-clipboard-image.py --title "My Note"
# Attach clipboard image with a label
python scripts/attach-clipboard-image.py --title "My Note" --label "screenshot.png"
Note: The
--titleis automatically formatted as an<h1>header. Body content is piped via stdin using heredoc (<< 'EOF') to avoid shell escaping issues.
| Element | HTML | Example |
|---|---|---|
| Title | <h1> | <h1>Title</h1> |
| Heading | <h2> | <h2>Heading</h2> |
| Subheading | <h3> | <h3>Subheading</h3> |
| Paragraph | <div> | <div>Text here</div> |
| Bold | <b> | <b>bold</b> |
| Italic | <i> | <i>italic</i> |
| Underline | <u> | <u>underline</u> |
| Strikethrough | <strike> | <strike>deleted</strike> |
| Monospace | <tt> | <tt>code</tt> |
| Line break | <br> | <br> |
| Bullet list | <ul><li> | <ul><li>Item 1</li><li>Item 2</li></ul> |
| Numbered list | <ol><li> | <ol><li>First</li><li>Second</li></ol> |
| Table | <object><table> | See below |
<object><table><tbody><tr><td>A</td><td>B</td></tr><tr><td>1</td><td>2</td></tr></tbody></table></object>
attach-clipboard-image.py (copies image from clipboard to note)