Macos Connectivity Restore
AdvisoryAudited by Static analysis on May 3, 2026.
Overview
No suspicious patterns detected.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Running this can override managed Mac restrictions and may conflict with device-owner, employer, school, or MDM policy.
The root script directly edits protected managed preference files to enable AirDrop and Universal Control.
GLOBAL_ACCESS="/Library/Managed Preferences/com.apple.applicationaccess.plist" ... set_bool_key "${GLOBAL_ACCESS}" "allowAirDrop" trueRun only on a Mac you own or administer, and only if you are authorized to change managed AirDrop and Universal Control policy.
The Mac may keep re-enabling these settings even after reboot or after another administrator tries to change them back.
The installer creates launchd jobs that run automatically after reboot/login and reapply the preference changes.
<key>RunAtLoad</key>\n <true/> ... launchctl bootstrap system "${ROOT_PLIST}"Use the persistence option only with explicit approval, and provide or verify a clear removal process for the LaunchDaemon and LaunchAgent.
A privileged installation flow that runs code from /tmp is more exposed to local tampering or race conditions than a safer, private temporary location.
The script writes an installer into a predictable /tmp path and then executes it with administrator privileges.
ROOT_INSTALL_SH="/tmp/${ROOT_LABEL}.install.sh" ... osascript -e "do shell script \"/bin/zsh '${ROOT_INSTALL_SH}'\" with administrator privileges"Review the script before approving the admin prompt; prefer a secure temporary directory or direct, integrity-controlled privileged install command.
Users may not realize from metadata alone that the skill is platform-specific and performs privileged local system changes.
The registry metadata under-declares that this is a macOS-only skill that uses system tools and privileged launchd installation.
OS restriction: none; Required binaries: none; No install spec
Declare macOS-only operation and the required system tools/privileged behavior in metadata or installation notes.
