flow-add-echo
Add a message label to a flow being recorded, printed when the flow replays. Use to mark checkpoints between tool calls for clearer replay logs.
Instructions
Record an echo step in the flow named by name + project_root. Echo steps print a message when the flow is replayed — useful as labels between tool calls.
Use when you want to annotate a recorded flow with a human-readable label or checkpoint message.
Returns { message, stepCount, savedTo }. Fails if that flow has no recording in progress.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the flow being recorded — the one passed to flow-start-recording. | |
| message | Yes | Message to echo when the flow is replayed | |
| project_root | Yes | Absolute path to the project root of the flow being recorded — the same value passed to flow-start-recording. Together with `name` it identifies which recording this echo belongs to. |