LoopFlow
Tutorial Workshop Keywords ๐ŸŽฎ LoopFlow Lab
Keywords / models:

models:

Model tiering by phase. Ops & reuse

Syntax

models: fast <model>, strong <model>

What it does

Name two tiers and the engine auto-assigns plan / reflect / also โ†’ fast and act โ†’ strong (observe is a shell check, no model). Override a phase or use all; cascades file โ†’ loop โ†’ stage; --model overrides everything. A stack of cheap calls plus one strong act โ€” and an end-of-run per-tier cost summary so the spend is measurable.

Example

models: fast haiku, strong opus        # file default
# override: `models: act fast`  or  `models: all strong`
tier the cycle

How it runs

ONE CYCLE โ€” SPLIT ACROSS TWO MODEL TIERS fast lane plan reflect also strong lane act observe = shell check ยท no model
Cheap model for the thinking phases, strong model for writing code. The end-of-run summary shows the call mix per tier.

Related