Sentinel

Shortcuts

Sentinel registers one App Intent per verb, plus a script picker (so Apple Shortcuts offers you a dropdown of your actual scripts instead of a text field you have to fill in correctly). They show up in the Apple Shortcuts app under “Sentinel” once Sentinel has run at least once, but every action below still works as a plain step in a shortcut.

No Siri phrases have been registered for Sentinel.

Available actions

Walkthrough: A quick “Restart Dev Server” shortcut

  1. Open the Shortcuts app → + → new shortcut.
  2. Search for “Sentinel” in the action library, add Restart Script.
  3. Tap the script field — it offers a picker of your configured scripts. Choose the ‘Dev Server’ script.
  4. Rename the shortcut “Restart Dev Server” and give it an icon.
  5. Add it to your Mac’s menu bar (Shortcuts → Details → pin to menu bar) or Dock for a one-click restart without opening Sentinel’s own menu.

Walkthrough: Status check before opening a browser tab

Chain Get Script Status into an If action so a shortcut only opens localhost:3000 when the server’s actually up, instead of opening a tab that 404s:

  1. Add Get Script Status, script = e.g. Work/Web.
  2. Add an If action: Get Script Status is true.
  3. Inside the If: Open URLhttp://localhost:3000.
  4. Otherwise: add Start Script (same script), then Open URL again — or just show a notification that it’s starting.

More surfaces: URL scheme · AppleScript · CLI