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

# Why repeatable AI workflows

> Understand when a structured LoomLoom workflow is a better fit than a one-off prompt.

A one-off prompt is useful for exploration. Recurring production work usually needs the same inputs, processing rules, and output shape applied again and again.

LoomLoom turns that repeated pattern into a template-driven workflow:

```text theme={null}
define the workflow → prepare rows → validate → estimate → confirm → run → review results
```

## When LoomLoom is a good fit

Use LoomLoom when:

* many rows should follow the same workflow;
* inputs need required fields, allowed values, or examples;
* generated files and row-level results need to stay associated with the original input;
* the workflow should be reused by a team without rebuilding it each time;
* a specific private template version must remain reproducible.

Typical examples include batch copy generation, image or video production, structured review, classification, and data enrichment.

## What structure adds

| Need                  | LoomLoom approach                                            |
| --------------------- | ------------------------------------------------------------ |
| Repeatable input      | A template schema and generated workbook                     |
| Early error detection | Workbook validation before submission                        |
| Cost visibility       | A precheck or Market quote before a paid run                 |
| Execution tracking    | A run ID with status and row-level results                   |
| Reuse                 | Official templates, private template versions, and SkillBots |
| File output           | Result workbooks and downloadable artifacts                  |

LoomLoom does not require every AI interaction to become a workflow. For a single exploratory request, a chat or coding agent may be simpler. Use LoomLoom when the process is repeatable enough that consistency, visibility, and reuse matter.

<Tip>
  Start with an [official template](/documentation/loomloom/official-templates). Create a [private template](/documentation/loomloom/private-templates) only when the existing workflow does not match your process.
</Tip>
