From recipe-manager
Search, filter, and find recipes by ingredients, cuisine, tags, dietary restrictions, difficulty, or any combination. Use when the user wants to find recipes, asks "what can I make with...", searches by ingredient, filters by cuisine or dietary need. Triggers on "find recipe", "search recipes", "show me all", "what recipes have", "recipes with".
How this skill is triggered — by the user, by Claude, or both
Slash command
/recipe-manager:recipe-searchThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Find and filter recipes in `./recipes/` based on user criteria.
Find and filter recipes in ./recipes/ based on user criteria.
Recipes are markdown files with YAML frontmatter. Use grep to search frontmatter fields and ingredient lists.
grep -rl "ingredient_name" ./recipes/
For multiple ingredients (ALL must match), chain greps or read each candidate and verify.
grep -rl "^cuisine: Indian" ./recipes/
grep -rl "tags:.*tagname" ./recipes/
grep -rl "dietary:.*vegetarian" ./recipes/
grep -rl "^difficulty: easy" ./recipes/
When user specifies multiple criteria (e.g., "easy vegetarian Indian recipes"):
When the user lists ingredients they have on hand:
Present results as a table:
| Recipe | Cuisine | Difficulty | Key Match |
|---|
If only one result, display the full recipe.
npx claudepluginhub infosecb/personal-claude-plugins --plugin recipe-managerProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.