Skip to content
OpenSmartRoute
Skillv1.0.0

Apple Shortcuts Integration

Create and trigger Apple Shortcuts for iOS/macOS automation and cross-platform workflows

by claude-office-skills(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from claude-office-skills/skills (apple-shortcuts/SKILL.md) via skills.sh. Install upstream with npx skills add claude-office-skills/skills --skill apple-shortcuts. Copyright stays with the author.

Apple Shortcuts Integration

Integrate with Apple ecosystem for iOS and macOS automation.

Core Capabilities

Run Shortcuts

shortcut_execution:
  run:
    name: "Morning Routine"
    input: optional
    
  run_with_input:
    name: "Process Text"
    input: "{{text_to_process}}"
    
  run_with_clipboard:
    name: "Share to App"
    input: clipboard

Apple Reminders

reminders:
  create:
    title: "{{task}}"
    list: "Work"
    due_date: "{{date}}"
    due_time: "09:00"
    priority: high
    notes: "{{details}}"
    
  query:
    list: "Shopping"
    completed: false
    
  complete:
    reminder_id: "{{id}}"

Apple Notes

notes:
  create:
    title: "Meeting Notes - {{date}}"
    folder: "Work"
    body: |
      # {{meeting_title}}
      
      ## Attendees
      {{attendees}}
      
      ## Notes
      {{notes}}
      
  append:
    note_title: "Running Log"
    content: "- {{date}}: {{entry}}"
    
  search:
    query: "project alpha"
    folder: "Projects"

Calendar

calendar:
  create_event:
    title: "{{event_title}}"
    calendar: "Work"
    start: "{{start_time}}"
    end: "{{end_time}}"
    location: "{{location}}"
    notes: "{{notes}}"
    alerts:
      - 30  # minutes before
      
  query:
    calendar: "all"
    start: today
    end: "+7 days"

Shortcut Examples

Daily Log

shortcut_daily_log:
  steps:
    - get_current_date
    - prompt_for_input:
        message: "How was your day?"
    - append_to_note:
        title: "Daily Journal"
        content: |
          ## {{date}}
          {{input}}
    - create_reminder:
        title: "Journal entry"
        due: tomorrow 9am

Quick Capture

shortcut_quick_capture:
  trigger: share_sheet
  steps:
    - get_shared_input
    - create_note:
        title: "Captured - {{date}}"
        body: "{{input}}"
    - notify: "Captured successfully"

Integration Workflows

Cross-Platform Sync

sync_workflow:
  trigger: note_created
  actions:
    - if: tag == "work"
      then:
        - sync_to: notion
        - sync_to: obsidian
    - if: has_task
      then:
        - create_reminder: from_task

Best Practices

  1. Naming: Clear, descriptive shortcut names
  2. Input Handling: Validate inputs
  3. Error Handling: Graceful failures
  4. Privacy: Minimize data exposure
  5. Testing: Test on all devices

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/claude-office-skills-skills-apple-shortcuts/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

claude-office-skills-skills-apple-shortcuts.ocm.jsonjson
{
  "ocm": "1",
  "id": "claude-office-skills-skills-apple-shortcuts",
  "kind": "skill",
  "name": "Apple Shortcuts Integration",
  "description": "Create and trigger Apple Shortcuts for iOS/macOS automation and cross-platform workflows",
  "publisher": "claude-office-skills",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "apple",
      "shortcuts",
      "ios",
      "macos",
      "automation",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Create and trigger Apple Shortcuts for iOS/macOS automation and cross-platform workflows"
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/claude-office-skills/skills",
      "path": "apple-shortcuts/SKILL.md",
      "ref": "HEAD",
      "url": "https://www.skills.sh/claude-office-skills/skills/apple-shortcuts-integration",
      "key": "claude-office-skills/skills/apple-shortcuts/SKILL.md"
    }
  },
  "instructions": "# Apple Shortcuts Integration\n\nIntegrate with Apple ecosystem for iOS and macOS automation.\n\n## Core Capabilities\n\n### Run Shortcuts\n```yaml\nshortcut_execution:\n  run:\n    name: \"Morning Routine\"\n    input: optional\n    \n  run_with_input:\n    name: \"Process Text\"\n    input: \"{{text_to_process}}\"\n    \n  run_with_clipboard:\n    name: \"Share to App\"\n    input: clipboard\n```\n\n### Apple Reminders\n```yaml\nreminders:\n  create:\n    title: \"{{task}}\"\n    list: \"Work\"\n    due_date: \"{{date}}\"\n    due_time: \"09:00\"\n    priority: high\n    notes: \"{{details}}\"\n    \n  query:\n    list: \"Shopping\"\n    complet",
  "cost": {
    "context_tokens": 607
  }
}

Fetch it by URL: GET /api/v1/registry/claude-office-skills-skills-apple-shortcuts/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.