# Send Bring! Shopping Lists 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": "bring",
    "name": "Bring! Shopping Lists",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/GrewingM/bring",
    "canonicalUrl": "https://clawhub.ai/GrewingM/bring",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bring",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bring",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api.md",
      "scripts/bring-cli.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "bring",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T07:26:22.859Z",
      "expiresAt": "2026-05-06T07:26:22.859Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bring",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bring",
        "contentDisposition": "attachment; filename=\"bring-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "bring"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/bring"
    },
    "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/bring",
    "downloadUrl": "https://openagent3.xyz/downloads/bring",
    "agentUrl": "https://openagent3.xyz/skills/bring/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bring/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bring/agent.md"
  }
}
```
## Documentation

### Bring Shopping List Integration

Interact with Bring! shopping lists to manage groceries and shopping items.

### Prerequisites

The bring-shopping npm package must be installed:

npm install -g bring-shopping

### Initial Setup

Before first use, configure Bring credentials:

./bring configure <email> <password>

Credentials are stored in ~/.openclaw/bring/config.json.

### List All Shopping Lists

Get all available shopping lists with their UUIDs:

./bring lists

Output includes list names, UUIDs, and themes.

### Find a List by Name

Search for a list by partial name match:

./bring findlist "Home"
./bring findlist "Groceries"

Returns matching lists with their UUIDs.

### View List Items

Show all items in a shopping list:

./bring items <listUuid>

Or use the default list (if set):

./bring items

Returns items to purchase and recently purchased items.

### Add Items

Add an item to a shopping list:

./bring add <listUuid> "<item-name>" "<optional-note>"

Examples:

./bring add abc-123 "Latte" "2 litri"
./bring add abc-123 "Pane"

Tip: Use item names that match what you already use in the Bring app to ensure icons appear.

### Remove Items

Remove an item from a shopping list (moves to recent list):

./bring remove <listUuid> "<item-name>"

### Set Default List

Set a default list UUID to avoid passing it each time:

./bring setdefault <listUuid>

After setting default, you can use ./bring items without specifying listUuid.

### Manage List Languages

Set the language for a list (for reference):

./bring setlang <listUuid> it-IT
./bring setlang <listUuid> es-ES
./bring setlang <listUuid> en-US

Get the configured language:

./bring getlang <listUuid>

Supported locales: en-US, it-IT, es-ES, de-DE, fr-FR

### Adding to a Named List

When user says "Add milk to the Home list":

Find the list:
./bring findlist "Home"



Check what language/names are used in that list:
./bring items <listUuid>



Add using the appropriate name (match existing items):
./bring add <listUuid> "Latte"  # If list uses Italian
# or
./bring add <listUuid> "Milk"   # If list uses English

### Checking What's Needed

When user asks "What's on my shopping list?":

./bring items <listUuid>

Or if default is set:

./bring items

Parse and present items in a readable format.

### Marking Items as Purchased

When user says "Remove milk from the list":

./bring remove <listUuid> "Latte"

### Multilingual Families

For families using multiple languages:

Check existing items in each list to see what language is used
Use consistent naming - match the names already in the list
Set list language with setlang for reference
Learn from context - if a list has "Latte", "Pane", "Uova", it's Italian

The Bring app automatically shows icons when item names match its catalog. To ensure icons appear, use names that match what the Bring app recognizes for that language.

### Technical Details

The bring wrapper script sets NODE_PATH for the npm package
Configuration stored in ~/.openclaw/bring/config.json
Session authenticated via email/password
Lists can be shared among family members
Changes sync in real-time across all devices

### Notes

Item names are case-sensitive
The "remove" command moves items to "recent" list (not permanent deletion)
Multiple family members can share lists
Each list can use different language conventions
Match item names to what's already in your lists for best icon support
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: GrewingM
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T07:26:22.859Z
- Expires at: 2026-05-06T07:26:22.859Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bring)
- [Send to Agent page](https://openagent3.xyz/skills/bring/agent)
- [JSON manifest](https://openagent3.xyz/skills/bring/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bring/agent.md)
- [Download page](https://openagent3.xyz/downloads/bring)