udon noodle recipe search

v1.0.0

Search and browse 100 curated Japanese udon noodle recipes from Cookpad. Use when the user asks about udon recipes, wants udon dish ideas, searches for udon...

0· 94·0 current·0 all-time
byJay@goog

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for goog/udon.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "udon noodle recipe search" (goog/udon) from ClawHub.
Skill page: https://clawhub.ai/goog/udon
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

Bare skill slug

openclaw skills install udon

ClawHub CLI

Package manager switcher

npx clawhub@latest install udon
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description are a local udon recipe search; the included script and recipes.md implement exactly that. There are no environment variables, credentials, or external binaries required that would be out of scope.
Instruction Scope
SKILL.md instructs running the bundled Python script which reads references/recipes.md and formats results. The runtime instructions do not tell the agent to read other files, call external endpoints, or exfiltrate data. The code only reads the local recipes.md and prints matches.
Install Mechanism
There is no install spec — the skill is instruction/code-only. The Python script uses only the standard library and the packaged recipes.md, so there is no network download or archive extraction during install.
Credentials
The skill requires no environment variables, secrets, or config paths. No credentials are requested and the script does not read environment variables.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request permanent presence or modify other skills or system configuration. Autonomous invocation is allowed (platform default) but not elevated here.
Assessment
This appears low-risk and does what it says: a local Python search over the bundled recipes file. Before installing, confirm you’re comfortable running a small Python script from an unknown source (reviewed here), ensure Python 3 is available, and note that recipe entries include external Cookpad links that the script only displays (it does not fetch them). If you need stronger provenance, ask the publisher for a homepage or source repository to verify origin and licensing of the recipe content.

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

latestvk973xsd3cbs5e4s7v1sy13dh65845fw2
94downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

Udon Recipe Search

Search 100 Japanese udon recipes by keyword, ingredient, category, or recipe number.

Quick Start

Run the search script:

python <skill_dir>/scripts/search_udon.py [keyword]

Examples

  • List all 100 recipes: python search_udon.py
  • Search by ingredient: python search_udon.py curry
  • Search by style: python search_udon.py cold
  • Search by protein: python search_udon.py salmon
  • Get a specific recipe: python search_udon.py 42

Common categories: grilled, cold, simmered, curry, miso, egg, meat, seafood, natto, kimchi, vegetable, quick.

Workflow

  1. Run search_udon.py with the user's keyword(s).
  2. If no matches, suggest browsing all recipes or trying a broader keyword.
  3. If multiple matches, show the top results and offer to narrow down.
  4. If user picks a number, show that specific recipe with ingredients and link.

Resources

references/recipes.md

Full recipe list with ingredients and Cookpad links. Loaded only when browsing all recipes or when deep context is needed.

scripts/search_udon.py

Search script — parse recipes, filter by keyword, format output. No dependencies beyond Python 3 stdlib.

Comments

Loading comments...