agentsclimarketplace

Apple notes prod checklist

Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/apple-notes-prod-checklist

Production checklist for Apple Notes automation deployments. Trigger: "apple notes production checklist".From its SKILL.md

Install
npx -y skills add ComeOnOliver/skillshub --skill apple-notes-prod-checklist

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.5 KB, 286 tokens by cl100k_base, as published. Nobody here has run it

Apple Notes Production Checklist

Pre-Deployment

  • macOS automation permissions granted and tested
  • Notes.app configured to launch at login (if needed)
  • iCloud sync verified working
  • Error handling for all AppleEvent failures
  • Throttling configured (1 op/second for writes)
  • Exported data permissions restricted (chmod 600)
  • Backup strategy for note content documented
  • Script tested on target macOS version

Validation

#!/bin/bash
echo "=== Apple Notes Readiness ==="
echo -n "[$(pgrep -x Notes > /dev/null && echo PASS || echo FAIL)] Notes.app running"
echo ""
echo -n "[$(osascript -l JavaScript -e "Application(\"Notes\").defaultAccount.notes.length" 2>/dev/null && echo PASS || echo FAIL)] Notes accessible"
echo ""
echo -n "[$(sw_vers -productVersion | grep -q "^1[3-9]" && echo PASS || echo WARN)] macOS 13+"
echo ""
echo "=== Done ==="

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.