mirror of
https://github.com/ruvnet/RuView
synced 2026-07-20 17:03:24 +00:00
d0525359d4
ADR-125 Tier 2 "Shortcuts-as-glue" item. Three files under
`scripts/macos-shortcuts/`:
README.md one-time operator setup + architecture diagram
announce-via-homepod.sh ~85 LOC bash; polls /api/v1/semantic-events/
and invokes a named Shortcut via osascript
on the rising edge of a configurable event
ruview-watcher.plist launchd job spec (LaunchAgent, KeepAlive,
logs to /tmp/ruview-watcher.{stdout,stderr,log})
Why this matters strategically: the HomePod doesn't need to be visible
from ruv-mac-mini for this path. The Mac mini is iCloud-paired into the
operator's Home graph; Shortcuts.app reaches the HomePod via that graph,
not via local mDNS. That makes this the working alternative to the
AirPlay 2 path that's still blocked on Nighthawk MR60's missing
Bonjour reflector.
Smoke test on real C6 (real hardware, no mocks):
$ ~/announce-via-homepod.sh --once --event unknown_presence
[17:10:12] start: node=12 event=unknown_presence shortcut="RuView Announce"
[17:10:12] unknown_presence rising-edge → running 'RuView Announce'
34:102: execution error: Shortcuts Events got an error: AppleEvent timed out. (-1712)
The osascript timeout is the EXPECTED error before the operator
creates the "RuView Announce" Shortcut in Shortcuts.app — the
trigger logic is verified working. Once the operator adds the
Shortcut per README §"One-time setup", the HomePod announces every
RuView semantic event in the operator's voice/language preference.
Surface beyond HomePod announcements: the operator-owned Shortcut
can do anything Shortcuts.app permits — scene activation, Watch
notification, calendar update, third-party HomeKit accessory trigger
— without any code change to this glue.
Refs ADR-125 §1.4 "Tier 2 — Shortcuts-as-glue", §2.1.d.
Co-Authored-By: claude-flow <ruv@ruv.net>
76 lines
2.5 KiB
Plaintext
76 lines
2.5 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
ADR-125 §1.4 Tier 2 — launchd job for the RuView ↔ Shortcuts.app bridge.
|
|
|
|
Install:
|
|
cp ruview-watcher.plist ~/Library/LaunchAgents/com.ruvnet.ruview.watcher.plist
|
|
launchctl load ~/Library/LaunchAgents/com.ruvnet.ruview.watcher.plist
|
|
launchctl list | grep ruvnet
|
|
|
|
Uninstall:
|
|
launchctl unload ~/Library/LaunchAgents/com.ruvnet.ruview.watcher.plist
|
|
rm ~/Library/LaunchAgents/com.ruvnet.ruview.watcher.plist
|
|
|
|
Runs as the *user* (LaunchAgent — not LaunchDaemon) because Shortcuts.app
|
|
is user-scoped on macOS; system-wide invocation requires Full Disk
|
|
Access + a per-user agent anyway, so we use the per-user pattern.
|
|
|
|
Operator: adjust the path to announce-via-homepod.sh below if you
|
|
cloned the repo somewhere other than ~/.
|
|
-->
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>com.ruvnet.ruview.watcher</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>/bin/bash</string>
|
|
<!-- Adjust this path to where announce-via-homepod.sh lives on
|
|
your Mac. The default ~/announce-via-homepod.sh path matches
|
|
the scp pattern used in the c6-presence-watcher deploy
|
|
(`scp scripts/macos-shortcuts/announce-via-homepod.sh ruv-mac-mini:~/`). -->
|
|
<string>/Users/cohen/announce-via-homepod.sh</string>
|
|
<string>--node-id</string>
|
|
<string>12</string>
|
|
<string>--event</string>
|
|
<string>unrecognized_activity_pattern</string>
|
|
<string>--shortcut-name</string>
|
|
<string>RuView Announce</string>
|
|
<string>--announcement</string>
|
|
<string>RuView detected an unrecognized activity pattern</string>
|
|
<string>--poll-interval</string>
|
|
<string>5</string>
|
|
</array>
|
|
|
|
<key>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>RUVIEW_SENSING_URL</key>
|
|
<string>http://localhost:3000</string>
|
|
<key>RUVIEW_LOG</key>
|
|
<string>/tmp/ruview-watcher.log</string>
|
|
<key>PATH</key>
|
|
<string>/usr/local/bin:/opt/homebrew/bin:/usr/bin:/bin</string>
|
|
</dict>
|
|
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
|
|
<key>KeepAlive</key>
|
|
<dict>
|
|
<key>SuccessfulExit</key>
|
|
<false/>
|
|
</dict>
|
|
|
|
<key>StandardOutPath</key>
|
|
<string>/tmp/ruview-watcher.stdout</string>
|
|
|
|
<key>StandardErrorPath</key>
|
|
<string>/tmp/ruview-watcher.stderr</string>
|
|
|
|
<key>ProcessType</key>
|
|
<string>Background</string>
|
|
</dict>
|
|
</plist>
|