Automating Mac Apps Plugin — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Automating Mac Apps Plugin (Plugin) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Automates macOS apps via Apple Events using AppleScript (discovery), JXA (legacy), and PyXA/Python (preferred). Includes skills for Calendar, Notes, Mail, Keynote, Numbers, Excel, Reminders, Contacts, and more.
Note: This is a plugin for Claude Code. It is not ready for prime time yet. Only use it if you are a developer and want to help test it. I have tested it with Reminders, Keynote, Numbers, Notes, Contactc, Calendar, Messenger (send only), and Mail. It is useful as-is but please report any issues or suggestions. Tested Pages and it did not go well. We could only add basic text. We could paste in images but could not predict where they would end up in the doc. Everything else is woefully short on testing.
Cover - AI-Powered Mac Automation
Connect your favorite Mac applications to Claude Code through Apple Events automation. Control Calendar, Notes, Mail, Keynote, Numbers, and more with natural language commands.
Architecture - Three-Layer Design
The plugin uses a three-layer architecture:
Skills Overview - All 16 Skills
Comprehensive coverage across productivity, communication, and development apps:
Workflow - From Request to Execution
How automation flows from your request to app control:
/plugin marketplace add SpillwaveSolutions/automating-mac-apps-plugin
Once the plugin is available as a Claude Code marketplace:
claude plugins install automating-mac-apps-pluginClone directly into your Claude skills directory:
# Navigate to Claude skills directory
cd ~/.claude/skills
# Clone the repository
git clone https://github.com/SpillwaveSolutions/automating-mac-apps-plugin.git
# Or clone to a specific location and symlink
git clone https://github.com/SpillwaveSolutions/automating-mac-apps-plugin.git ~/projects/automating-mac-apps-plugin
ln -s ~/projects/automating-mac-apps-plugin ~/.claude/skills/automating-mac-apps-pluginplugins/automating-mac-apps-plugin/ folder to ~/.claude/skills/cp -r plugins/automating-mac-apps-plugin ~/.claude/skills/After installation, verify the plugin is recognized:
# List installed plugins
claude plugins list
# Or check the skills directory
ls ~/.claude/skills/Before using the automation skills, you need to grant macOS Automation permissions. Run the setup scripts to trigger permission prompts:
cd ~/.claude/skills/automating-mac-apps-plugin
./skills/automating-mac-apps/scripts/request_automation_permissions.sh
# Or use Python:
python3 ./skills/automating-mac-apps/scripts/request_automation_permissions.pyRun individual setup scripts as needed:
| App | Script |
|---|---|
| Calendar | ./skills/automating-calendar/scripts/set_up_calendar_automation.sh |
| Notes | ./skills/automating-notes/scripts/set_up_notes_automation.sh |
./skills/automating-mail/scripts/set_up_mail_automation.sh | |
| Keynote | ./skills/automating-keynote/scripts/set_up_keynote_automation.sh |
| Numbers | ./skills/automating-numbers/scripts/set_up_numbers_automation.sh |
| Excel | ./skills/automating-excel/scripts/set_up_excel_automation.sh |
| Reminders | ./skills/automating-reminders/scripts/set_up_reminders_automation.sh |
| Contacts | ./skills/automating-contacts/scripts/set_up_contacts_automation.sh |
| Voice Memos | ./skills/automating-voice-memos/scripts/set_up_voice_memos_automation.sh |
Important: Run scripts from Terminal or the Python interpreter you intend to use for automation. This ensures the correct app (Terminal.app or Python) receives permission approval.
automating-mac-apps-plugin/
├── plugins/automating-mac-apps-plugin/ # Plugin payload
│ ├── .claude-plugin/
│ │ └── marketplace.json # Plugin manifest
│ ├── skills/ # 16 automation skills
│ │ ├── automating-mac-apps/ # Foundation + core patterns
│ │ ├── automating-calendar/
│ │ ├── automating-contacts/
│ │ ├── automating-excel/
│ │ ├── automating-keynote/
│ │ ├── automating-mail/
│ │ ├── automating-messages/
│ │ ├── automating-notes/
│ │ ├── automating-numbers/
│ │ ├── automating-pages/
│ │ ├── automating-powerpoint/
│ │ ├── automating-reminders/
│ │ ├── automating-voice-memos/
│ │ ├── automating-word/
│ │ ├── automating-chrome/
│ │ └── web-browser-automation/
│ ├── commands/ # Slash commands
│ │ ├── /csv-to-numbers
│ │ ├── /csv-to-excel
│ │ ├── /excel-to-numbers
│ │ ├── /numbers-to-excel
│ │ ├── /sheet-report
│ │ ├── /doc-to-deck
│ │ ├── /contact-upsert
│ │ ├── /meeting-setup
│ │ ├── /meeting-start
│ │ └── /meeting-end
│ ├── agents/ # Automation agents
│ ├── AGENTS.md
│ ├── README.md
│ └── LICENSE
├── tests/ # Test suite (not shipped)
├── pyproject.toml # Poetry config for tests
└── README.md # This fileOnce installed, Claude Code automatically loads relevant skills based on context. You can also invoke commands directly:
# Convert CSV to Numbers spreadsheet
/csv-to-numbers data.csv
# Create a Keynote presentation from a document
/doc-to-deck report.md
# Set up a meeting with calendar event, notes, and reminders
/meeting-setup "Project Kickoff" tomorrow 2pmOr ask Claude naturally:
This workspace includes a test suite for contributors:
# Install test dependencies
poetry install --with test
# Run tests
poetry run pytestSee README-tests.md for detailed testing instructions.
MIT License - see LICENSE.
Contributions welcome! Please read the development section above and ensure tests pass before submitting PRs.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.