macos-setup
Audited by Socket on Feb 16, 2026
1 alert found:
MalwareNo clear malicious code is present in the provided skill fragment. The script and YAML are coherent with an interactive macOS setup tool: detection, asking preferences, generating an install plan, and executing installs via Homebrew and npm. Main risks are supply-chain and operational: it automates many package installs (increasing exposure to compromised packages/taps), it allows the user to set a proxy which will be exported and set as git global proxy (a useful feature but potentially dangerous if the proxy is malicious), and it uses eval in retry_install (standard for command retry but a hazard if untrusted input can reach it). Recommend: ensure Brewfile and config files are pulled from trusted repository state, warn users about trusting proxy endpoints before setting persistent git proxy, avoid eval on untrusted inputs and consider validating or constructing command arguments without eval. Overall: functionally benign but with moderate supply-chain and operational risks to be managed.