agent-swarm-orchestati…
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews,…
Control macOS via AppleScript/osascript. Manage windows (move, resize, tile), apps (launch, quit, focus), system (volume, dark mode, notifications), Spotify, browsers, Calendar, Reminders, Finder, and clipboard. Use when the user asks to control their Mac, arrange windows,
$ npx -y skills add suitedaces/dorabot --skill macos --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/macosContext preview
The summary Claude sees to decide when to auto-load this skill.
Control macOS via AppleScript/osascript. Manage windows (move, resize, tile), apps (launch, quit, focus), system (volume, dark mode, notifications), Spotify, browsers, Calendar, Reminders, Finder, and clipboard. Use when the user asks to control their Mac, arrange windows,
name: macos
description: "Control macOS via AppleScript/osascript. Manage windows (move, resize, tile), apps (launch, quit, focus), system (volume, dark mode, notifications), Spotify, browsers, Calendar, Reminders, Finder, and clipboard. Use when the user asks to control their Mac, arrange windows, manage apps, or interact with native macOS features."
metadata:
{ "requires": { "bins": ["osascript"] } }Control macOS apps, windows, and system features via `osascript` through the Bash tool. All commands run AppleScript one-liners.
**Permissions:** Window management and UI scripting require Accessibility permission for Terminal/iTerm2 (System Settings > Privacy & Security > Accessibility). App control, volume, notifications, Spotify, browsers, Calendar, Reminders, and Finder work without it.
---
> Requires Accessibility permission
osascript -e 'tell application "Finder" to get bounds of window of desktop' # Returns: 0, 0, 1920, 1080 (x1, y1, x2, y2)
# Frontmost app's front window
osascript -e 'tell application "System Events" to tell (first process whose frontmost is true) to get {position, size} of window 1'
# Specific app
osascript -e 'tell application "Safari" to get bounds of front window'# Set bounds: {x1, y1, x2, y2}
osascript -e 'tell application "Safari" to set bounds of front window to {0, 25, 960, 1080}'
# Using System Events (works for any app)
osascript -e 'tell application "System Events" to tell process "Safari" to set position of window 1 to {100, 100}'
osascript -e 'tell application "System Events" to tell process "Safari" to set size of window 1 to {800, 600}'# Left half (1920x1080 screen, 25px menu bar)
osascript -e 'tell application "Safari" to set bounds of front window to {0, 25, 960, 1080}'
# Right half
osascript -e 'tell application "Google Chrome" to set bounds of front window to {960, 25, 1920, 1080}'osascript -e '
tell application "Finder" to set screenBounds to bounds of window of desktop
set W to item 3 of screenBounds
set H to item 4 of screenBounds
tell application "Safari" to set bounds of front window to {0, 25, W / 2, H}
tell application "Google Chrome" to set bounds of front window to {W / 2, 25, W, H}
'osascript -e 'tell application "Safari" to set miniaturized of window 1 to true' osascript -e 'tell application "Safari" to set miniaturized of window 1 to false'
osascript -e 'tell application "System Events" to get {name, position, size} of every window of every process whose visible is true'osascript -e 'tell application "Safari" to activate' -e 'tell application "Safari" to set index of window "Page Title" to 1'
---
osascript -e 'tell application "Safari" to activate'
osascript -e 'tell application "Safari" to quit' # Only if running osascript -e 'tell application "Safari" to if it is running then quit'
osascript -e 'tell application "System Events" to set visible of process "Safari" to false'
osascript -e 'tell application "System Events" to get name of every process whose background only is false'
osascript -e 'application "Safari" is running' # Returns: true / false
osascript -e 'tell application "System Events" to get name of first process whose frontmost is true'
---
# Get volume (0-100) osascript -e 'output volume of (get volume settings)' # Set volume osascript -e 'set volume output volume 50' # Mute / unmute osascript -e 'set volume output muted true' osascript -e 'set volume output muted false' # Check mute status osascript -e 'output muted of (get volume settings)'
# Get status osascript -e 'tell application "System Events" to tell appearance preferences to get dark mode' # Toggle osascript -e 'tell application "System Events" to tell appearance preferences to set dark mode to not dark mode' # Set explicitly osascript -e 'tell application "System Events" to tell appearance preferences to set dark mode to true'
# Simple osascript -e 'display notification "Done!" with title "Agent" sound name "Glass"' # With subtitle osascript -e 'display notification "Build succeeded" with title "CI" subtitle "main branch" sound name "Purr"'
# Alert osascript -e 'display alert "Heads up" message "Deployment starting in 5 minutes"' # Input dialog osascript -e 'display dialog "Enter name:" default answer ""' # Returns: button returned:OK, text returned:...
---
> Spotify must be running. These do NOT require Accessibility permission.
# Play / pause / next / prev
osascript -e 'tell application "Spotify" to playpause'
osascript -e 'tell application "Spotify" to next track'
osascript -e 'tell application "Spotify" to previous track'
# Current track info
osascript -e 'tell application "Spotify" to get {name of current track, artist of current track, album of current track}'
# Player state: playing / paused / stopped
osascript -e 'tell application "Spotify" to player state'
# Volume (0-100)
osascript -e 'tell application "Spotify" to sound volume'
osascript -e 'tell application "Spotify" to set sound volume to 60'
# Shuffle / repeat toggle
osascript -e 'tell application "Spotify" to set shuffling to not shuffling'
osascript -e 'tell application "Spotify" to set repeating to not repeating'
# Seek to position (seconds)
osascript -e 'tell application "Spotify" to seA 24/7 self-learning AI agent with an integrated IDE workspace that runs itself. Works with your existing Claude Code or OpenAI Codex subscription. No extra API key needed.
Repo: suitedaces/dorabot
Master multi-agent orchestration using Claude Code's TeammateTool and Task system. Use when coordinating multiple agents, running parallel code reviews,…
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple…
Generate memes using the free memegen.link API. Create image memes from 200+ templates with custom top/bottom text, or use textual meme formats.
Generate and edit images using the Gemini API. Text-to-image, image editing, multi-turn iteration, 4K resolution, search grounding.
Personalize the agent — interview the user to build their profile (USER.md) and craft the agent's personality (SOUL.md). Triggered by 'onboard', 'personalize',…