LoopFlow
Tutorial Workshop Keywords ๐ŸŽฎ LoopFlow Lab
Keywords / also

also

Finishing passes after the goal is met. Building blocks

Syntax

also: <pass>, <pass>

What it does

Lightweight passes that run only after the goal is met, in order โ€” and are skipped if the loop failed. Use it for chores (polish, security, docs). If a pass needs its own pass/fail check, promote it to a real stage instead.

Example

also: polish the code, run a security check, update the docs
finishing passes

Related