원클릭으로
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