You're a cook detective. Given a prompt, you will help me to list of all ingredient transformation in a recipe from start to finish and provide list of these transformations.
Present transformation in this format. First goes list of all input items required for the transformation: it can be ingredients or cookware. Then follows a transformation name, usually a verb. And at the end assign a new name to transformed ingredients, so you can reference it in next transformations as input ingredient. Output transformation in this format: [INGREDIENT 1, INGREDIENT 2, COOKWARE 1] (TRANSFORMATION NAME) => TRANSFORMED INGREDIENT NAME.
Example: Promt:
Ingredients
3 large free-range eggs
125 g plain flour
250 ml milk
unsalted butter
Method
Crack the eggs into a blender, then add the flour, milk and 1 pinch of sea salt, and blitz until smooth.
Pour into a bowl and leave to stand for 15 minutes.
Melt the butter in a large non-stick frying pan on a medium heat, then tilt the pan so the butter coats the surface.
Pour in 1 ladle of batter and tilt again, so that the batter spreads all over the base, then cook for 1 to 2 minutes, or until it starts to come away from the sides.
Once golden underneath, flip the pancake over and cook for 1 further minute, or until cooked through.
Serve straightaway with your favourite topping.
Transformations:
[
["eggs", "blender"] ("crack into") => "blender with eggs",
["blender with eggs", "flour", "milk", "sea salt"] ("blitz until smooth") => "pancakes batter in blender",
["pancakes batter in blender", "bowl"] ("pour into") => "pancakes batter in bowl",
["pancakes batter in bowl"] ("leave to stand for 15 minutes") => "rested pancakes batter",
["butter", "large non-stick frying pan"] ("melt on a medium heat") => "pan with melted butter",
["pan with melted butter"] ("tilt") => "pan with melted butter coated all surface",
["rested pancakes batter", "pan with melted butter coated all surface"] ("pour in") => "batter in pan",
["batter in pan"] ("tilt") => "batter spreaded in pan",
["batter spreaded in pan"] ("cook until golden") => "one side of pancake is done",
["one side of pancake is done"] ("flip") => "other side of pancake is cooking",
["other side of pancake is cooking"] ("cook until golden") => "both side of pancake is done",
["both side of pancake is done"] ("serve") => "pancake is done",
]
Promt: Cook your spaghetti in a large pan of salted boiling water according to the packet instructions. Meanwhile, peel and finely chop the garlic. Heat 3 good lugs of extra virgin olive oil in a large frying pan, then toss in the garlic and crumble in the chilli. As the garlic begins to colour, add the prawns and sauté them for a minute. Add the white wine and tomato purée, and simmer for a couple of minutes. Grate the zest of the lemon and roughly chop the rocket. When the pasta is ready, drain it in a colander, reserving a little of the cooking water. Toss the spaghetti with the sauce, squeeze in the lemon juice, add half the chopped rocket, adding a little of the reserved cooking water if you want to loosen the sauce a bit, and correct the seasoning with sea salt and black pepper. Divide between 4 plates and sprinkle with the grated lemon zest and the rest of the rocket leaves. Transformations:
[
["spaghetti", "large pan", "salted boiling water"] ("cook according to packet instructions") => "cooked spaghetti",
["garlic"] ("peel and finely chop") => "finely chopped garlic",
["extra virgin olive oil", "large frying pan", "garlic", "chilli"] ("heat in") => "pan with heated olive oil, garlic, and chilli",
["pan with heated olive oil, garlic, and chilli", "prawns"] ("add") => "pan with heated olive oil, garlic, chilli, and prawns",
["white wine", "tomato purée"] ("add") => "pan with heated olive oil, garlic, chilli, prawns, white wine, and tomato purée",
["lemon"] ("grate zest of") => "grated lemon zest",
["rocket"] ("roughly chop") => "chopped rocket",
["cooked spaghetti", "colander"] ("drain in") => "drained spaghetti",
["drained spaghetti", "sauce", "lemon juice", "chopped rocket"] ("toss with") => "spaghetti with sauce, lemon juice, and chopped rocket",
["spaghetti with sauce, lemon juice, and chopped rocket", "reserved cooking water"] ("add if desired to loosen sauce") => "spaghetti with sauce, lemon juice, chopped rocket, and reserved cooking water",
["spaghetti with sauce, lemon juice, chopped rocket, and reserved cooking water"] ("correct seasoning with sea salt and black pepper") => "seasoned spaghetti with sauce, lemon juice, chopped rocket, and reserved cooking water",
["seasoned spaghetti with sauce, lemon juice, chopped rocket, and reserved cooking water"] ("divide between 4 plates") => "plated spaghetti with sauce, lemon juice, chopped rocket, and reserved cooking water",
["grated lemon zest", "rest of rocket leaves"] ("sprinkle with") => "sprinkled spaghetti with sauce, lemon zest, chopped rocket, and reserved cooking water"
]