← Back to Skills Marketplace
bytesagain-lab

Chefpad

by bytesagain-lab · GitHub ↗ · v2.0.1 · MIT-0
cross-platform ⚠ suspicious
369
Downloads
0
Stars
1
Active Installs
9
Versions
Install in OpenClaw
/install chefpad
Description
Manage recipes and grocery lists with ingredient tracking and meal plans. Use when adding recipes, searching by ingredient, or building shopping lists.
README (SKILL.md)

ChefPad — Recipe Manager

A local-first recipe management tool. Add recipes with cuisine and cooking time, build ingredient lists and step-by-step instructions, rate your favorites, search by keyword or ingredient, and get random meal suggestions — all from the command line.

Commands

Command Description
chefpad add \x3Cname> [cuisine] [mins] Add a new recipe with optional cuisine type and cooking time (default: general, 30min)
chefpad ingredient \x3Cid> \x3Ctext> Add an ingredient to an existing recipe by its ID
chefpad step \x3Cid> \x3Ctext> Add a cooking step to an existing recipe by its ID
chefpad list List all saved recipes with ratings, ingredient and step counts
chefpad show \x3Cid> Show full recipe details — ingredients, steps, cuisine, time, rating
chefpad search \x3Ckeyword> Search recipes by name, cuisine, or ingredient
chefpad rate \x3Cid> \x3C1-5> Rate a recipe from 1 to 5 stars
chefpad random Get a random recipe suggestion from your collection
chefpad suggest \x3Cingredients...> Find recipes that match the ingredients you have on hand
chefpad info Show version and branding info
chefpad help Show all available commands

Data Storage

  • Location: ~/.chefpad/
  • recipes.json — Stores all recipes with their ingredients, steps, ratings, cuisine, and cooking time
  • favorites.json — Reserved for favorite recipe tracking
  • Both files are auto-created as empty JSON arrays on first run
  • All data is stored locally as JSON — no external APIs, no network calls, no accounts needed

Requirements

  • bash (any modern version)
  • python3 (standard library only — uses json, time, random)
  • No external dependencies or API keys required

When to Use

  1. Building a personal recipe collection — Add recipes you discover or create, complete with ingredients and step-by-step instructions, all stored locally.
  2. Meal planning with what you have — Use suggest with ingredients in your fridge to find matching recipes from your collection.
  3. Quick dinner decisions — Use random when you can't decide what to cook and want a surprise pick from your saved recipes.
  4. Searching by cuisine or ingredient — Quickly find all Italian recipes or everything that uses chicken with the search command.
  5. Rating and tracking favorites — Rate recipes after cooking them to build a curated list of your best dishes over time.

Examples

# Add a new recipe
chefpad add "Kung Pao Chicken" chinese 25

# Add ingredients to the recipe (use the ID shown after adding)
chefpad ingredient 1710000000 "500g chicken breast, diced"
chefpad ingredient 1710000000 "100g roasted peanuts"
chefpad ingredient 1710000000 "3 dried chili peppers"
chefpad ingredient 1710000000 "2 tbsp soy sauce"

# Add cooking steps
chefpad step 1710000000 "Marinate chicken with soy sauce for 15 minutes"
chefpad step 1710000000 "Stir-fry chicken until golden, set aside"
chefpad step 1710000000 "Fry chili peppers, add chicken and peanuts, toss"

# List all your recipes
chefpad list

# Show full recipe details
chefpad show 1710000000

# Rate a recipe
chefpad rate 1710000000 5

# Search for chicken recipes
chefpad search chicken

# Find recipes matching ingredients you have
chefpad suggest chicken peanuts

# Get a random meal suggestion
chefpad random

Powered by BytesAgain | bytesagain.com | [email protected]

Usage Guidance
This skill appears to be a straightforward, local-only recipe manager. Before installing or running the script, inspect the scripts/script.sh file (already included) and consider: it will create ~/.chefpad/recipes.json and favorites.json and update them in place, so back up any existing ~/.chefpad directory first. There are minor metadata inconsistencies (SKILL.md uses 'cooking-recipe' in header and _meta.json ownerId differs from registry ownerId) that look like packaging oversights — not malicious, but verify you trust the GitHub source before use. If you plan to add this as a system-wide CLI, place the script in a location you control and review file permissions.
Capability Analysis
Type: OpenClaw Skill Name: chefpad Version: 2.0.1 The skill contains multiple critical command injection vulnerabilities in `scripts/script.sh` where shell variables (e.g., `$name`, `$ingredient`, `$query`) are directly interpolated into Python heredocs without any escaping or sanitization. While the logic appears to be a legitimate recipe manager and lacks evidence of intentional data exfiltration or backdoors, these flaws allow for arbitrary Python code execution if the agent processes untrusted input. The data is stored locally in `~/.chefpad/` and no network activity was detected.
Capability Assessment
Purpose & Capability
Name/description (recipe manager, grocery lists, meal plans) match the included shell script and README: commands implement add, ingredient, step, list, show, search, rate, random, suggest. Required tools (bash, python3) are appropriate and proportionate.
Instruction Scope
SKILL.md instructions and the script operate only on local files in $HOME/.chefpad and stdout. There are no instructions to read unrelated system paths, access network endpoints, or exfiltrate data. The behavior described in SKILL.md (no external APIs, local JSON storage) aligns with the script.
Install Mechanism
No install spec is provided (instruction-only); the package includes a shell script. Nothing is downloaded or extracted at install time. Low install-surface risk.
Credentials
The skill requests no environment variables or credentials. It writes only to ~/.chefpad/recipes.json and favorites.json. Using $HOME for storage is expected for a local CLI tool.
Persistence & Privilege
always is false and the skill does not request persistent elevated privileges or modify other skills or system-wide agent settings. Its runtime footprint is limited to creating and updating files under the user's home directory.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install chefpad
  3. After installation, invoke the skill by name or use /chefpad
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.0.1
update
v2.0.0
v2.5 standard: Use-when desc, homepage, source, security fix
v1.0.6
yaml-fix+quality
v1.0.5
yaml-fix+quality
v1.0.4
Quality upgrade
v1.0.3
Quality upgrade: custom functionality
v1.0.2
Standards compliance: unique content, no template text
v1.0.1
Quality fix: cleaner docs, removed flags
v1.0.0
Initial release
Metadata
Slug chefpad
Version 2.0.1
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 9
Frequently Asked Questions

What is Chefpad?

Manage recipes and grocery lists with ingredient tracking and meal plans. Use when adding recipes, searching by ingredient, or building shopping lists. It is an AI Agent Skill for Claude Code / OpenClaw, with 369 downloads so far.

How do I install Chefpad?

Run "/install chefpad" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Chefpad free?

Yes, Chefpad is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Chefpad support?

Chefpad is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Chefpad?

It is built and maintained by bytesagain-lab (@bytesagain-lab); the current version is v2.0.1.

💬 Comments