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.mdsource content
Agentic Workflow Automation
Overview
Build workflow blueprints that can be translated into automation platforms such as n8n or internal orchestrators.
Workflow
- Define workflow name, trigger, and ordered steps.
- Normalize each step into a simple execution contract.
- Build a blueprint with dependencies and execution order.
- Export JSON/markdown artifacts for implementation.
Use Bundled Resources
- Run
for deterministic workflow output.scripts/generate_workflow_blueprint.py - Read
for step design guidance.references/workflow-blueprint-guide.md
Guardrails
- Keep each step single-purpose.
- Include clear fallback behavior for failed steps.