Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Yrzhe/claude-skills --skill chefgit clone --depth 1 https://github.com/Yrzhe/claude-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/yrzhe/claude-skills/chef)<a href="https://agentmods.dev/skills/yrzhe/claude-skills/chef"><img src="https://agentmods.dev/badge/skills/yrzhe/claude-skills/chef/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/yrzhe/claude-skills/chef"><img src="https://agentmods.dev/badge/skills/yrzhe/claude-skills/chef.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00115 | $0.02173 |
| Opus 5 | $0.00057 | $0.01086 |
| Sonnet 5 | $0.00023 | $0.00435 |
| Haiku 4.5 | $0.00012 | $0.00217 |
Grade A, and why
chef scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
chef — 厨艺专家 skill
懂中西餐的 agent:走菜到克重/火候/时机,用家里食材推荐菜,聊搭配和营养,所有输出都有数据来源,没数据就说"我先去抓一下"再动手。
厨房硬规则(违反自己先停下)
- 没数据不瞎编。AI 没味觉——具体食材量、火候、时间必须来自
data/recipes/*.md或现场抓取。两边都没有 → 先 fetch,再输出,别自己编。 - 抓到的都存下来。
scripts/save_recipe.py把抓到的菜写成data/recipes/{slug}.md。下次有人问同一道菜,先search.py,命中直接用,不要重复抓。 - 走菜要细。输出一道菜至少包含:食材(名+克重+单位)、步骤(时机/火候/关键节点)、出品判断、常见坑。模板
templates/recipe_card.md。 - 食材推荐要覆盖得起。用户说"家里有 X Y Z",优先推至少用到 2 个的菜;只能用到 1 个就说明"其它要外补"。
- 营养能给就给。frontmatter 有 nutrition 就带上;没有不要自己算,或标 estimated。
- 搭配要有依据。"X 和 Y 配不配"——先看本地共现,再看
references/ingredient_pairing.md。不要凭直觉。 - 来源必须亮出。外部食谱末尾注明来源站+URL(xiachufang / allrecipes / TheMealDB 等)。
- 付费 API 默认不用。
sources/spoonacular.json和sources/edamam.json标了enabled: false,不要调。 - 中英都要。中餐按菜系(川/粤/鲁/苏/闽/浙/湘/徽/家常);西餐按菜系(意/法/美式/地中海/英伦)+ 品类(主菜/烘焙/汤/沙拉/早餐)。
场景查表
| 用户说 | 动作 | 脚本 |
|---|---|---|
| "怎么做红烧肉" | 本地 search;没就 fetch;存 md;走菜 | search.py → fetch.py → save_recipe.py → walkthrough.py |
| "家里有鸡蛋西红柿土豆能做啥" | 按食材覆盖推荐 | suggest.py --have "鸡蛋,西红柿,土豆" |
| "今晚想吃辣的/清淡的" | tag 过滤 | search.py --tag 辣 |
| "X 和 Y 搭不搭" | 共现 + 理论 | pairing.py --pair X Y;看 references/ingredient_pairing.md |
| "这菜多少卡路里" | frontmatter.nutrition;没就查食材 | api_openfoodfacts.py |
| "下厨房上这菜怎么做" | 定向抓 | fetch.py --source xiachufang --query … |
| "随机推个菜" | 随机 | search.py --random |
| "基础技法讲一下" | 只读 references/cooking_techniques.md | (不进 data) |
| "牛肉能用啥替代" | 替代表 + 替代品搜菜 | grep ingredient_pairing.md; search.py --ingredient … |
| "批量导入一堆" | Kaggle CSV | import_dataset.py --source food_com --file path.csv |
| "从零起步建议" | bootstrap | setup.py + api_themealdb.py --bootstrap |
工作流
A. 用户要一道菜(走菜)
scripts/search.py --name "红烧肉"查本地- 命中 →
scripts/walkthrough.py --file data/recipes/xxx.md按模板输出 - 没命中 → 选源(中文优先 xiachufang/douguo/meishij;英文 allrecipes/bbcgoodfood/themealdb)→
scripts/fetch.py --source <id> --query ... - fetch 返回结构化 →
scripts/save_recipe.py --json <tmp>写入 data/recipes/ - 再 walkthrough 一次
- 末尾亮来源
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- data/recipes/.gitkeep 0 B
- data/recipes/adana-kebab-themealdb-53262.md 2.1 KB
- data/recipes/air-fryer-egg-rolls-themealdb-53373.md 3.1 KB
- data/recipes/air-fryer-patatas-bravas-themealdb-53158.md 1.7 KB
- data/recipes/ajo-blanco-themealdb-53169.md 967 B
- data/recipes/alfajores-themealdb-53138.md 1.5 KB
- data/recipes/algerian-bouzgene-berber-bread-with-roasted-pepper-sauce-themealdb-53284.md 2.4 KB
- data/recipes/algerian-carrots-themealdb-53282.md 1.8 KB
- data/recipes/algerian-flafla-bell-pepper-salad-themealdb-53288.md 1.6 KB
- data/recipes/algerian-kefta-meatballs-themealdb-53281.md 1.7 KB
- data/recipes/anzac-biscuits-themealdb-53111.md 1.4 KB
- data/recipes/apam-balik-themealdb-53049.md 1.3 KB
- data/recipes/apple-blackberry-crumble-themealdb-52893.md 1.7 KB
- data/recipes/apple-cake-themealdb-53380.md 2.0 KB
- data/recipes/apple-frangipan-tart-themealdb-52768.md 2.1 KB
- data/recipes/apricot-turkish-delight-mess-themealdb-53276.md 1016 B
- data/recipes/arepa-pabellón-themealdb-53334.md 1.4 KB
- data/recipes/arepa-pelua-themealdb-53329.md 1.8 KB
- data/recipes/arriba-baked-winter-squash-mexican-style-foodcom-137739.md 1.7 KB
- data/recipes/arroz-al-horno-baked-rice-themealdb-53156.md 2.3 KB
- data/recipes/arroz-con-gambas-y-calamar-themealdb-53147.md 1.8 KB
- data/recipes/asado-themealdb-53133.md 1.7 KB
- data/recipes/aubergine-couscous-salad-themealdb-53267.md 1.3 KB
- data/recipes/aubergine-hummus-grills-themealdb-53278.md 1.6 KB
- data/recipes/aussie-burgers-themealdb-53099.md 1.6 KB
- data/recipes/authentic-norwegian-kransekake-themealdb-53127.md 1.6 KB
- data/recipes/avocado-dip-with-new-potatoes-themealdb-53107.md 1.5 KB
- data/recipes/ayam-percik-themealdb-53050.md 2.2 KB
- data/recipes/baba-ghanoush-themealdb-53094.md 1.8 KB
- data/recipes/baingan-bharta-themealdb-52807.md 3.3 KB
- data/recipes/baked-salmon-with-fennel-tomatoes-themealdb-52959.md 1.4 KB
- data/recipes/bakewell-tart-themealdb-52767.md 1.8 KB
- data/recipes/baklava-with-spiced-nuts-ricotta-chocolate-themealdb-53279.md 3.4 KB
- data/recipes/banana-pancakes-themealdb-52855.md 1.2 KB
- data/recipes/bang-bang-prawn-salad-themealdb-53239.md 1.3 KB
- data/recipes/barbecue-pork-buns-themealdb-53242.md 2.0 KB
- data/recipes/barramundi-with-moroccan-spices-themealdb-53103.md 2.1 KB
- data/recipes/battenberg-cake-themealdb-52894.md 3.5 KB
- data/recipes/bbq-pork-sloppy-joes-themealdb-52995.md 2.3 KB
- data/recipes/bean-sausage-hotpot-themealdb-52848.md 997 B
- data/recipes/beavertails-themealdb-52928.md 1.8 KB
- data/recipes/beef-and-broccoli-stir-fry-themealdb-53366.md 2.4 KB
- data/recipes/beef-and-mustard-pie-themealdb-52874.md 2.4 KB
- data/recipes/beef-and-oyster-pie-themealdb-52878.md 3.1 KB
- data/recipes/beef-asado-themealdb-53071.md 1.8 KB
- data/recipes/beef-banh-mi-bowls-with-sriracha-mayo-carrot-pickled-cucumbe-themealdb-52997.md 2.1 KB
- data/recipes/beef-bourguignon-themealdb-52904.md 3.1 KB
- data/recipes/beef-brisket-pot-roast-themealdb-52812.md 4.0 KB
- data/recipes/beef-caldereta-themealdb-53070.md 1.5 KB
- data/recipes/beef-dumpling-stew-themealdb-52873.md 2.3 KB
- data/recipes/beef-empanadas-themealdb-53317.md 2.6 KB
- data/recipes/beef-lo-mein-themealdb-52952.md 1.9 KB
- data/recipes/beef-mandi-themealdb-53359.md 1.9 KB
- data/recipes/beef-mechado-themealdb-53068.md 1.7 KB
- data/recipes/beef-pho-themealdb-53238.md 2.2 KB
- data/recipes/beef-rendang-themealdb-53053.md 1.6 KB
- data/recipes/beef-stroganoff-themealdb-52834.md 1.8 KB
- data/recipes/beef-sunday-roast-themealdb-52824.md 1.7 KB
- data/recipes/beef-wellington-themealdb-52803.md 2.6 KB
- data/recipes/beetroot-latkes-themealdb-53313.md 1.4 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 114 lines · 115 tokens per session scan A 99fbb4528b5e
chef is a skill published in the GitHub repository Yrzhe/claude-skills (33 stars, last pushed 3mo ago), licensed MIT. It adds 115 tokens to every session and 2,173 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
hr-onboarding
A new-hire onboarding plan as a single page — first week schedule, buddy + manager intro, learning track, equipment checklist, and "you're set when…" outcomes. Use when the brief mentions "onboarding", "new hire", "first week plan", or "入职".
book-mirror
Take any book (EPUB/PDF), produce a personalized chapter-by-chapter analysis. Each chapter is preserved in detail (The Chapter) and mirrored back to the reader's actual life (The Mirror) using brain context. The mirror observes and resonates — a friend pointing out parallels, NOT a consultant rearranging the reader's…
miniapp
Build a tiny interactive HTML playground only when someone asks to see, play with, or step through a mechanism.
eli5
Explain research, papers, or technical ideas in plain English with minimal jargon, concrete analogies, and clear takeaways. Use when the user says "ELI5 this", asks for a simple explanation of a paper or research result, wants jargon removed, or asks what something technically dense actually means.
deck-course-module
A course or workshop slide template with persistent learning goals, teaching pages, multiple-choice self-tests, and a wrap-up.
master-yinguang
A reference-based assistant for questions about Yinguang and Pure Land Buddhism, a Buddhist tradition focused on faith, ethical living, and practice connected with rebirth in the Pure Land. It can answer in Yinguang’s historical teaching style.