Rule card
Reads sticker only
Ordinary programs, repeating steps
Most software repeats: look at input, choose the next move, do it—then repeat or stop. Your program still runs tools and decides when to stop.
Programs may save results and enforce stopping and safety.
One parcel, same sticker and note every round. Route it twice—first with a rule card that reads the sticker only, then swap the chooser at Choose to read both signals.
Rule card
Reads sticker only
Language card
Reads sticker + note
PKG-104
ROUTE: ENGINEERING
For Alex in Engineering — I'm at reception all day. Please leave it there.
Clear, stable fields? Use rules. Conflicting notes or messy text? A simple agent can use a language model at Choose. Your program still checks every suggestion before it runs.
Same loop. A language model often helps at Choose. Your program still owns Do—and saving, stopping, and safety.
while not done:
input = look(state)
move = choose(input)
if validate(move):
state = run(move)