# Send Bring Add 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. 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.
```
### 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bring-add",
    "name": "Bring Add",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/darkdevelopers/bring-add",
    "canonicalUrl": "https://clawhub.ai/darkdevelopers/bring-add",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bring-add",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bring-add",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "index.js",
      "package-lock.json",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "bring-add",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T01:14:33.687Z",
      "expiresAt": "2026-05-08T01:14:33.687Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bring-add",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bring-add",
        "contentDisposition": "attachment; filename=\"bring-add-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "bring-add"
      },
      "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-add"
    },
    "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-add",
    "downloadUrl": "https://openagent3.xyz/downloads/bring-add",
    "agentUrl": "https://openagent3.xyz/skills/bring-add/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bring-add/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bring-add/agent.md"
  }
}
```
## Documentation

### Overview

CLI for adding items to Bring! shopping lists. Supports quick single-item mode, batch mode, stdin/pipe input, and interactive mode.

### When to Use

Use this skill when:

User wants to add items to a Bring! shopping list
Adding single item with optional specification (e.g., "Milk 1L")
Adding multiple items at once (batch mode)
Piping items from a file or other command
Need to preview additions with dry-run
Need JSON output for scripting

Don't use when:

User wants to browse recipes (use bring-recipes instead)
User wants to remove items from a list
User wants to view current list contents

### Quick Reference

CommandPurposebring-add "Item" "spec"Add single item with specificationbring-add --batch "A, B 1L, C"Add multiple comma-separated itemsbring-add -Read items from stdinbring-addInteractive mode (TTY only)bring-add listsShow available shopping listsbring-add --dry-run ...Preview without modifying

Environment variables:

export BRING_EMAIL="your@email.com"
export BRING_PASSWORD="yourpassword"
export BRING_DEFAULT_LIST="Shopping"  # optional

### Installation

cd skills/bring-add
npm install

### Common Workflows

Add a single item:

node index.js "Tomatoes" "500g"
node index.js "Milk"

Add to specific list:

node index.js --list "Party" "Chips" "3 bags"

Batch add multiple items:

node index.js --batch "Tomatoes 500g, Onions, Cheese 200g"

Pipe from file:

cat shopping-list.txt | node index.js -
echo -e "Milk 1L\\nBread\\nButter" | node index.js -

Preview before adding:

node index.js --dry-run --batch "Apples 1kg, Pears"

Get JSON output:

node index.js --json --batch "Milk, Bread" 2>/dev/null

List available lists:

node index.js lists
node index.js --json lists

### Flags Reference

FlagDescription-l, --list <name>Target list (name or UUID)-b, --batch <items>Comma-separated items-n, --dry-runPreview without modifying-q, --quietSuppress non-error output-v, --verboseShow detailed progress--jsonOutput JSON to stdout--no-colorDisable colored output--no-inputNever prompt; fail if input required

### Input Format

Items follow the pattern: ItemName [Specification]

InputItemSpecTomatoes 500gTomatoes500gOat milk 1LOat milk1LRed onions 3Red onions3CheeseCheese(empty)

Rule: Last word becomes specification if it contains a number or unit (g, kg, L, ml, Stück, pck).

### Exit Codes

CodeMeaning0Success1Generic failure (API error, network)2Invalid usage (bad args, missing input)3Authentication failed4List not found130Interrupted (Ctrl-C)

### Common Mistakes

Forgetting environment variables:
Set BRING_EMAIL and BRING_PASSWORD before running.

Wrong list name:
Use bring-add lists to see available lists and their exact names.

Specification parsing:
The last word is treated as specification only if it looks like a quantity. "Red onions" stays as one item, but "Red onions 3" splits into item "Red onions" with spec "3".

Interactive mode in scripts:
Use --no-input flag in scripts to fail explicitly rather than hang waiting for input.

### Implementation Notes

Uses node-bring-api with batchUpdateList() API
Requires Node.js 18.0.0+
Outputs data to stdout, progress/errors to stderr
JSON mode available for automation
Interactive mode only when stdin is a TTY
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: darkdevelopers
- 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-05-01T01:14:33.687Z
- Expires at: 2026-05-08T01:14:33.687Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bring-add)
- [Send to Agent page](https://openagent3.xyz/skills/bring-add/agent)
- [JSON manifest](https://openagent3.xyz/skills/bring-add/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bring-add/agent.md)
- [Download page](https://openagent3.xyz/downloads/bring-add)