update-apple-note

Update notes in Apple Notes with new content, suggestions, or enhancements. Use this skill when the user asks to update, edit, modify, or add content to an existing note in Apple Notes. Supports appending suggestions, replacing content, or enhancing existing notes with structured information.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "update-apple-note" with this command: npx skills add dalehurley/phpbot/dalehurley-phpbot-update-apple-note

Update Apple Note

Input Parameters

ParameterRequiredDescriptionExample
note_nameYesThe name of the note in Apple Notes to updateDale's Principles
content_to_addYesThe new content, suggestions, or enhancements to addAdd measurability and action items to each point
update_modeNoappend (add to existing content) or replace (overwrite entire body); defaults to appendappend

Procedure

  1. Ask for the note name if not provided

  2. Retrieve the current note content:

    tell application "Notes"
        get body of note "{{NOTE_NAME}}"
    end tell
    
  3. Prepare the new content, formatted with HTML for Notes rich text if needed

  4. Update the note body:

    tell application "Notes"
        set body of note "{{NOTE_NAME}}" to "{{NEW_CONTENT}}"
    end tell
    

    For longer or complex updates, write the AppleScript to a temp file and run with osascript {{SCRIPT_FILE}}

  5. Verify the update by retrieving and displaying the updated content

  6. Report a summary of changes made

Notes

  • Note names must match exactly as stored in Apple Notes (case-sensitive)
  • Content can use HTML tags for rich text; plain text is also accepted
  • Requires Apple Notes permissions for AppleScript access

Example

update the note with suggestions for improvement
add these action items to my Principles note in Apple Notes
append a summary section to my Meeting Notes note
replace the content of my Goals note with this updated version
edit my Projects note to include the new deadline

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

desktop-control

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

summarize-unread-emails

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

csv-tools

No summary provided by upstream source.

Repository SourceNeeds Review