This is a SCRIPT-8 cassette.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ============================================================================ | |
| # OpenClaw Mac Mini — Revoke Admin Access | |
| # ============================================================================ | |
| # This script automates the security handoff (Path A: Full Handoff). | |
| # Run this on the Mac Mini when you're ready to hand full control to the client. | |
| # | |
| # What it does: | |
| # 1. Generates new random passwords for Mac accounts | |
| # 2. Removes all SSH authorized_keys entries |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ============================================================================ | |
| # OpenClaw Mac Mini — Enable Remote Access | |
| # ============================================================================ | |
| # This script configures a Mac Mini for headless remote access. | |
| # A non-technical person can run this by double-clicking the file or via curl. | |
| # | |
| # What it does: | |
| # 1. Enables SSH (Remote Login) | |
| # 2. Enables Screen Sharing (VNC/Remote Desktop) |
This is a SCRIPT-8 cassette.