system_automation
Automate system tasks on macOS such as emptying trash, toggling dark mode, taking screenshots, and managing display settings using predefined actions for efficient workflow enhancement.
Instructions
Perform system-level automation tasks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parameters | No | Task-specific parameters | |
task | Yes | System task to perform |
Input Schema (JSON Schema)
{
"properties": {
"parameters": {
"description": "Task-specific parameters",
"type": "object"
},
"task": {
"description": "System task to perform",
"enum": [
"empty_trash",
"show_desktop",
"hide_all_apps",
"sleep_display",
"take_screenshot",
"start_screensaver",
"toggle_dark_mode",
"get_system_info"
],
"type": "string"
}
},
"required": [
"task"
],
"type": "object"
}