# Send Tandoor Recipe to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tandoor-recipes",
    "name": "Tandoor Recipe",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/itsnikhil/tandoor-recipes",
    "canonicalUrl": "https://clawhub.ai/itsnikhil/tandoor-recipes",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tandoor-recipes",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tandoor-recipes",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/API.md",
      "scripts/api.d.ts",
      "scripts/package.json",
      "scripts/schemas.d.ts",
      "scripts/schemas.js",
      "scripts/api.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/tandoor-recipes"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tandoor-recipes",
    "downloadUrl": "https://openagent3.xyz/downloads/tandoor-recipes",
    "agentUrl": "https://openagent3.xyz/skills/tandoor-recipes/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tandoor-recipes/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tandoor-recipes/agent.md"
  }
}
```
## Documentation

### Tandoor Recipe Manager

Interact with the user's Tandoor Recipe Manager to manage recipes, meal plans, and shopping lists.

### How to Use

Required env vars: TANDOOR_URL (Tandoor instance URL) and TANDOOR_API_TOKEN

node ./scripts/tandoor.js <command> [args...]

### 🔍 Find Recipes

Search by name:

node ./scripts/tandoor.js search-recipes "pasta"
node ./scripts/tandoor.js search-recipes "chicken" 20  # limit to 20 results

Get full recipe details:

node ./scripts/tandoor.js get-recipe 42

### 📅 Meal Planning

See available meal types (Breakfast, Lunch, Dinner, etc.):

node ./scripts/tandoor.js get-meal-types

Add a recipe to the meal plan:

node ./scripts/tandoor.js add-to-meal-plan <recipe_id> "<meal_type>" "<YYYY-MM-DD>"
# Example: Add recipe 42 as Dinner on Feb 10th
node ./scripts/tandoor.js add-to-meal-plan 42 "Dinner" "2025-02-10"

View meal plans for a date range:

node ./scripts/tandoor.js get-meal-plans "2025-02-08" "2025-02-14"

### 🛒 Shopping List

View current shopping list:

node ./scripts/tandoor.js get-shopping-list
node ./scripts/tandoor.js get-shopping-list "true"   # show checked items
node ./scripts/tandoor.js get-shopping-list "both"   # show all

Add an item to the shopping list:

node ./scripts/tandoor.js add-shopping-item "<food>" "<amount>" "<unit>" "[note]"
# Example:
node ./scripts/tandoor.js add-shopping-item "Chicken Breast" "500" "g" "For stir fry"

Check off an item:

node ./scripts/tandoor.js check-shopping-item <item_id>

Remove an item:

node ./scripts/tandoor.js remove-shopping-item <item_id>

### ➕ Create New Recipes

node ./scripts/tandoor.js create-recipe "<name>" "<ingredients>" "<instructions>" [servings]

Example:

node ./scripts/tandoor.js create-recipe "Grilled Cheese" \\
  "2 slices bread
2 slices cheese
1 tbsp butter" \\
  "1. Butter the bread
2. Add cheese between slices
3. Grill until golden brown" \\
  2

### 📚 Browse Reference Data

node ./scripts/tandoor.js get-keywords          # all keywords
node ./scripts/tandoor.js get-keywords "italian" # search keywords
node ./scripts/tandoor.js get-foods "chicken"    # search foods
node ./scripts/tandoor.js get-units              # all units

### Plan Dinner for the Week

Search for recipes the user might enjoy:
node ./scripts/tandoor.js search-recipes "chicken"


Note the recipe IDs from the results
Get available meal types (to confirm "Dinner" exists):
node ./scripts/tandoor.js get-meal-types


Add each recipe to a day (repeat for each day):
node ./scripts/tandoor.js add-to-meal-plan 42 "Dinner" "2025-02-10"
node ./scripts/tandoor.js add-to-meal-plan 15 "Dinner" "2025-02-11"
# ... continue for each day

### Check Today's Meal Plan

Get today's meal plans:
node ./scripts/tandoor.js get-meal-plans "2025-02-08"


If user wants recipe details, get the full recipe:
node ./scripts/tandoor.js get-recipe <recipe_id>

### Add Recipe Ingredients to Shopping List

Get the recipe details to see all ingredients:
node ./scripts/tandoor.js get-recipe <recipe_id>


Parse the ingredients from the response (look at steps[].ingredients[])
Add each ingredient to the shopping list:
node ./scripts/tandoor.js add-shopping-item "Chicken Breast" "500" "g"
node ./scripts/tandoor.js add-shopping-item "Onion" "2" "piece"
# ... continue for each ingredient

### Create and Schedule a New Recipe

Create the recipe:
node ./scripts/tandoor.js create-recipe "Pasta Carbonara" \\
  "200g spaghetti
100g pancetta
2 eggs
50g parmesan" \\
  "1. Cook pasta
2. Fry pancetta
3. Mix eggs with parmesan
4. Combine all and serve" \\
  2


Note the recipe ID from the response
Add to meal plan:
node ./scripts/tandoor.js add-to-meal-plan <new_recipe_id> "Dinner" "2025-02-12"

### Clear Checked Items from Shopping List

View checked items:
node ./scripts/tandoor.js get-shopping-list "true"


Remove each checked item by ID:
node ./scripts/tandoor.js remove-shopping-item <item_id>

### Troubleshooting

"Food not found" or "Unit not found"
Search for the correct name in Tandoor first:

node ./scripts/tandoor.js get-foods "chicken"
node ./scripts/tandoor.js get-units "gram"

"Meal type not found"
Run get-meal-types to see exact names (case-insensitive match).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: itsnikhil
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tandoor-recipes)
- [Send to Agent page](https://openagent3.xyz/skills/tandoor-recipes/agent)
- [JSON manifest](https://openagent3.xyz/skills/tandoor-recipes/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tandoor-recipes/agent.md)
- [Download page](https://openagent3.xyz/downloads/tandoor-recipes)