skills$openclaw/bricklink
odrobnik1.6kβ˜…

by odrobnik

bricklink – OpenClaw Skill

bricklink is an OpenClaw Skills integration for coding workflows. BrickLink Store API helper/CLI (OAuth 1.0 request signing). Covers orders, store inventory (read + write), catalog, categories, colors, feedback, and push notifications.

1.6k stars7.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namebricklink
descriptionBrickLink Store API helper/CLI (OAuth 1.0 request signing). Covers orders, store inventory (read + write), catalog, categories, colors, feedback, and push notifications. OpenClaw Skills integration.
ownerodrobnik
repositoryodrobnik/bricklink
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @odrobnik/bricklink
last updatedFeb 7, 2026

Maintainer

odrobnik

odrobnik

Maintains bricklink in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
bricklink.py
50.6 KB
_meta.json
272 B
SKILL.md
4.8 KB
SKILL.md

BrickLink

Use scripts/bricklink.py.

  • BRICKLINK_CONSUMER_KEY
  • BRICKLINK_CONSUMER_SECRET
  • BRICKLINK_TOKEN_VALUE
  • BRICKLINK_TOKEN_SECRET

Option B: local config JSON (recommended for convenience)

Create ~/clawd/bricklink/config.json. If that file exists, --config is optional.

Option C: parse the saved registration HTML

  • bricklink.py --creds-html "/path/to/BrickLink API Consumer Registration | BrickLink.html" ...

Commands

Read-only

  • bricklink.py get-orders [--direction in|out] [--status ...] [--include-status ...] [--exclude-status ...] [--filed true|false] β€” Lists orders you received or placed.

  • bricklink.py get-order <order_id> β€” Fetches details for a specific order.

  • bricklink.py get-order-items <order_id> β€” Fetches the item batches for a specific order.

  • bricklink.py get-order-messages <order_id> β€” Fetches messages associated with a specific order.

  • bricklink.py get-order-feedback <order_id> β€” Fetches feedback associated with a specific order.

  • bricklink.py get-feedback [--direction in|out] β€” Lists feedback you received (in) or posted (out).

  • bricklink.py get-feedback-item <feedback_id> β€” Fetches a single feedback entry by id.

  • bricklink.py get-notifications β€” Lists unread push notifications (/notifications).

  • bricklink.py get-categories β€” Lists all catalog categories.

  • bricklink.py get-category <category_id> β€” Fetches a single category by id.

  • bricklink.py get-colors β€” Lists all catalog colors.

  • bricklink.py get-color <color_id> β€” Fetches a single color by id.

  • bricklink.py get-inventories [--item-type ...] [--status ...] [--category-id ...] [--color-id ...] β€” Lists your store inventory lots (supports include/exclude filters).

  • bricklink.py get-inventory <inventory_id> β€” Fetches a single inventory lot by id.

  • bricklink.py get-item <type> <no> β€” Fetches a catalog item (PART/SET/MINIFIG/…).

  • bricklink.py get-supersets <type> <no> [--color-id N] β€” Lists items that contain the specified item.

  • bricklink.py get-subsets <type> <no> [--color-id N] [--box true|false] [--instruction true|false] [--break-minifigs true|false] [--break-subsets true|false] β€” Parts out an item into its included items.

  • bricklink.py get-price-guide <type> <no> [--color-id N] [--guide-type stock|sold] [--new-or-used N|U] [--country-code XX] [--region ...] [--currency-code XXX] [--vat N|Y|O] β€” Fetches price guide statistics.

  • bricklink.py get-known-colors <type> <no> β€” Lists known colors for a catalog item.

Mutating (require --yes)

  • bricklink.py update-order <order_id> --yes [--json body.json] [--remarks ...] [--is-filed true|false] [--shipping-...] [--cost-...] β€” Updates allowed order fields (tracking, remarks, shipping/cost fields).

  • bricklink.py update-order-status <order_id> <status> --yes β€” Updates the status of an order.

  • bricklink.py update-payment-status <order_id> <payment_status> --yes β€” Updates the payment status of an order.

  • bricklink.py send-drive-thru <order_id> [--mail-me] --yes β€” Sends a β€œDrive Thru” email for an order.

  • bricklink.py post-feedback --yes [--json body.json] [--order-id N --rating 0|1|2 --comment ...] β€” Posts new feedback for an order.

  • bricklink.py reply-feedback <feedback_id> --yes [--json body.json] [--reply ...] β€” Replies to feedback you received.

  • bricklink.py create-inventory --yes [--json body.json] [--item-type ... --item-no ... --color-id N --quantity N --unit-price ... --new-or-used N|U ...] β€” Creates a single inventory lot.

  • bricklink.py create-inventories --yes [--json body.json] [--item-type ... --item-no ... --color-id N --quantity N --unit-price ... --new-or-used N|U ...] β€” Creates multiple inventory lots in one request.

  • bricklink.py update-inventory <inventory_id> --yes [--json body.json] [--quantity N --unit-price ... --new-or-used N|U --remarks ...] β€” Updates an inventory lot.

  • bricklink.py delete-inventory <inventory_id> --yes β€” Deletes an inventory lot.

Utilities

  • bricklink.py order-detail-html <order_id> [--out path] [--inline-images] β€” Fetches order+items and renders a compact HTML view (similar to BrickLink orderDetail.asp).
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install bricklink?

Run openclaw add @odrobnik/bricklink in your terminal. This installs bricklink into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/odrobnik/bricklink. Review commits and README documentation before installing.