Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Chefpad

v2.0.1

Manage recipes and grocery lists with ingredient tracking and meal plans. Use when adding recipes, searching by ingredient, or building shopping lists.

0· 353·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for bytesagain-lab/chefpad.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Chefpad" (bytesagain-lab/chefpad) from ClawHub.
Skill page: https://clawhub.ai/bytesagain-lab/chefpad
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install bytesagain-lab/chefpad

ClawHub CLI

Package manager switcher

npx clawhub@latest install chefpad
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk974hwqhjcq8t0madg12sf1bgn834xd9
353downloads
0stars
9versions
Updated 4h ago
v2.0.1
MIT-0

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

CommandDescription
chefpad add <name> [cuisine] [mins]Add a new recipe with optional cuisine type and cooking time (default: general, 30min)
chefpad ingredient <id> <text>Add an ingredient to an existing recipe by its ID
chefpad step <id> <text>Add a cooking step to an existing recipe by its ID
chefpad listList all saved recipes with ratings, ingredient and step counts
chefpad show <id>Show full recipe details — ingredients, steps, cuisine, time, rating
chefpad search <keyword>Search recipes by name, cuisine, or ingredient
chefpad rate <id> <1-5>Rate a recipe from 1 to 5 stars
chefpad randomGet a random recipe suggestion from your collection
chefpad suggest <ingredients...>Find recipes that match the ingredients you have on hand
chefpad infoShow version and branding info
chefpad helpShow 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 | hello@bytesagain.com

Comments

Loading comments...