> ## 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.

# Official templates

> Discover and run CogFoundry-maintained LoomLoom workflows.

Official templates are CogFoundry-maintained workflows intended to provide the shortest path from structured input to a repeatable result.

## Discover what is available

```bash theme={null}
loomloom template list
```

Availability can vary by environment and permission. Treat this command as the source of truth rather than relying on a static catalog.

The current repository documents these template IDs as common examples. Confirm each one against the configured service before use:

| Template ID                      | Intended workflow                                       |
| -------------------------------- | ------------------------------------------------------- |
| `prd-four-perspective-review-v1` | Review one PRD from four perspectives                   |
| `text-v1`                        | Generate or transform text from structured instructions |
| `text-image-v1`                  | Generate images from text prompts and style settings    |
| `text-image-video-v1`            | Generate image and video outputs from scene inputs      |

If an ID does not appear in `template list`, it is not available to your current environment.

## Inspect the current schema

```bash theme={null}
loomloom template schema <template-id>
loomloom template schema <template-id> --output json
```

The schema is the authoritative definition of:

* required and optional fields;
* exact field keys and labels;
* allowed values and examples;
* the current template version.

## Recommended workbook flow

```bash theme={null}
loomloom template download <template-id> --output-file ./input.xlsx
loomloom template validate-file <template-id> ./input.xlsx
loomloom template precheck-file <template-id> ./input.xlsx
# Review the estimate and explicitly confirm before continuing.
loomloom template submit-file <template-id> ./input.xlsx \
  --client-request-id <stable-id>
```

After submission, keep the returned run ID and use the [run and result commands](/documentation/loomloom/run-and-monitor-workflows).

<Warning>
  Download a fresh workbook when the template schema changes. Do not assume an older workbook remains compatible with the currently available template version.
</Warning>
