{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bring-list",
    "name": "Bring! Shopping List",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/MaikiMolto/bring-list",
    "canonicalUrl": "https://clawhub.ai/MaikiMolto/bring-list",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bring-list",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bring-list",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "package.json",
      "scripts/bring.sh"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-list"
    },
    "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-list",
    "agentPageUrl": "https://openagent3.xyz/skills/bring-list/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bring-list/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bring-list/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Bring! Shopping Lists",
        "body": "Manage Bring! shopping lists via the unofficial REST API. Requires curl and jq."
      },
      {
        "title": "Agent Setup Guide",
        "body": "When a user asks you to set up or use Bring for the first time, follow these steps:"
      },
      {
        "title": "Step 1: Check if already configured",
        "body": "Run scripts/bring.sh lists first. If it works, setup is already done — skip to usage."
      },
      {
        "title": "Step 2: Set up credentials",
        "body": "Bring! requires an email + password. If the user doesn't have an account yet, they can create one for free at getbring.com or in the Bring! app.\n\nIf they signed up via Google/Apple: They need to set a direct password first in the Bring! app (Settings → Account → Change Password) before the API works.\n\nAsk the user how they'd like to provide their credentials:\n\n\"I need your Bring! email and password. You can either share them here in chat (I'll write them to a config file and never mention them again), or if you prefer to keep them out of the chat entirely, I can give you a terminal command to enter them privately. Which do you prefer?\"\n\nOption A — via chat (convenient):\nUser shares email + password in chat. Write them directly to the config file using jq for safe JSON encoding (prevents injection via special characters) and do not echo them back:\n\nmkdir -p ~/.config/bring\njq -n --arg e \"USER_EMAIL\" --arg p \"USER_PASSWORD\" '{email: $e, password: $p}' > ~/.config/bring/credentials.json\nchmod 600 ~/.config/bring/credentials.json\n\nAfter writing, confirm: \"Done — credentials saved securely. I won't repeat them.\"\n\nOption B — via terminal (more private):\nGive the user this command to run in their own terminal. Credentials never appear in chat:\n\nmkdir -p ~/.config/bring\nread -rp \"Bring! Email: \" BEMAIL\nread -rsp \"Bring! Password: \" BPASS && echo\njq -n --arg e \"$BEMAIL\" --arg p \"$BPASS\" '{email: $e, password: $p}' > ~/.config/bring/credentials.json\nchmod 600 ~/.config/bring/credentials.json\nunset BEMAIL BPASS\n\nTell the user: \"Run that in your terminal, then come back and I'll continue the setup.\"\n\n⚠️ Do NOT use scripts/bring.sh setup — it requires an interactive terminal (TTY) which agents don't have. Always create the credentials file manually as shown in Step 3."
      },
      {
        "title": "Step 3: Save credentials and test login",
        "body": "mkdir -p ~/.config/bring\njq -n --arg e \"USER_EMAIL\" --arg p \"USER_PASSWORD\" '{email: $e, password: $p}' > ~/.config/bring/credentials.json\nchmod 600 ~/.config/bring/credentials.json\nscripts/bring.sh login\n\nIf login fails: double-check email/password. The user may need their Bring! password (not Google/Apple SSO — Bring requires a direct account password)."
      },
      {
        "title": "Step 4: Show existing lists and ask for a default",
        "body": "scripts/bring.sh lists\n\nThis shows all the user's Bring! lists. The user may have multiple lists, e.g.:\n\nEinkaufsliste (main grocery list)\nDrogerie (drugstore items)\nBaumarkt (hardware store)\nA shared list with a partner/family\n\nIf the user has NO lists: Tell them to create one in the Bring! app first. The API does not support creating or deleting lists — this must be done in the app. Once they've created a list, continue with setup.\n\nAsk the user which list should be the default. This lets them skip typing the list name every time.\n\nIf they have only ONE list: set it as default automatically and inform them.\nIf they have MULTIPLE lists: show the list names and ask which one to use as default. Explain they can still target other lists by name (e.g., \"Put nails on the Baumarkt list\")."
      },
      {
        "title": "Step 5: Set default list",
        "body": "Update the credentials file to include the chosen default:\n\n# Read existing config and add default_list\njq --arg list \"CHOSEN_LIST_NAME\" '. + {default_list: $list}' ~/.config/bring/credentials.json > /tmp/bring_conf.json && mv /tmp/bring_conf.json ~/.config/bring/credentials.json\nchmod 600 ~/.config/bring/credentials.json"
      },
      {
        "title": "Step 6: Confirm setup",
        "body": "Show the user their current list content to confirm everything works:\n\nscripts/bring.sh show\n\nTell them: \"All set! You can now say things like 'Put milk on the list' or 'What's on the shopping list?'\""
      },
      {
        "title": "Important: Lists can only be managed in the app",
        "body": "The Bring! API does not support creating or deleting lists. If the user asks to create a new list or delete one, tell them:\n\"Lists can only be created and deleted in the Bring! app. Once you've made the change there, I can immediately work with the new list.\""
      },
      {
        "title": "Handling shared lists",
        "body": "Bring! lists are often shared between family members or partners. Changes made by the agent sync instantly to all devices sharing that list. Inform the user:\n\n\"Any items I add will show up immediately on all phones that share this list.\"\nThis is usually desired (e.g., partner sees the updated grocery list), but worth mentioning."
      },
      {
        "title": "Setup (manual / reference)",
        "body": "Credentials via env vars BRING_EMAIL + BRING_PASSWORD, or config file ~/.config/bring/credentials.json:\n\n{\"email\": \"user@example.com\", \"password\": \"secret\", \"default_list\": \"Einkaufsliste\"}\n\nInteractive setup (TTY required): scripts/bring.sh setup"
      },
      {
        "title": "Commands",
        "body": "All commands accept a list name (partial match) or UUID. If default_list is configured, the list argument can be omitted.\n\n# List all shopping lists\nscripts/bring.sh lists\n\n# Show items on a list (or default list)\nscripts/bring.sh show\nscripts/bring.sh show \"Einkaufsliste\"\n\n# Add item (with optional specification/quantity)\nscripts/bring.sh add \"Milch\" \"fettarm, 1L\"\nscripts/bring.sh add \"Einkaufsliste\" \"Milch\" \"fettarm, 1L\"\n\n# Add multiple items at once (use \"item|spec\" for specifications)\nscripts/bring.sh add-multi \"Brot\" \"Käse|Gouda\" \"Butter|irische\"\n\n# Complete/check off item (moves to recently purchased)\nscripts/bring.sh complete \"Milch\"\n\n# Complete multiple items at once\nscripts/bring.sh complete-multi \"Milch\" \"Brot\" \"Käse\"\n\n# Move item back from recently to purchase list\nscripts/bring.sh uncomplete \"Milch\"\n\n# Remove item entirely\nscripts/bring.sh remove \"Milch\"\n\n# Remove multiple items at once\nscripts/bring.sh remove-multi \"Milch\" \"Brot\" \"Käse\""
      },
      {
        "title": "Targeting specific lists",
        "body": "When the user has multiple lists, they can target a specific one by name:\n\n\"Put nails on the Baumarkt list\" → scripts/bring.sh add \"Baumarkt\" \"Nails\"\n\"What's on the Drogerie list?\" → scripts/bring.sh show \"Drogerie\"\n\nList names support partial case-insensitive matching, so \"einkauf\" matches \"Einkaufsliste\".\n\nIf no list is specified, the default_list from the config is used."
      },
      {
        "title": "JSON Output",
        "body": "Append --json to lists and show for raw JSON:\n\nscripts/bring.sh lists --json\nscripts/bring.sh show --json\nscripts/bring.sh show \"Einkaufsliste\" --json"
      },
      {
        "title": "Notes",
        "body": "Specifications are the small description text under an item (e.g., quantity, brand)\ncomplete moves items to \"recently purchased\" (like checking off in the app)\nremove deletes items entirely from the list\nToken is cached at ~/.cache/bring/token.json and auto-refreshed\nChanges sync instantly to all devices sharing the list\nItem names with special characters (quotes, umlauts, emoji) are fully supported\nBring! requires a direct account password — Google/Apple SSO logins don't work with the API\ncountry in credentials.json controls the item catalog language (default: DE)\nWhen showing items to the user, consider only showing the \"TO BUY\" section unless they specifically ask for recently completed items — the recently list can be very long\nIf remove fails with \"not found\", suggest the user check the exact item name with show\nCreating/deleting lists is not supported by the Bring! API — users must manage lists in the Bring! app"
      }
    ],
    "body": "Bring! Shopping Lists\n\nManage Bring! shopping lists via the unofficial REST API. Requires curl and jq.\n\nAgent Setup Guide\n\nWhen a user asks you to set up or use Bring for the first time, follow these steps:\n\nStep 1: Check if already configured\n\nRun scripts/bring.sh lists first. If it works, setup is already done — skip to usage.\n\nStep 2: Set up credentials\n\nBring! requires an email + password. If the user doesn't have an account yet, they can create one for free at getbring.com or in the Bring! app.\n\nIf they signed up via Google/Apple: They need to set a direct password first in the Bring! app (Settings → Account → Change Password) before the API works.\n\nAsk the user how they'd like to provide their credentials:\n\n\"I need your Bring! email and password. You can either share them here in chat (I'll write them to a config file and never mention them again), or if you prefer to keep them out of the chat entirely, I can give you a terminal command to enter them privately. Which do you prefer?\"\n\nOption A — via chat (convenient): User shares email + password in chat. Write them directly to the config file using jq for safe JSON encoding (prevents injection via special characters) and do not echo them back:\n\nmkdir -p ~/.config/bring\njq -n --arg e \"USER_EMAIL\" --arg p \"USER_PASSWORD\" '{email: $e, password: $p}' > ~/.config/bring/credentials.json\nchmod 600 ~/.config/bring/credentials.json\n\n\nAfter writing, confirm: \"Done — credentials saved securely. I won't repeat them.\"\n\nOption B — via terminal (more private): Give the user this command to run in their own terminal. Credentials never appear in chat:\n\nmkdir -p ~/.config/bring\nread -rp \"Bring! Email: \" BEMAIL\nread -rsp \"Bring! Password: \" BPASS && echo\njq -n --arg e \"$BEMAIL\" --arg p \"$BPASS\" '{email: $e, password: $p}' > ~/.config/bring/credentials.json\nchmod 600 ~/.config/bring/credentials.json\nunset BEMAIL BPASS\n\n\nTell the user: \"Run that in your terminal, then come back and I'll continue the setup.\"\n\n⚠️ Do NOT use scripts/bring.sh setup — it requires an interactive terminal (TTY) which agents don't have. Always create the credentials file manually as shown in Step 3.\n\nStep 3: Save credentials and test login\nmkdir -p ~/.config/bring\njq -n --arg e \"USER_EMAIL\" --arg p \"USER_PASSWORD\" '{email: $e, password: $p}' > ~/.config/bring/credentials.json\nchmod 600 ~/.config/bring/credentials.json\nscripts/bring.sh login\n\n\nIf login fails: double-check email/password. The user may need their Bring! password (not Google/Apple SSO — Bring requires a direct account password).\n\nStep 4: Show existing lists and ask for a default\nscripts/bring.sh lists\n\n\nThis shows all the user's Bring! lists. The user may have multiple lists, e.g.:\n\nEinkaufsliste (main grocery list)\nDrogerie (drugstore items)\nBaumarkt (hardware store)\nA shared list with a partner/family\n\nIf the user has NO lists: Tell them to create one in the Bring! app first. The API does not support creating or deleting lists — this must be done in the app. Once they've created a list, continue with setup.\n\nAsk the user which list should be the default. This lets them skip typing the list name every time.\n\nIf they have only ONE list: set it as default automatically and inform them. If they have MULTIPLE lists: show the list names and ask which one to use as default. Explain they can still target other lists by name (e.g., \"Put nails on the Baumarkt list\").\n\nStep 5: Set default list\n\nUpdate the credentials file to include the chosen default:\n\n# Read existing config and add default_list\njq --arg list \"CHOSEN_LIST_NAME\" '. + {default_list: $list}' ~/.config/bring/credentials.json > /tmp/bring_conf.json && mv /tmp/bring_conf.json ~/.config/bring/credentials.json\nchmod 600 ~/.config/bring/credentials.json\n\nStep 6: Confirm setup\n\nShow the user their current list content to confirm everything works:\n\nscripts/bring.sh show\n\n\nTell them: \"All set! You can now say things like 'Put milk on the list' or 'What's on the shopping list?'\"\n\nImportant: Lists can only be managed in the app\n\nThe Bring! API does not support creating or deleting lists. If the user asks to create a new list or delete one, tell them: \"Lists can only be created and deleted in the Bring! app. Once you've made the change there, I can immediately work with the new list.\"\n\nHandling shared lists\n\nBring! lists are often shared between family members or partners. Changes made by the agent sync instantly to all devices sharing that list. Inform the user:\n\n\"Any items I add will show up immediately on all phones that share this list.\"\nThis is usually desired (e.g., partner sees the updated grocery list), but worth mentioning.\nSetup (manual / reference)\n\nCredentials via env vars BRING_EMAIL + BRING_PASSWORD, or config file ~/.config/bring/credentials.json:\n\n{\"email\": \"user@example.com\", \"password\": \"secret\", \"default_list\": \"Einkaufsliste\"}\n\n\nInteractive setup (TTY required): scripts/bring.sh setup\n\nCommands\n\nAll commands accept a list name (partial match) or UUID. If default_list is configured, the list argument can be omitted.\n\n# List all shopping lists\nscripts/bring.sh lists\n\n# Show items on a list (or default list)\nscripts/bring.sh show\nscripts/bring.sh show \"Einkaufsliste\"\n\n# Add item (with optional specification/quantity)\nscripts/bring.sh add \"Milch\" \"fettarm, 1L\"\nscripts/bring.sh add \"Einkaufsliste\" \"Milch\" \"fettarm, 1L\"\n\n# Add multiple items at once (use \"item|spec\" for specifications)\nscripts/bring.sh add-multi \"Brot\" \"Käse|Gouda\" \"Butter|irische\"\n\n# Complete/check off item (moves to recently purchased)\nscripts/bring.sh complete \"Milch\"\n\n# Complete multiple items at once\nscripts/bring.sh complete-multi \"Milch\" \"Brot\" \"Käse\"\n\n# Move item back from recently to purchase list\nscripts/bring.sh uncomplete \"Milch\"\n\n# Remove item entirely\nscripts/bring.sh remove \"Milch\"\n\n# Remove multiple items at once\nscripts/bring.sh remove-multi \"Milch\" \"Brot\" \"Käse\"\n\nTargeting specific lists\n\nWhen the user has multiple lists, they can target a specific one by name:\n\n\"Put nails on the Baumarkt list\" → scripts/bring.sh add \"Baumarkt\" \"Nails\"\n\"What's on the Drogerie list?\" → scripts/bring.sh show \"Drogerie\"\n\nList names support partial case-insensitive matching, so \"einkauf\" matches \"Einkaufsliste\".\n\nIf no list is specified, the default_list from the config is used.\n\nJSON Output\n\nAppend --json to lists and show for raw JSON:\n\nscripts/bring.sh lists --json\nscripts/bring.sh show --json\nscripts/bring.sh show \"Einkaufsliste\" --json\n\nNotes\nSpecifications are the small description text under an item (e.g., quantity, brand)\ncomplete moves items to \"recently purchased\" (like checking off in the app)\nremove deletes items entirely from the list\nToken is cached at ~/.cache/bring/token.json and auto-refreshed\nChanges sync instantly to all devices sharing the list\nItem names with special characters (quotes, umlauts, emoji) are fully supported\nBring! requires a direct account password — Google/Apple SSO logins don't work with the API\ncountry in credentials.json controls the item catalog language (default: DE)\nWhen showing items to the user, consider only showing the \"TO BUY\" section unless they specifically ask for recently completed items — the recently list can be very long\nIf remove fails with \"not found\", suggest the user check the exact item name with show\nCreating/deleting lists is not supported by the Bring! API — users must manage lists in the Bring! app"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/MaikiMolto/bring-list",
    "publisherUrl": "https://clawhub.ai/MaikiMolto/bring-list",
    "owner": "MaikiMolto",
    "version": "1.2.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bring-list",
    "downloadUrl": "https://openagent3.xyz/downloads/bring-list",
    "agentUrl": "https://openagent3.xyz/skills/bring-list/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bring-list/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bring-list/agent.md"
  }
}