ワンクリックで
notes-reader
Read Apple Notes (read-only). Use for accessing meeting notes, raw context, or personal notes the user has captured.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Read Apple Notes (read-only). Use for accessing meeting notes, raw context, or personal notes the user has captured.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Search the web using Brave Search API. Use for AI news, research, and general web queries.
Read and manage Apple Calendar events. Use for checking schedule, creating events, or viewing upcoming meetings.
Generate end-of-day wrap-up with accomplishments, pending items, and tomorrow preview. Run at 2:50 PM or on demand.
Save conversation context to permanent memory before ending a session. Captures active work, decisions, artifacts, and routes them to appropriate files.
Read Apple Mail messages (read-only). Use for checking emails, scanning inbox, or reading specific messages. NEVER sends or modifies emails.
Review recent daily logs and update MEMORY.md with significant learnings. Run weekly or on demand to keep long-term memory current.
| name | notes-reader |
| description | Read Apple Notes (read-only). Use for accessing meeting notes, raw context, or personal notes the user has captured. |
Access Apple Notes via AppleScript. Read-only operations only.
osascript -e 'tell application "Notes"
set noteList to {}
repeat with n in notes
set end of noteList to name of n
end repeat
return noteList
end tell'
osascript -e 'tell application "Notes"
set noteText to body of note "Note Name Here"
return noteText
end tell'
Replace "Note Name Here" with the exact note title.
osascript -e 'tell application "Notes"
set folderList to {}
repeat with f in folders
set end of folderList to name of f
end repeat
return folderList
end tell'
osascript -e 'tell application "Notes"
set noteList to {}
tell folder "FolderName"
repeat with n in notes
set end of noteList to name of n
end repeat
end tell
return noteList
end tell'
osascript -e 'tell application "Notes"
set noteList to {}
repeat with n in notes
if name of n contains "search term" then
set end of noteList to name of n
end if
end repeat
return noteList
end tell'
Search for notes containing meeting-related terms:
Users often capture raw notes quickly in Apple Notes. Useful for:
contains