원클릭으로
slay-automations
Create and manage automations via the slay CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create and manage automations via the slay CLI
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Full CLI reference for slay — orchestrates all slay domain skills
Manage tasks, subtasks, tags, and templates via the slay CLI
Automatically title tasks based on conversation context
Commit the changes that has been worked on in this session
Manage task assets (files, folders) via the slay CLI
Control the task browser panel via the slay CLI
| name | slay-automations |
| description | Create and manage automations via the slay CLI |
| trigger | auto |
Automations are project-scoped, event-driven actions. They fire shell commands in response to task events or on a cron schedule.
| Type | Fires when | Extra flags |
|---|---|---|
task_status_change | Task status changes | --trigger-from-status, --trigger-to-status (both optional, filter transitions) |
task_created | New task created | — |
task_archived | Task archived | — |
task_tag_changed | Tags modified on a task | — |
cron | On schedule | --cron <expression> (required) |
manual | Only via slay automations run | — |
slay automations list --project <name|id> [--json]
List automations for a project. Shows enabled state, trigger type, run count, and last run time.
slay automations view <id> [--json]
View full automation details including trigger config, conditions, and actions.
slay automations create <name> --project <name|id> --trigger <type> [--action-command <cmd>] [--trigger-from-status <status>] [--trigger-to-status <status>] [--cron <expression>] [--description <text>] [--config <file>]
Create an automation. For simple automations, use --action-command to specify a shell command. For complex setups with multiple actions or conditions, use --config <file> which accepts a JSON file with { trigger_config, conditions?, actions } — this overrides all other flags.
slay automations update <id> [--name <n>] [--description <text>] [--enabled] [--disabled] [--trigger <type>] [--action-command <cmd>] [--trigger-from-status <s>] [--trigger-to-status <s>] [--cron <expr>]
Update an automation. At least one option required.
slay automations delete <id> — permanently delete an automation.
slay automations toggle <id>
Flip the enabled/disabled state. You don't need to know the current state — it toggles automatically.
slay automations run <id>
Manually trigger an automation. Requires the SlayZone app to be running (uses the app's HTTP API). Reports status and duration.
slay automations runs <id> [--limit <n>] [--json]
View execution history. Shows status, duration, and any errors. Default limit is 10.
{
"trigger_config": { "type": "task_status_change", "params": { "toStatus": "done" } },
"actions": [
{ "type": "run_command", "params": { "command": "echo 'Task completed!'" } }
]
}