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

# Note step

> Annotate a workflow without affecting execution.

The Note step is a documentation-only node. It holds free-text `content` and does nothing at run time — it always succeeds, produces no output, and does not alter `ctx` or the flow.

## When to use it

Use a Note to leave context on the canvas for whoever edits the workflow next:

* Explain why a branch exists or what an external API returns
* Mark a section that is a work in progress
* Record a link to the ticket or doc that motivated the workflow

## Behavior

| Aspect     | Value                                            |
| ---------- | ------------------------------------------------ |
| **Inputs** | `content` (free text)                            |
| **Output** | None — nothing is added to `ctx`                 |
| **Status** | Always `success`                                 |
| **Flow**   | Does not branch; execution continues as laid out |

<Note>
  Because a Note never reads or writes `ctx`, you can add or remove one at any time without changing what the workflow does.
</Note>
