agent/skills/todo-opez-clean/SKILL.md
--- name: todo-opez-clean description: Restructure the "💥 Todo: Opez" Apple Notes note into the standard format with typed, sectioned items allowed-tools: mcp__apple-notes__get_note_content, mcp__apple-notes__update_note_content, AskUserQuestion --- # Todos Cleanup Opez Restructure the "💥 Todo: Opez" note to match the standard todo format. ## Standard Format The note should have two sections with typed, bulleted items: ``` ## Now - feat: Mailbox should be per tenant and how OTP is handled
npx skillsauth add davidkdickson/dotfiles agent/skills/todo-opez-cleanInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Restructure the "💥 Todo: Opez" note to match the standard todo format.
The note should have two sections with typed, bulleted items:
## Now
- feat: Mailbox should be per tenant and how OTP is handled
- bug: Fix issue where saving extracted fields for a newly uploaded K-1 doesn't work
## Someday
- chore: Move to cookies
- outreach: Email Daniel van Andel & Roberto Ramadhin
- question: What year should be set for each K-1
feat — new functionalitybug — broken behavior to fixchore — tech debt, refactoring, maintenance, security, adminoutreach — people, networking, emailsquestion — items needing answers from others- <type>: <description>
mcp__apple-notes__get_note_content- <type>: <description>mcp__apple-notes__update_note_contentApple Notes stores content as HTML. When updating, you MUST:
<div><b><span style="font-size: 24px">💥 Todo: Opez</span></b></div><div><b><span style="font-size: 18px">⚡️ Now</span></b></div> and <div><b><span style="font-size: 18px">⏳ Someday</span></b></div> for section headers<ul><li>...</li></ul> for item lists<div><br></div> for blank lines between sections& for ampersands in text#Todo) are stored as internal metadata, NOT in the HTML body — they cannot be read or written via the MCP tool. After updating, remind the user to re-add any smart tags manually in Apple Notes.testing
Watch the current pull request's checks and notify when they complete
devops
Watch the most recent Deploy workflow run and notify when it completes
tools
--- name: todo-opez description: List open todo items from the "💥 Todo: Opez" Apple Notes note allowed-tools: mcp__apple-notes__get_note_content --- # Todos Opez Fetch and display open todo items from Apple Notes, preserving the note's existing structure. ## Steps 1. Read the note named "💥 Todo: Opez" using the Apple Notes plugin 2. Display the items as they are in the note, preserving the **Now** and **Someday** sections 3. Do not reformat or restructure — present items exactly as written
tools
--- name: todo-opez-add description: Add a new todo item to the "💥 Todo: Opez" Apple Notes note allowed-tools: mcp__apple-notes__get_note_content, mcp__apple-notes__update_note_content, AskUserQuestion --- # Add Todo Item to Opez Add a single todo item to the "💥 Todo: Opez" Apple Notes note. ## Steps 1. Parse the user's message for the todo item (e.g., `/todo-opez-add fix the login bug in tenant settings`) 2. Read the current note named "💥 Todo: Opez" using `mcp__apple-notes__get_note_con