Install
openclaw skills install macos-connectivity-restoreClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Restores Universal Control and AirDrop settings on a managed Mac by resetting the relevant managed preference files and setting AirDrop discoverability to Contacts Only. Use when the user asks to reopen Link to Mac or iPad, re-enable Universal Control, unlock AirDrop, restore AirDrop receiving, or make these fixes persist after reboot.
openclaw skills install macos-connectivity-restoreThis skill restores the two settings we previously repaired on this Mac:
Link to Mac or iPadIt is designed for managed Macs where these settings are forced by files under /Library/Managed Preferences.
Root-level managed preferences:
com.apple.universalcontrol.plist
Disable = falsecom.apple.applicationaccess.plist
allowUniversalControl = trueallowAirDrop = truecom.apple.NetworkBrowser.plist
DisableAirDrop = falseUser-level preferences:
com.apple.sharingd
DiscoverableMode = "Contacts Only"com.apple.NetworkBrowser
DisableAirDrop = falsescripts/restore-root.sh
/Library/Managed Preferences.scripts/restore-user.sh
Contacts Only.scripts/install-startup.sh
When the user asks to reapply these settings:
scripts/restore-root.sh <username> with admin privileges.scripts/restore-user.sh.allowUniversalControl = 1allowAirDrop = 1DisableAirDrop = 0DiscoverableMode = "Contacts Only"When the user asks to make the change stick after every reboot:
~/.claude/skills/macos-connectivity-restore.scripts/install-startup.sh./Library/LaunchDaemons/com.joseph.macos-connectivity-restore.root.plist~/Library/LaunchAgents/com.joseph.macos-connectivity-restore.user.plistdefaults read '/Library/Managed Preferences/com.apple.applicationaccess.plist' 2>/dev/null | rg 'allowAirDrop|allowUniversalControl'
defaults read '/Library/Managed Preferences/com.apple.NetworkBrowser.plist' 2>/dev/null
defaults read com.apple.sharingd 2>/dev/null | rg 'DiscoverableMode'