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

also

Finishing passes after the goal is met. Augment

Syntax

also: <pass>, <pass>

What it does

Lists finishing passes that run once, in order, only after the goal is met โ€” and are skipped entirely if the loop failed. Think of them as the chores you want done on a green result but don't want cluttering the core cycle: polish the code, run a security scan, update the docs, tidy imports. They run after the done when check has already passed, so they can't be what makes the loop go green โ€” the goal is the goal, and also is the after-work.

Reach for it when a task has a hard, verifiable core plus a few nice-to-haves that don't each deserve their own pass/fail gate. Keeping them out of done when matters: if you fold "and the docs are updated" into the predicate, a docs miss keeps the whole loop red and burns retries on the wrong thing. As an also pass it runs best-effort on success instead. The flip side is the rule of thumb: if a pass needs its own verification โ€” its own test or scan that must pass โ€” it isn't a finishing pass, it's a real stage. Promote it so it gets a proper done when and back-edge. Use also only for work that's fine to run once, unchecked, at the end.

Example

also: polish the code, run a security check, update the docs
finishing passes
loop "add the CSV export endpoint":
  goal: GET /reports.csv streams the report as CSV
  done when "pnpm test reports" passes
  each cycle: plan, then act, then observe
  also: update the API docs, add a changelog entry
chores that run once, on success

Common mistakes

Related