← ClaudeAtlas

claude-inboxlisted

Process an Apple Reminders capture list one item at a time — ideas captured via Siri on mobile. Analyze each against current context, recommend routing (act/save/backlog/ignore), execute on confirmation, then mark complete. Configure the list name and routing destinations below.
ozlar34/claude-code-skills · ★ 1 · AI & Automation · score 77
Install: claude install-skill ozlar34/claude-code-skills
# Claude Inbox — Mobile Capture Processor Process ideas captured on mobile via Siri → Apple Reminders → an iCloud-synced list. GTD-style: one at a time, analyze, decide, execute, complete. ## Configuration Edit these defaults at the top of this file before first use: ``` LIST_NAME : Claude Inbox ROUTE_TO_TASK_TOOL : <task tool of choice — TickTick, Todoist, Things, etc.> ROUTE_TO_NOTES : <notes destination — Obsidian vault, Notion, etc.> ``` The list name must match exactly what you create in Apple Reminders. The two routing destinations are descriptive — Claude will use whatever tools/MCPs you have wired up. ## How items get here You say: *"Hey Siri, add [idea] to <LIST_NAME>"* from your phone or watch while away from the Mac. Items sync via iCloud Reminders. ## Reading the list (AppleScript) ```bash osascript <<'APPLESCRIPT' tell application "Reminders" set output to "" set inboxList to list "<LIST_NAME>" set activeItems to (reminders of inboxList whose completed is false) repeat with r in activeItems set output to output & (id of r) & "|||" & (name of r) & "|||" & ((creation date of r) as string) if body of r is not missing value then set output to output & "|||" & (body of r) end if set output to output & linefeed end repeat return output end tell APPLESCRIPT ``` Replace `<LIST_NAME>` literally before running. If the list doesn't exist, AppleScript errors. Tell the user to create a Reminders list with the exac