> ## Documentation Index
> Fetch the complete documentation index at: https://docs.frayme.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Workflows overview

> The visual decision graph that turns events into outcomes — anatomy, nodes, variables, runs.

A **workflow** is Frayme's executable representation of a compliance decision. Each workflow is a directed graph where nodes do work — call a vendor, evaluate a rule, run AI synthesis, route on a value, hand off to a human — and edges define the order.

## How to navigate this section

<CardGroup cols={2}>
  <Card title="Foundations" icon="cube">
    [Anatomy](/workflows/anatomy), [Variables & templating](/workflows/variables-templating), [Connections & secrets](/workflows/connections-secrets), [Testing](/workflows/testing), [Versioning](/workflows/versioning).
  </Card>

  <Card title="Node reference" icon="puzzle-piece">
    Per-node-type pages — input, rule, decisionTable, dataSource, customApi, manualReview, action, output, plus the rest. [Start here](/workflows/nodes/overview).
  </Card>
</CardGroup>

## A workflow at a glance

```mermaid theme={null}
flowchart LR
  In[Input] --> Rule
  Rule --> DS[Data Source]
  DS --> AI
  AI --> DT[Decision Table]
  DT --> MR[Manual Review]
  DT --> Act[Auto Action]
  MR --> Out[Output]
  Act --> Out
```

Inputs ingest the case. Data sources and custom APIs enrich it. Rules, scorecards and AI nodes evaluate the enriched context. Decision tables and splits route. Manual review or auto actions resolve the case. Outputs write the decision.

See [Anatomy](/workflows/anatomy) for the structural reference.
