AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Recipe Crud

skill-infosecb-personal-claude-plugins-recipe-crud · by infosecB

Create, read, update, and delete food recipes stored as markdown files. Use when the user wants to add a new recipe, view an existing recipe, edit recipe details, remove a recipe, or list all recipes. Triggers on "new recipe", "save recipe", "edit recipe", "delete recipe", "show recipe", "list recipes".

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add skill-infosecb-personal-claude-plugins-recipe-crud

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-infosecb-personal-claude-plugins-recipe-crud)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Recipe Crud? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Recipe CRUD Operations

Manage recipe files in ./recipes/. Each recipe is a markdown file with YAML frontmatter.

Before Any Operation

  1. Read CLAUDE.md for the canonical recipe format and field rules.
  2. Ensure ./recipes/ exists: mkdir -p ./recipes/

Create a Recipe

  1. Gather recipe details from the user. At minimum: title, ingredients, and instructions.
  2. Infer reasonable defaults for missing fields:
  • cuisine: infer from ingredients and techniques
  • difficulty: estimate from technique complexity and ingredient count
  • prep_time / cook_time: estimate if user provides rough sense
  • tags: extract from ingredients and cooking method
  • dietary: infer from ingredients using CLAUDE.md dietary rules
  • date_added: use today's date
  • servings: default to 4 if not specified
  1. Generate filename from title (kebab-case, .md).
  2. Check if file already exists. If so, ask before overwriting.
  3. Write using the exact format from CLAUDE.md.
  4. Confirm creation and show file path.

Reference: @${CLAUDEPLUGINROOT}/skills/recipe-crud/references/recipe-schema.md

Read / View a Recipe

  1. If user specifies a name, glob for ./recipes/*name*.
  2. If multiple matches, list them and ask which one.
  3. Read and display the recipe in a readable format.
  4. To list all: glob ./recipes/*.md and present a summary table with titles and cuisines from frontmatter.

Update a Recipe

  1. Find the recipe file (same as Read).
  2. Read current contents.
  3. Apply requested changes using Edit.
  4. If title changes, rename file to match new kebab-case title.
  5. Confirm update and show what changed.

Delete a Recipe

  1. Find the recipe file.
  2. Show title and ask for confirmation.
  3. Delete with rm.
  4. Confirm deletion.

Listing Recipes

Present a summary table from frontmatter:

| Title | Cuisine | Difficulty | Tags | |-------|---------|------------|------|

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.