Skills agentic-workflow-automation

Generate reusable multi-step agent workflow blueprints. Use for trigger/action orchestration, deterministic workflow definitions, and automation handoff artifacts.

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/0x-professor/agentic-workflow-automation" ~/.claude/skills/openclaw-skills-agentic-workflow-automation && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/0x-professor/agentic-workflow-automation" ~/.openclaw/skills/openclaw-skills-agentic-workflow-automation && rm -rf "$T"
manifest: skills/0x-professor/agentic-workflow-automation/SKILL.md
source content

Agentic Workflow Automation

Overview

Build workflow blueprints that can be translated into automation platforms such as n8n or internal orchestrators.

Workflow

  1. Define workflow name, trigger, and ordered steps.
  2. Normalize each step into a simple execution contract.
  3. Build a blueprint with dependencies and execution order.
  4. Export JSON/markdown artifacts for implementation.

Use Bundled Resources

  • Run
    scripts/generate_workflow_blueprint.py
    for deterministic workflow output.
  • Read
    references/workflow-blueprint-guide.md
    for step design guidance.

Guardrails

  • Keep each step single-purpose.
  • Include clear fallback behavior for failed steps.