agentsclimarketplace

Apple notes upgrade migration

Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/apple-notes-upgrade-migration

Migrate Apple Notes automation scripts between macOS versions. Trigger: "apple notes upgrade migration".From its SKILL.md

Install
npx -y skills add ComeOnOliver/skillshub --skill apple-notes-upgrade-migration

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.4 KB, 262 tokens by cl100k_base, as published. Nobody here has run it

Apple Notes Upgrade & Migration

macOS Version Changes

macOS VersionNotes ChangesMigration Impact
Ventura (13)Shared notes via iCloudNew sharing API
Sonoma (14)Tags, smart foldersNew JXA properties
Sequoia (15)Math in notes, recordingNew content types

Migration Steps

# 1. Export all notes before OS upgrade
osascript -l JavaScript -e "
  const Notes = Application(\"Notes\");
  JSON.stringify(Notes.defaultAccount.notes().map(n => ({
    title: n.name(), body: n.body(), folder: n.container().name()
  })));
" > pre-upgrade-backup.json

# 2. Verify after upgrade
osascript -l JavaScript -e "Application(\"Notes\").defaultAccount.notes.length"

# 3. Test all automation scripts
./scripts/notes-cli.sh count
./scripts/notes-cli.sh list

Resources

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.