{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bring-recipes",
    "name": "Bring Recipes",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/darkdevelopers/bring-recipes",
    "canonicalUrl": "https://clawhub.ai/darkdevelopers/bring-recipes",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bring-recipes",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bring-recipes",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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/bring-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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/bring-recipes",
    "agentPageUrl": "https://openagent3.xyz/skills/bring-recipes/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bring-recipes/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bring-recipes/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": "Overview",
        "body": "CLI for browsing Bring! recipe inspirations. Browse-only tool - the Bring! Inspirations API does not provide ingredient lists."
      },
      {
        "title": "When to Use",
        "body": "Use this skill when:\n\nUser wants to discover Bring! recipes\nBrowsing recipe inspirations\nViewing recipe metadata (names, authors, types, images, links)\nFiltering recipes by tags (all, mine)\nNeed JSON output of recipes for scripting\n\nDon't use when:\n\nUser wants to add ingredients to shopping list (API limitation)\nManaging shopping lists directly\nNeed full recipe details with ingredients"
      },
      {
        "title": "Quick Reference",
        "body": "CommandPurposebring-recipes listBrowse recipe inspirations (default)bring-recipes filtersShow available filter tagsbring-recipes list --filter mineShow your personal recipesbring-recipes list --jsonJSON output for scripting\n\nEnvironment variables:\n\nexport BRING_EMAIL=\"your@email.com\"\nexport BRING_PASSWORD=\"yourpassword\""
      },
      {
        "title": "Installation",
        "body": "cd skills/bring-recipes\nnpm install"
      },
      {
        "title": "Common Workflows",
        "body": "Browse all recipes:\n\nnode index.js list --limit 10\n\nFilter your recipes:\n\nnode index.js list --filter mine\n\nGet JSON for scripting:\n\nnode index.js list --json | jq -r '.[] | .content.name'\n\nCheck available filters:\n\nnode index.js filters"
      },
      {
        "title": "Flags Reference",
        "body": "FlagDescription-f, --filter <tags>Filter tags: all, mine--limit <n>Max recipes (default: 10)--jsonJSON output--no-colorDisable colors-q, --quietMinimal output-v, --verboseDebug output"
      },
      {
        "title": "API Limitations",
        "body": "⚠️ Critical: The Bring! getInspirations() API returns only metadata:\n\n✅ Recipe names, authors, types\n✅ Images, links, tags, like counts\n❌ Ingredient lists (not provided)\n\nThis is a Bring! API limitation, not a CLI bug. The CLI is designed for browsing and discovering recipes only."
      },
      {
        "title": "Recipe Types",
        "body": "TEMPLATE - Bring! templates (e.g., \"Sunday Brunch\")\nRECIPE - Parsed recipes from partners\nPOST - Promotional content"
      },
      {
        "title": "Common Mistakes",
        "body": "Expecting ingredients:\nThe API does not provide ingredient lists. Use the CLI for discovery, then manually add items.\n\nLooking for seasonal filters:\nThe API has no seasonal tags. Only \"all\" and \"mine\" filters are available.\n\nAssuming all recipes have names:\nPOST types may be \"Untitled Recipe\" - this is normal API behavior."
      },
      {
        "title": "Implementation Notes",
        "body": "Uses node-bring-api v2.0.2+ with getInspirations() API\nRequires Node.js 18.0.0+\nNo seasonal filtering (API limitation)\nBrowse-only functionality\nJSON mode available for automation"
      },
      {
        "title": "Real-World Use",
        "body": "Recipe discovery: Browse what's available in Bring!\nInspiration browsing: See trending recipes and templates\nPersonal collection: Filter your saved recipes\nIntegration: JSON output for external tools"
      }
    ],
    "body": "Bring! Recipe Browser CLI\nOverview\n\nCLI for browsing Bring! recipe inspirations. Browse-only tool - the Bring! Inspirations API does not provide ingredient lists.\n\nWhen to Use\n\nUse this skill when:\n\nUser wants to discover Bring! recipes\nBrowsing recipe inspirations\nViewing recipe metadata (names, authors, types, images, links)\nFiltering recipes by tags (all, mine)\nNeed JSON output of recipes for scripting\n\nDon't use when:\n\nUser wants to add ingredients to shopping list (API limitation)\nManaging shopping lists directly\nNeed full recipe details with ingredients\nQuick Reference\nCommand\tPurpose\nbring-recipes list\tBrowse recipe inspirations (default)\nbring-recipes filters\tShow available filter tags\nbring-recipes list --filter mine\tShow your personal recipes\nbring-recipes list --json\tJSON output for scripting\n\nEnvironment variables:\n\nexport BRING_EMAIL=\"your@email.com\"\nexport BRING_PASSWORD=\"yourpassword\"\n\nInstallation\ncd skills/bring-recipes\nnpm install\n\nCommon Workflows\n\nBrowse all recipes:\n\nnode index.js list --limit 10\n\n\nFilter your recipes:\n\nnode index.js list --filter mine\n\n\nGet JSON for scripting:\n\nnode index.js list --json | jq -r '.[] | .content.name'\n\n\nCheck available filters:\n\nnode index.js filters\n\nFlags Reference\nFlag\tDescription\n-f, --filter <tags>\tFilter tags: all, mine\n--limit <n>\tMax recipes (default: 10)\n--json\tJSON output\n--no-color\tDisable colors\n-q, --quiet\tMinimal output\n-v, --verbose\tDebug output\nAPI Limitations\n\n⚠️ Critical: The Bring! getInspirations() API returns only metadata:\n\n✅ Recipe names, authors, types\n✅ Images, links, tags, like counts\n❌ Ingredient lists (not provided)\n\nThis is a Bring! API limitation, not a CLI bug. The CLI is designed for browsing and discovering recipes only.\n\nRecipe Types\nTEMPLATE - Bring! templates (e.g., \"Sunday Brunch\")\nRECIPE - Parsed recipes from partners\nPOST - Promotional content\nCommon Mistakes\n\nExpecting ingredients: The API does not provide ingredient lists. Use the CLI for discovery, then manually add items.\n\nLooking for seasonal filters: The API has no seasonal tags. Only \"all\" and \"mine\" filters are available.\n\nAssuming all recipes have names: POST types may be \"Untitled Recipe\" - this is normal API behavior.\n\nImplementation Notes\nUses node-bring-api v2.0.2+ with getInspirations() API\nRequires Node.js 18.0.0+\nNo seasonal filtering (API limitation)\nBrowse-only functionality\nJSON mode available for automation\nReal-World Use\nRecipe discovery: Browse what's available in Bring!\nInspiration browsing: See trending recipes and templates\nPersonal collection: Filter your saved recipes\nIntegration: JSON output for external tools"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/darkdevelopers/bring-recipes",
    "publisherUrl": "https://clawhub.ai/darkdevelopers/bring-recipes",
    "owner": "darkdevelopers",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bring-recipes",
    "downloadUrl": "https://openagent3.xyz/downloads/bring-recipes",
    "agentUrl": "https://openagent3.xyz/skills/bring-recipes/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bring-recipes/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bring-recipes/agent.md"
  }
}