Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

bricklinkbricklink 命令行

Agent Skill

bricklink 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

79,392

周安装

3,308

GitHub Stars

1

下载量

26,464
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bricklink(bricklink 命令行)
来源仓库:https://github.com/odrobnik/bricklink
安装命令:
openclaw skills install bricklink
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install bricklink

简介

bricklink 用于访问 BrickLink Store API,适合在 OpenClaw 中需要管理乐高店铺库存、处理订单或查询目录信息时使用。

  • 适用于电商库存管理、订单处理和商品数据查询等场景。
  • 支持读写店铺库存、订单管理和类别浏览等功能。
  • 安装命令为 openclaw skills install bricklink,需确认权限范围和维护状态。
  • 使用前应评估是否会触发联网、命令执行或文件读写操作。

SKILL.md

name
bricklink
description
BrickLink Store API helper/CLI (OAuth 1.0 request signing). Covers orders, store inventory (read + write), catalog, categories, colors, feedback, and push notifications.
summary
BrickLink Store API CLI: orders, inventory, catalog, pricing, feedback.
version
1.4.2
homepage
https://github.com/odrobnik/bricklink-skill
metadata
openclaw
emoji
🧱
requires
bins
["python3"]
env
["BRICKLINK_CONSUMER_KEY", "BRICKLINK_CONSUMER_SECRET", "BRICKLINK_TOKEN_VALUE", "BRICKLINK_TOKEN_SECRET"]

BrickLink

Use scripts/bricklink.py.

Setup

See SETUP.md for prerequisites and setup instructions.

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

Note: Order mutations (update-order, update-order-status, update-payment-status) only work for store orders (direction=out, where you are the seller). Purchases (direction=in) return 404 — the BrickLink API does not allow buyers to modify order status or file/archive incoming orders. Use the BrickLink website for those.
  • bricklink.py update-order <order_id> [--remarks ...] [--is-filed true|false] [--shipping-...] [--cost-...] — Updates allowed order fields (tracking, remarks, shipping/cost fields). Store orders only.
  • bricklink.py update-order-status <order_id> <status> — Updates the status of an order. Store orders only.
  • bricklink.py update-payment-status <order_id> <payment_status> — Updates the payment status of an order. Store orders only.
  • bricklink.py send-drive-thru <order_id> [--mail-me] — Sends a "Drive Thru" email for an order.
  • bricklink.py post-feedback --order-id N --rating 0|1|2 [--comment ...] - Posts new feedback for an order.
  • bricklink.py reply-feedback <feedback_id> --reply "..." - Replies to feedback you received.
  • bricklink.py create-inventory [--item-type ... --item-no ... --color-id N --quantity N --unit-price ... --new-or-used N|U ...] - Creates a single inventory lot from flags.
  • bricklink.py create-inventory --file batch.json - Creates multiple inventory lots from a validated JSON file (workspace or /tmp only).
  • bricklink.py update-inventory <inventory_id> [--quantity N --unit-price ... --new-or-used N|U --remarks ...] - Updates an inventory lot.
  • bricklink.py delete-inventory <inventory_id> - 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).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.62%
按下载量换算26,099

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills