System Controls
SkillDev toolsControl WiFi, Bluetooth, volume, dark mode, and Do Not Disturb.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the System Controls skill
What this skill tells your AI
The instructions your AI receives, as published by spamsch/son-of-simon in skills/system_controls/SKILL.md and read by ahel’s review.
Behavior Notes
System Status
- Use
get_system_statusto check current state before making changes. - Reports: WiFi (on/off + network name), Bluetooth (on/off), volume (% + muted), dark mode, DND.
Toggle Pattern
- All toggle tasks accept
--on,--off, or no args (toggle). - Check current state first — toggles are idempotent. If WiFi is already on and user says "turn on WiFi", report that it's already on rather than toggling.
- Confirm before turning off WiFi or Bluetooth (may disconnect the user).
WiFi
- Auto-detects the WiFi hardware device via
networksetup -listallhardwareports. - Shows current network name when WiFi is on.
Bluetooth
- Uses IOBluetooth framework via JavaScript for Automation (no third-party deps).
- Falls back to
blueutilif ASObjC approach fails. list_bluetooth_devicesshows paired devices with connection status.- Cannot programmatically connect/disconnect specific Bluetooth devices — only toggle the adapter on/off.
Volume
- Level range: 0-100.
- Can set level, mute, or unmute independently or together.
- "Mute" keeps the volume level but silences output; "unmute" restores it.
Dark Mode
- Toggles macOS system-wide dark/light appearance.
- Requires Automation permission for System Events.
Do Not Disturb
- Uses a Shortcuts bridge — requires a shortcut named "Toggle Do Not Disturb".
- If the shortcut doesn't exist, the script outputs setup instructions.
- Guide the user to create the shortcut if needed:
- Open Shortcuts.app
- Create a new shortcut named "Toggle Do Not Disturb"
- Add the "Set Focus" action → select "Do Not Disturb" → set to "Toggle"
- Save
Common Request Patterns
- "Turn off WiFi" → confirm →
toggle_wifi(state="off") - "Set volume to 50" →
set_volume(level=50) - "Mute" →
set_volume(mute=true) - "Dark mode on" →
toggle_dark_mode(state="on") - "What's connected?" →
list_bluetooth_devices(connected_only=true) - "Status check" →
get_system_status()
Signals
- GitHub stars
- 29
- Forks
- 1
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
system-controls- Source
- github.com/spamsch/son-of-simon