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

# Artifacts and Result Files

> List and download files generated by a LoomLoom run.

Artifacts are outputs produced by individual steps, such as text, images, videos, or documents.

## List artifacts

```bash theme={null}
loomloom artifact list <run-id>
loomloom artifact list <run-id> --page-size 100 --output json
```

The response associates artifacts with their run and workflow step when that metadata is available.

## Download artifacts

```bash theme={null}
loomloom artifact download <run-id> --output-dir ./downloads
```

Use `--download-timeout` to change the per-file timeout:

```bash theme={null}
loomloom artifact download <run-id> \
  --output-dir ./downloads \
  --download-timeout 10m
```

If `--output-dir` is omitted, the CLI uses `artifacts-<run-id>`.

## Download the result workbook

For workbook-oriented workflows, download the aligned input and result workbook:

```bash theme={null}
loomloom run result-workbook <run-id> \
  --output-file ./result.xlsx \
  --download-timeout 10m
```

<Warning>
  Artifact `accessUrl` values are temporary signed URLs. Do not copy them into long-lived logs, documentation, or source code. Use the download commands to materialize files locally.
</Warning>

Text output for result rows shows inline text when available and otherwise indicates that a download URL exists without printing the signed URL. JSON consumers must apply their own redaction and retention controls.
