automation-orchestrator
Intelligent workflow automation and orchestration system for AI agents with scheduling, error handling, and monitoring capabilities
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Intelligent workflow automation and orchestration system for AI agents with scheduling, error handling, and monitoring capabilities
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
A library of 150 brand and aesthetic design systems (Apple, Stripe, Linear, Vercel, Notion, GitHub, Figma, Spotify, Tesla, and more, plus styles like brutalism, glassmorphism, neumorphism, editorial, minimal). Use when the user wants a UI to look like a brand, match a brand's style or vibe, or adopt a named aesthetic. Read references/<brand>.md for that brand's colors, typography, spacing, radii, and component style before generating any UI.
Apply Anthropic's official brand colors and typography to artifacts for consistent visual identity and professional design standards. A reference for shaping your own.
Create beautiful visual art in PNG and PDF documents using design philosophy and aesthetic principles for posters, illustrations, and static pieces.
Frontend design and UI/UX development tools for shipping production-ready interfaces with strong typographic and layout discipline.
Apply professional font and color themes to artifacts including slides, docs, reports, and HTML landing pages. Ships 10 pre-set themes.
Orchestrates UI and page design. Use when the user asks to design a page, screen, UI, landing page, dashboard, login flow, pricing page, invoice, resume, FAQ, article, slide deck, social card, or any web layout; to make it look like a brand (Apple, Stripe, Linear, Vercel, Notion, ...); or to build a mockup, prototype, wireframe, or HTML preview. Picks a matching layout skill, optionally adopts a brand design system, then writes a single self-contained HTML file to <project>/.devspace/preview/ so DevSpace can preview it.
| name | automation-orchestrator |
| description | Intelligent workflow automation and orchestration system for AI agents with scheduling, error handling, and monitoring capabilities |
This built-in skill provides intelligent workflow automation and orchestration capabilities for AI agents to create, manage, and execute complex automated workflows with robust error handling and monitoring.
tool: automation-orchestrator
action: create_workflow
workflow:
name: "Daily Backup"
description: "Daily backup of important files"
steps:
- name: "Check disk space"
tool: "system-monitor"
action: "get_system_status"
parameters:
metrics: ["disk_usage"]
- name: "Create backup"
tool: "file-backup"
action: "create_backup"
parameters:
source: ["/home/user/documents"]
destination: "/backup/daily"
condition: "disk_usage < 80"
- name: "Send notification"
tool: "agent-mail"
action: "send_email"
parameters:
to: ["user@example.com"]
subject: "Daily Backup Completed"
body: "Backup completed successfully"
tool: automation-orchestrator
action: schedule_workflow
workflow_id: "weekly-report"
schedule:
type: "cron"
expression: "0 9 * * 1" # Every Monday at 9 AM
parameters:
report_type: "weekly"
recipients: ["team@example.com"]
error_handling:
max_retries: 3
retry_delay: "300s"
notify_on_failure: true
tool: automation-orchestrator
action: execute_workflow
workflow:
name: "Deployment Pipeline"
steps:
- name: "Run tests"
tool: "secure-command-executor"
action: "execute"
parameters:
command: "npm test"
- name: "Build application"
tool: "secure-command-executor"
action: "execute"
parameters:
command: "npm run build"
condition: "previous_step.success"
- name: "Deploy to staging"
tool: "docker-management"
action: "deploy_container"
parameters:
image: "app:latest"
environment: "staging"
condition: "previous_step.success"
- name: "Run integration tests"
tool: "secure-command-executor"
action: "execute"
parameters:
command: "npm run integration-tests"
condition: "previous_step.success"
- name: "Deploy to production"
tool: "docker-management"
action: "deploy_container"
parameters:
image: "app:latest"
environment: "production"
condition: "previous_step.success"
error_handling:
on_failure:
- name: "Rollback deployment"
tool: "docker-management"
action: "rollback_deployment"
- name: "Notify team"
tool: "agent-chat"
action: "send_message"
parameters:
platform: "slack"
channel: "#deployments"
message: "Deployment failed, rollback initiated"
The automation-orchestrator skill can be configured with the following parameters:
default_timeout: Default timeout for workflow steps (default: 5m)max_concurrent_workflows: Maximum number of concurrent workflows (default: 10)retry_policy: Default retry policy for failed steps (exponential_backoff)storage_backend: Storage backend for workflow state (sqlite, postgres, memory)notification_channels: Enabled notification channels (email, slack, internal)This skill is essential for any agent that needs to automate complex workflows, coordinate multiple tools and services, handle errors gracefully, and ensure reliable execution of automated processes.