Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

printful-management打印管理

Agent Skill

printful-management 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,420

周安装

58

GitHub Stars

公开资料未说明

下载量

455
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install printful-management

简介

Printful Management通过私有API管理Printful电商店铺,支持库存与订单查询。

  • 适用于代发货商家监控供应链状态或批量处理订单流转。
  • 输入API密钥与商店ID后,可获取产品信息、物流状态与结算明细。
  • 必须妥善保管API密钥,避免泄露导致账户安全风险。
  • 操作记录将被Printful平台审计,频繁调用可能触发速率限制。

SKILL.md

name
printful-management
description
Manage a Printful account through the Printful REST API using a private API token. Use when the user wants to inspect or manage Printful stores, connected-store sync products, manual/API-store products, variants, orders, product templates, file library items, shipping rates, webhooks, mockups, warehouse products, tax endpoints, approval sheets, reports, or exports; when building a local Printful integration; or when converting seller requests like "list my Printful items", "show my stores", "export my products to CSV", "update this synced variant", "create a mockup task", or "configure Printful webhooks" into safe API calls.

Printful Management

Use this skill to work with a user's Printful account via API token instead of brittle browser login.

Quick start

  1. Get a Printful private token from the user.
  2. Prefer storing it in the current shell as PRINTFUL_API_KEY instead of hardcoding it into files.
  3. Use scripts/printful_api.py for live calls.
  4. Start with safe read calls:

- stores - sync-products for connected-platform stores like Etsy - manual-products for Manual Order / API stores - orders

  1. Before write operations, summarize the exact mutation and wait for confirmation unless the user already clearly asked for the change.

Core workflow

1. Identify the seller task

Classify the request into one of these buckets:

  • Stores: inspect stores, get store IDs
  • Connected-store products: list sync products or variants for Etsy and similar platform-connected stores
  • Manual/API-store products: create or manage products for Manual Order / API stores
  • Orders: list orders, inspect one order, create draft orders, confirm fulfillment
  • Catalog: inspect Printful catalog products, variants, categories, and size guides before creating store products
  • Files / mockups: upload artwork, inspect file library, generate mockups
  • Webhooks: inspect or configure webhook delivery
  • Shipping / tax: quote shipping, inspect tax-country support, calculate tax rates
  • Reporting / warehouse / approvals: pull stats, warehouse product data, or approval sheet actions

If the request is vague, ask one short clarifying question.

2. Start read-only

Prefer these discovery calls first:

python scripts/printful_api.py stores
python scripts/printful_api.py sync-products --store-id <id>
python scripts/printful_api.py orders --store-id <id>

If sync-products fails with a Manual/API-store style error, switch to:

python scripts/printful_api.py manual-products --store-id <id>

These usually reveal the IDs needed for later write calls.

3. Handle auth safely

Prefer ephemeral auth in the shell:

$env:PRINTFUL_API_KEY = 'pf_xxx'

The helper script also accepts --api-key, but environment variables are better because they reduce accidental logging and file leakage.

4. Use the helper script

scripts/printful_api.py wraps a broad set of Printful endpoints and also supports arbitrary API requests.

Common reads:

python scripts/printful_api.py scopes
python scripts/printful_api.py stores
python scripts/printful_api.py store --store-id 12345
python scripts/printful_api.py sync-products --store-id 12345 --limit 100
python scripts/printful_api.py sync-product --store-id 12345 --product-id 67890
python scripts/printful_api.py manual-products --store-id 12345 --limit 100
python scripts/printful_api.py orders --store-id 12345 --limit 50
python scripts/printful_api.py order --store-id 12345 --order-id 111
python scripts/printful_api.py catalog-products --limit 20
python scripts/printful_api.py catalog-product --product-id 71
python scripts/printful_api.py catalog-variant --variant-id 4011
python scripts/printful_api.py categories
python scripts/printful_api.py templates --store-id 12345
python scripts/printful_api.py webhooks --store-id 12345
python scripts/printful_api.py statistics --store-id 12345
python scripts/printful_api.py export-products --store-id 12345 --format markdown --output-file report.md
python scripts/printful_api.py export-products --store-id 12345 --format csv --output-file products.csv

Common writes:

python scripts/printful_api.py create-manual-product --store-id 12345 --body-file product.json
python scripts/printful_api.py update-sync-variant --store-id 12345 --variant-id 999 --body-file variant.json
python scripts/printful_api.py create-order --store-id 12345 --body-file order.json
python scripts/printful_api.py confirm-order --store-id 12345 --order-id 111
python scripts/printful_api.py add-file --store-id 12345 --body-file file.json
python scripts/printful_api.py set-webhooks --store-id 12345 --body-file webhook.json
python scripts/printful_api.py create-mockup-task --store-id 12345 --body-file mockup.json

Raw requests:

python scripts/printful_api.py raw GET /stores
python scripts/printful_api.py raw GET /sync/products?limit=10 --store-id 12345
python scripts/printful_api.py raw POST /webhooks --store-id 12345 --body-file webhook.json

Notes:

  • The script uses the modern X-PF-Store-ID header for store context.
  • Responses are pretty-printed JSON.
  • --output file.json also saves the response to disk.
  • export-products can generate markdown, CSV, or JSON summaries for store products.
  • Non-2xx responses return a non-zero exit code.

Mutation rules

For create/update/delete operations:

  1. Confirm the target store, product, variant, order, or template ID.
  2. Show the exact endpoint family and payload in plain language.
  3. Mention that the change affects live Printful data.
  4. Prefer draft or test-safe operations first when available.
  5. Respect rate limits; Printful docs indicate a general limit of 120 API calls per minute.

Common endpoint map

Use this quick map before reaching for raw mode:

  • Stores

- GET /stores - GET /stores/{id}

  • Connected-platform sync products

- GET /sync/products - GET /sync/products/{id} - GET /sync/variants/{id} - PUT /sync/variants/{id} - DELETE /sync/variants/{id}

  • Manual/API-store products

- GET /store/products - GET /store/products/{id} - POST /store/products - PUT /store/products/{id} - DELETE /store/products/{id} - GET /store/variants/{id} - POST /store/variants - PUT /store/variants/{id} - DELETE /store/variants/{id}

  • Orders

- GET /orders - GET /orders/{id} - POST /orders - PUT /orders/{id} - DELETE /orders/{id} - POST /orders/{id}/confirm - POST /orders/estimate-costs

  • Catalog

- GET /products - GET /products/{id} - GET /products/variant/{id} - GET /products/{id}/sizes - GET /categories - GET /categories/{id}

  • Product templates

- GET /product-templates - GET /product-templates/{id} - DELETE /product-templates/{id}

  • Webhooks

- GET /webhooks - POST /webhooks - DELETE /webhooks

  • Mockups

- create task - get task result - get printfiles - get layout templates

  • Reports / warehouse / approvals

- statistics - warehouse product list/detail - approval sheet list/actions

If exact payload fields matter, read references/printful-api-notes.md, references/request-examples.md, and, if needed, the official docs page the user supplied.

Response style

When reporting account data back to the user:

  • Summarize first.
  • Then list IDs, names, statuses, and counts.
  • Do not dump giant raw JSON unless the user asked for it.
  • If products are "for sale", distinguish between catalog products and the user’s synced store products.
  • Call out whether the store is likely a connected-platform store or a Manual/API store if that changes which endpoint family applies.

Publication hygiene

If the user wants the skill published to ClawHub:

  1. Ensure no secrets or local dumps live inside the skill folder.
  2. Validate and package the skill.
  3. Use the clawhub CLI to publish the skill folder, not random extra workspace files.
  4. Do not publish until the user explicitly wants the live publish action.

Local reference

Read references/printful-api-notes.md when you need a compact refresher on auth, endpoint-family selection, rate limits, and publication hygiene. Read references/request-examples.md when you need starter JSON bodies for common writes.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.87%
按下载量换算409

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills