A visual format for recipes: actions flow left-to-right, ingredients flow top-to-bottom in dependency (Kahn) order
The idea behind it: each action or ingredient may depend on other actions, forming a directed acyclic graph (DAG) — nodes are actions or ingredients, an edge A→B means "B needs A done first". Kahn's algorithm topologically sorts that graph, so the ingredients of every dependency action are always listed before the action that uses them. Rows therefore read top-to-bottom in real cooking order, and action columns read left-to-right in the same dependency order.
Paste a recipe link below, then copy the LLM prompt. Paste the prompt (with the link) into your favorite LLM and drop the returned JSON into the JSON view.