Awesome-omni-skill workflow-builder

Design automation workflows and pipelines. Use when creating CI/CD, task automation, or process flows.

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/devops/workflow-builder" ~/.claude/skills/diegosouzapw-awesome-omni-skill-workflow-builder && rm -rf "$T"
manifest: skills/devops/workflow-builder/SKILL.md
source content

Workflow Builder

Version: 1.0.0 Purpose: Design and implement automation workflows


Workflow

Step 1: Map Process

Input → Step 1 → Step 2 → ... → Output

Step 2: Identify Triggers

Trigger TypeExample
TimeEvery day at 9:00
EventFile created
ManualUser command
WebhookAPI call

Step 3: Design Steps

workflow:
  name: "Daily Report"
  trigger: schedule("0 9 * * *")
  steps:
    - name: Gather Data
      action: fetch_metrics
    - name: Generate Report
      action: create_markdown
    - name: Send Notification
      action: send_slack

Step 4: Implement

Choose platform:

  • GitHub Actions
  • Tasker (Android)
  • Shortcuts (iOS)
  • cron + shell

Output

Provide:

  1. Workflow diagram (Mermaid)
  2. Implementation code
  3. Setup instructions