create_workflow
Define and generate macOS Automator workflows by specifying a name, type, and action configurations to automate tasks like executing scripts, organizing files, and sending emails.
Instructions
Create a new Automator workflow file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actions | No | Array of action configurations | |
name | Yes | Name of the workflow | |
type | Yes | Type of Automator document |
Input Schema (JSON Schema)
{
"properties": {
"actions": {
"description": "Array of action configurations",
"items": {
"properties": {
"action": {
"type": "string"
},
"parameters": {
"type": "object"
}
},
"type": "object"
},
"type": "array"
},
"name": {
"description": "Name of the workflow",
"type": "string"
},
"type": {
"description": "Type of Automator document",
"enum": [
"workflow",
"application",
"service",
"quick-action"
],
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
}