编程

Bring! Shopping List

试用

管理 Bring! 购物清单——添加、勾选、移除商品,并设置默认列表方便日常使用。

它能做什么

通过非官方 Bring! REST API 操作你的购物清单。可添加带规格(数量、品牌等说明文字)的商品、把已购商品勾选掉、把已勾选项移回待购,或彻底删除;添加、勾选、删除都提供批量版本。首次设置时选定一个默认列表,后续调用可不带列表名,其他列表支持按名称模糊匹配。默认展示人类可读的清单内容,lists 与 show 命令可加 `--json` 输出原始 JSON。仅与 api.getbring.com 通信,不接入第三方服务。

什么时候用它

  • 在对话中把要买的食材加到默认 Bring! 列表
  • 勾掉已购商品,或把已勾选项恢复到待购
  • 在共享列表上批量添加或批量删除商品
  • 按名称模糊匹配切换到指定列表(如 Drogerie、Baumarkt)

技能文档

Bring! Shopping Lists

Manage Bring! shopping lists via the unofficial REST API. Requires curl and jq.

Security & data handling

Be upfront with the user about what this skill accesses and stores:

  • Network: talks only to Bring!'s official API at api.getbring.com — no third-party services, no telemetry, no other hosts.
  • Files written locally:
    • ~/.config/bring/credentials.json — the user's Bring! email + password (chmod 600, owner-only).
    • ~/.cache/bring/token.json — cached access/refresh token.
  • Why the password is stored: Bring!'s unofficial API has no token-only login. The skill caches a token and auto-refreshes it, but keeps the password so it can re-login once the token and refresh token expire. The stored password therefore grants ongoing access to the Bring! account from this machine — treat credentials.json as a secret.
  • Destructive actions: remove / remove-multi permanently delete items, and every change syncs instantly to everyone on a shared list. Confirm with the user before removing items, especially on shared lists.

Agent Setup Guide

When a user asks you to set up or use Bring for the first time, follow these steps:

Step 1: Check if already configured

Run scripts/bring.sh lists first. If it works, setup is already done — skip to usage.

Step 2: Set up credentials

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.

If 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.

Ask the user how they'd like to provide their credentials. Be transparent about the trade-off — never imply the credentials stay off-chat if the user picks the chat option:

"I need your Bring! email and password. Two ways: • Terminal (recommended, most private): you type them into your own terminal — they never appear in this chat. • Chat (convenient): you paste them here. ⚠️ Heads-up: anything typed in chat becomes part of this conversation's history and may be retained in logs/backups. I'll write them straight to a local config file and never repeat them, but I can't un-send a chat message.

Which do you prefer?"

Option A — via terminal (recommended): Give the user this command to run in their own terminal. Credentials never pass through the chat:

mkdir -p ~/.config/bring
read -rp "Bring! Email: " BEMAIL
read -rsp "Bring! Password: " BPASS && echo
jq -n --arg e "$BEMAIL" --arg p "$BPASS" '{email: $e, password: $p}' > ~/.config/bring/credentials.json
chmod 600 ~/.config/bring/credentials.json
unset BEMAIL BPASS

Tell the user: "Run that in your terminal, then come back and I'll continue the setup."

Option B — via chat (convenient, but credentials pass through the chat): Use only if the user explicitly chooses this after the warning above. The 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:

mkdir -p ~/.config/bring
jq -n --arg e "USER_EMAIL" --arg p "USER_PASSWORD" '{email: $e, password: $p}' > ~/.config/bring/credentials.json
chmod 600 ~/.config/bring/credentials.json

After writing, confirm: "Done — saved to the local config file (chmod 600), and I won't repeat them. Note they're now in this chat's history — feel free to clear it on your end."

⚠️ 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.

Step 3: Save credentials and test login

mkdir -p ~/.config/bring
jq -n --arg e "USER_EMAIL" --arg p "USER_PASSWORD" '{email: $e, password: $p}' > ~/.config/bring/credentials.json
chmod 600 ~/.config/bring/credentials.json
scripts/bring.sh login

If login fails: double-check email/password. The user may need their Bring! password (not Google/Apple SSO — Bring requires a direct account password).

Step 4: Show existing lists and ask for a default

scripts/bring.sh lists

This shows all the user's Bring! lists. The user may have multiple lists, e.g.:

  • Einkaufsliste (main grocery list)
  • Drogerie (drugstore items)
  • Baumarkt (hardware store)
  • A shared list with a partner/family

If 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.

Ask the user which list should be the default. This lets them skip typing the list name every time.

If 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").

Step 5: Set default list

Update the credentials file to include the chosen default:

# Read existing config and add default_list
jq --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
chmod 600 ~/.config/bring/credentials.json

Step 6: Confirm setup

Show the user their current list content to confirm everything works:

scripts/bring.sh show

Tell them: "All set! You can now say things like 'Put milk on the list' or 'What's on the shopping list?'"

Important: Lists can only be managed in the app

The 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."

Handling shared lists

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:

  • "Any items I add will show up immediately on all phones that share this list."
  • This is usually desired (e.g., partner sees the updated grocery list), but worth mentioning.

Setup (manual / reference)

Credentials via env vars BRING_EMAIL + BRING_PASSWORD, or config file ~/.config/bring/credentials.json:

{"email": "user@example.com", "password": "YOUR_BRING_PASSWORD", "default_list": "Einkaufsliste"}

Interactive setup (TTY required): scripts/bring.sh setup

Commands

All commands accept a list name (partial match) or UUID. If default_list is configured, the list argument can be omitted.

# List all shopping lists
scripts/bring.sh lists

# Show items on a list (or default list)
scripts/bring.sh show
scripts/bring.sh show "Einkaufsliste"

# Add item (with optional specification/quantity)
scripts/bring.sh add "Milch" "fettarm, 1L"
scripts/bring.sh add "Einkaufsliste" "Milch" "fettarm, 1L"

# Add multiple items at once (use "item|spec" for specifications)
scripts/bring.sh add-multi "Brot" "Käse|Gouda" "Butter|irische"

# Complete/check off item (moves to recently purchased)
scripts/bring.sh complete "Milch"

# Complete multiple items at once
scripts/bring.sh complete-multi "Milch" "Brot" "Käse"

# Move item back from recently to purchase list
scripts/bring.sh uncomplete "Milch"

# Remove item entirely
scripts/bring.sh remove "Milch"

# Remove multiple items at once
scripts/bring.sh remove-multi "Milch" "Brot" "Käse"

Targeting specific lists

When the user has multiple lists, they can target a specific one by name:

  • "Put nails on the Baumarkt list" → scripts/bring.sh add "Baumarkt" "Nails"
  • "What's on the Drogerie list?" → scripts/bring.sh show "Drogerie"

List names support partial case-insensitive matching, so "einkauf" matches "Einkaufsliste".

If no list is specified, the default_list from the config is used.

JSON Output

Append --json to lists and show for raw JSON:

scripts/bring.sh lists --json
scripts/bring.sh show --json
scripts/bring.sh show "Einkaufsliste" --json

Notes

  • Specifications are the small description text under an item (e.g., quantity, brand)
  • complete moves items to "recently purchased" (like checking off in the app)
  • remove deletes items entirely from the list
  • Token is cached at ~/.cache/bring/token.json and auto-refreshed
  • Changes sync instantly to all devices sharing the list
  • Item names with special characters (quotes, umlauts, emoji) are fully supported
  • Bring! requires a direct account password — Google/Apple SSO logins don't work with the API
  • country in credentials.json controls the item catalog language (default: DE)
  • When 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
  • If remove fails with "not found", suggest the user check the exact item name with show
  • Creating/deleting lists is not supported by the Bring! API — users must manage lists in the Bring! app

常见问题

凭据存在哪里?安全吗?
邮箱和密码写入 ~/.config/bring/credentials.json,权限 600(仅属主可读);token 缓存到 ~/.cache/bring/token.json。由于 Bring! 非官方 API 没有仅凭 token 登录的方式,密码会一并保留,以便 token 和 refresh token 都过期后重新登录——请把它当作敏感文件对待。
能用它新建或删除列表吗?
不能。Bring! API 不支持创建或删除列表,这两步必须在 Bring! App 里完成。新列表创建后,agent 可以立刻按名称对其操作。
共享列表上修改会怎样?
改动会即时同步到所有共享同一列表的设备。remove 与 remove-multi 会永久删除商品并影响所有共享成员,因此在这类操作前会先与你确认。

相关技能

Manage Bring! shopping lists - view, add, remove items from shared grocery lists.

67 次安装2 星标

Turn product photos into verified Bring! list items via MCP.

Shopping memory that holds lists, purchases, prices, and "last time I bought X" so agents can help with errands, restocks, and budget questions. Use when an agent tracks household or business purchasing. Requires a BlueColumn API key (bc_live_*).

Use Menlo Shopping MCP to find individual products or build curated shopping lists. Use when a user asks to shop, compare products, find gifts, assemble a se...

Guide an OpenClaw agent through seller-side cross listing and marketplace-ready listing generation from item photos. Use when the seller wants a listing AI w...

24 次安装1 星标