{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mealie-api",
    "name": "Mealie Recipe Manager",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/angusthefuzz/mealie-api",
    "canonicalUrl": "https://clawhub.ai/angusthefuzz/mealie-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mealie-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mealie-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/mealie.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/mealie-api"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/mealie-api",
    "agentPageUrl": "https://openagent3.xyz/skills/mealie-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mealie-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mealie-api/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Mealie Skill",
        "body": "API client for Mealie, a self-hosted recipe manager and meal planner. Manage recipes, shopping lists, and meal plans."
      },
      {
        "title": "Environment Variables",
        "body": "Set these in your agent's .env (~/.openclaw/.env) or create a skill-level .env at ~/.openclaw/skills/mealie/.env:\n\nMEALIE_URL — Your Mealie instance URL (e.g., https://recipes.example.com)\nMEALIE_API_TOKEN — Your API token (create at /user/profile/api-tokens in Mealie)\n\nThe script only reads MEALIE_URL and MEALIE_API_TOKEN from .env files — other variables are ignored."
      },
      {
        "title": "Getting an API Token",
        "body": "Log into your Mealie instance\nGo to User Profile → API Tokens\nCreate a new token with a descriptive name\nCopy the token to your .env"
      },
      {
        "title": "Recipes",
        "body": "node ~/.openclaw/skills/mealie/scripts/mealie.js recipes              # List all recipes\nnode ~/.openclaw/skills/mealie/scripts/mealie.js recipe <slug>        # Get recipe details\nnode ~/.openclaw/skills/mealie/scripts/mealie.js search \"query\"       # Search recipes\nnode ~/.openclaw/skills/mealie.js create-recipe <url>                 # Import recipe from URL\nnode ~/.openclaw/skills/mealie.js delete-recipe <slug>                # Delete recipe"
      },
      {
        "title": "Shopping Lists",
        "body": "node ~/.openclaw/skills/mealie/scripts/mealie.js lists                # List shopping lists\nnode ~/.openclaw/skills/mealie.js list <id>                           # Show list items\nnode ~/.openclaw/skills/mealie.js add-item <listId> \"item\" [qty]      # Add item\nnode ~/.openclaw/skills/mealie.js check-item <listId> <itemId>        # Mark checked\nnode ~/.openclaw/skills/mealie.js uncheck-item <listId> <itemId>      # Mark unchecked\nnode ~/.openclaw/skills/mealie.js delete-item <listId> <itemId>       # Delete item"
      },
      {
        "title": "Meal Plans",
        "body": "node ~/.openclaw/skills/mealie/scripts/mealie.js mealplan [days]      # Show meal plan (default 7 days)\nnode ~/.openclaw/skills/mealie.js add-meal <date> <recipeSlug> [meal] # Add meal to plan\nnode ~/.openclaw/skills/mealie.js delete-meal <planId>                # Remove meal from plan"
      },
      {
        "title": "Other",
        "body": "node ~/.openclaw/skills/mealie.js stats                               # Show statistics\nnode ~/.openclaw/skills/mealie.js tags                                # List all tags\nnode ~/.openclaw/skills/mealie.js categories                          # List all categories"
      },
      {
        "title": "Examples",
        "body": "# List all recipes\nnode ~/.openclaw/skills/mealie/scripts/mealie.js recipes\n\n# Search for pasta recipes\nnode ~/.openclaw/skills/mealie/scripts/mealie.js search \"pasta\"\n\n# Get a specific recipe\nnode ~/.openclaw/skills/mealie/scripts/mealie.js recipe spaghetti-carbonara\n\n# Add milk to shopping list\nnode ~/.openclaw/skills/mealie/scripts/mealie.js add-item abc123 \"Milk\" \"1 gallon\"\n\n# Show this week's meal plan\nnode ~/.openclaw/skills/mealie/scripts/mealie.js mealplan 7\n\n# Add a recipe to Tuesday's dinner\nnode ~/.openclaw/skills/mealie/scripts/mealie.js add-meal 2026-02-17 chicken-tacos dinner"
      },
      {
        "title": "API Details",
        "body": "Uses Bearer token authentication\nAll endpoints are under /api/\nPagination is supported on list endpoints (use --page and --per-page flags)\nRecipe slugs are URL-friendly identifiers (e.g., spaghetti-carbonara)\n\nBased on Mealie API docs."
      }
    ],
    "body": "Mealie Skill\n\nAPI client for Mealie, a self-hosted recipe manager and meal planner. Manage recipes, shopping lists, and meal plans.\n\nEnvironment Variables\n\nSet these in your agent's .env (~/.openclaw/.env) or create a skill-level .env at ~/.openclaw/skills/mealie/.env:\n\nMEALIE_URL — Your Mealie instance URL (e.g., https://recipes.example.com)\nMEALIE_API_TOKEN — Your API token (create at /user/profile/api-tokens in Mealie)\n\nThe script only reads MEALIE_URL and MEALIE_API_TOKEN from .env files — other variables are ignored.\n\nGetting an API Token\nLog into your Mealie instance\nGo to User Profile → API Tokens\nCreate a new token with a descriptive name\nCopy the token to your .env\nCommands\nRecipes\nnode ~/.openclaw/skills/mealie/scripts/mealie.js recipes              # List all recipes\nnode ~/.openclaw/skills/mealie/scripts/mealie.js recipe <slug>        # Get recipe details\nnode ~/.openclaw/skills/mealie/scripts/mealie.js search \"query\"       # Search recipes\nnode ~/.openclaw/skills/mealie.js create-recipe <url>                 # Import recipe from URL\nnode ~/.openclaw/skills/mealie.js delete-recipe <slug>                # Delete recipe\n\nShopping Lists\nnode ~/.openclaw/skills/mealie/scripts/mealie.js lists                # List shopping lists\nnode ~/.openclaw/skills/mealie.js list <id>                           # Show list items\nnode ~/.openclaw/skills/mealie.js add-item <listId> \"item\" [qty]      # Add item\nnode ~/.openclaw/skills/mealie.js check-item <listId> <itemId>        # Mark checked\nnode ~/.openclaw/skills/mealie.js uncheck-item <listId> <itemId>      # Mark unchecked\nnode ~/.openclaw/skills/mealie.js delete-item <listId> <itemId>       # Delete item\n\nMeal Plans\nnode ~/.openclaw/skills/mealie/scripts/mealie.js mealplan [days]      # Show meal plan (default 7 days)\nnode ~/.openclaw/skills/mealie.js add-meal <date> <recipeSlug> [meal] # Add meal to plan\nnode ~/.openclaw/skills/mealie.js delete-meal <planId>                # Remove meal from plan\n\nOther\nnode ~/.openclaw/skills/mealie.js stats                               # Show statistics\nnode ~/.openclaw/skills/mealie.js tags                                # List all tags\nnode ~/.openclaw/skills/mealie.js categories                          # List all categories\n\nExamples\n# List all recipes\nnode ~/.openclaw/skills/mealie/scripts/mealie.js recipes\n\n# Search for pasta recipes\nnode ~/.openclaw/skills/mealie/scripts/mealie.js search \"pasta\"\n\n# Get a specific recipe\nnode ~/.openclaw/skills/mealie/scripts/mealie.js recipe spaghetti-carbonara\n\n# Add milk to shopping list\nnode ~/.openclaw/skills/mealie/scripts/mealie.js add-item abc123 \"Milk\" \"1 gallon\"\n\n# Show this week's meal plan\nnode ~/.openclaw/skills/mealie/scripts/mealie.js mealplan 7\n\n# Add a recipe to Tuesday's dinner\nnode ~/.openclaw/skills/mealie/scripts/mealie.js add-meal 2026-02-17 chicken-tacos dinner\n\nAPI Details\nUses Bearer token authentication\nAll endpoints are under /api/\nPagination is supported on list endpoints (use --page and --per-page flags)\nRecipe slugs are URL-friendly identifiers (e.g., spaghetti-carbonara)\n\nBased on Mealie API docs."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/angusthefuzz/mealie-api",
    "publisherUrl": "https://clawhub.ai/angusthefuzz/mealie-api",
    "owner": "angusthefuzz",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mealie-api",
    "downloadUrl": "https://openagent3.xyz/downloads/mealie-api",
    "agentUrl": "https://openagent3.xyz/skills/mealie-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mealie-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mealie-api/agent.md"
  }
}