Install
$ agentstack add skill-infosecb-personal-claude-plugins-recipe-crud ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
Recipe CRUD Operations
Manage recipe files in ./recipes/. Each recipe is a markdown file with YAML frontmatter.
Before Any Operation
- Read CLAUDE.md for the canonical recipe format and field rules.
- Ensure
./recipes/exists:mkdir -p ./recipes/
Create a Recipe
- Gather recipe details from the user. At minimum: title, ingredients, and instructions.
- Infer reasonable defaults for missing fields:
cuisine: infer from ingredients and techniquesdifficulty: estimate from technique complexity and ingredient countprep_time/cook_time: estimate if user provides rough sensetags: extract from ingredients and cooking methoddietary: infer from ingredients using CLAUDE.md dietary rulesdate_added: use today's dateservings: default to 4 if not specified
- Generate filename from title (kebab-case,
.md). - Check if file already exists. If so, ask before overwriting.
- Write using the exact format from CLAUDE.md.
- Confirm creation and show file path.
Reference: @${CLAUDEPLUGINROOT}/skills/recipe-crud/references/recipe-schema.md
Read / View a Recipe
- If user specifies a name, glob for
./recipes/*name*. - If multiple matches, list them and ask which one.
- Read and display the recipe in a readable format.
- To list all: glob
./recipes/*.mdand present a summary table with titles and cuisines from frontmatter.
Update a Recipe
- Find the recipe file (same as Read).
- Read current contents.
- Apply requested changes using Edit.
- If title changes, rename file to match new kebab-case title.
- Confirm update and show what changed.
Delete a Recipe
- Find the recipe file.
- Show title and ask for confirmation.
- Delete with
rm. - 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.
- Author: infosecB
- Source: infosecB/personal-claude-plugins
- License: MIT
- Homepage: https://infosecb.github.io/personal-claude-plugins/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.