Skip to content
FrankX.AI
Guide12 min read

Workflows Guide

Build orchestrated pipelines that coordinate skills and agents.

Workflow Patterns

Three main patterns: Pipeline, Parallel, and Iterative.

Pipeline: Research -> Plan -> Create -> Publish
Parallel: Split -> [A, B, C] -> Synthesis
Iterative: Create -> Evaluate -> [Loop]

Built-in Workflows

WorkflowCommand
Daily Content Ops/daily-content-ops
Publishing Factory/factory
Research/research [topic]

Creating Workflows

name: my-workflow
steps:
  - id: research
    type: skill
    skill: content-strategy
  - id: create
    type: agent
    agent: creation-engine

Related Resources