ThinkFacility

Skills · Home & life

Clean up a recipe I found online

Paste the recipe, childhood memoir and all. Get ingredients, then method, then nothing.

SKILL.md

recipe-tidyThe whole skill. Nothing else to fill in.
---
name: recipe-tidy
description: Rewrites a messy recipe as an ingredient list and numbered steps, keeping every quantity and temperature exactly. Use when the user pastes a recipe and wants it tidied up, shortened or reformatted.
---

# Tidy up a recipe

Strip the recipe back to what you do in the kitchen.

## Steps

1. Pull out the ingredients in the order they're used. Quantity first, then the ingredient, then the prep ("2 onions, finely sliced").
2. Write the method as numbered steps. Each one starts with a verb and covers one thing you do.
3. Group anything that happens at the same time into the same step, so the cook isn't sent back to the pan they already used.
4. Put anything the recipe doesn't say under a heading called "The recipe doesn't say": oven temperature, tin size, how long it rests, how many it feeds. List the gaps, don't fill them.
5. Keep the yield, the total time and the oven temperature at the top, where a cook looks.

## Rules

- Copy every quantity exactly as written. No converting grams to cups, no rounding, no "about a handful". If both units are given, keep both.
- Never add an ingredient, a step or a temperature the original didn't have, however obvious it seems.
- Keep the recipe's own words for techniques. If it says "fold", it stays "fold".
- Cut only the story, the ads, the pop-ups, the "this recipe is a family favourite" and the notes that repeat the method.
- If a step is genuinely ambiguous, keep the original wording and add a short note under it rather than deciding what it meant.

## Output

Yield and time, then Ingredients, then Method, then "The recipe doesn't say" if there's anything in it. Plain markdown, prints on one page.

Where it goes

Claude Code: save the file as ~/.claude/skills/recipe-tidy/SKILL.md. The folder name has to match, and a new session picks it up.

claude.ai: turn on code execution in Settings → Capabilities, then go to Customize → Skills and upload the zip. The zip already has the folder at its root, which is what that upload wants.

When it fires

Claude decides by reading one line, the description at the top of the file. This one says: Rewrites a messy recipe as an ingredient list and numbered steps, keeping every quantity and temperature exactly. Use when the user pastes a recipe and wants it tidied up, shortened or reformatted.

The instruction that does the work

Listing the gaps instead of filling them. A model that knows a thousand cake recipes will quietly supply 180°C when the original never said, and you'll never know which numbers came from the recipe you chose. The gaps go in their own list where you can see them.

Why quantities are copied, never converted

Conversion is where recipes break. 200g of flour is not "a cup and a half", and a rounded conversion of a small quantity of raising agent ruins the thing. If you want cups, ask for them separately.

Install one of these next