Jump to related tools in the same category or review the original source on GitHub.

AI & LLMs @johnmcgucki Updated 7/18/2026 1,522 downloads 0 stars Security: Pass

Picqer Fulfillment OpenClaw Plugin & Skill | ClawHub

Looking to integrate Picqer Fulfillment into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate ai & llms tasks instantly, without having to write custom tools from scratch.

What this skill does

# FutureFulfillment Picqer Dashboard v2 JSON-only API for dashboard data. No markdown responses. ## Commands All commands return JSON. No chat explanations. ### `dashboard.fetch` Returns complete DashboardData object with KPIs, picklists, stock, and revenue. **Input:** `{ "command": "dashboard.fetch", "filters": { "dateFrom": "2024-01-01", "dateTo": "2024-01-31", "picker": "", "client": "" } }` ### `picklists.fetch` Returns only picklists data (open, closed, picker stats). **Input:** `{ "command": "picklists.fetch", "filters": {} }` ### `stock.fetch` Returns stock movements with slow/fast mover categorization. **Input:** `{ "command": "stock.fetch", "filters": {} }` ### `revenue.fetch` Returns revenue per client for sell-stock clients. **Input:** `{ "command": "revenue.fetch", "filters": {} }` ## Response Format Always returns JSON. Example success: ```json { "kpis": { "openPicklists": 42, "closedPicklists": 128, ... }, "picklists": { "open": [...], "closed": [...], "pickerStats": [...] }, "stock": { "rows": [...] }, "revenue": { "perClient": [...] }, "filtersUsed": { ... } } ``` Example error: ```json { "error": "Picqer API not configured" } ``` ## Security - API key only in local .env file - No credentials in OpenClaw config - Access via Tailscale only

Install

ClawHub CLI
openclaw skills install @johnmcgucki/picqer-fulfillment
Node.js (npx)
npx clawhub@latest install picqer-fulfillment

Full SKILL.md

Open original

SKILL.md content below is scrollable.

FutureFulfillment Picqer Dashboard v2

JSON-only API for dashboard data. No markdown responses.

Commands

All commands return JSON. No chat explanations.

dashboard.fetch

Returns complete DashboardData object with KPIs, picklists, stock, and revenue.

Input: { "command": "dashboard.fetch", "filters": { "dateFrom": "2024-01-01", "dateTo": "2024-01-31", "picker": "", "client": "" } }

picklists.fetch

Returns only picklists data (open, closed, picker stats).

Input: { "command": "picklists.fetch", "filters": {} }

stock.fetch

Returns stock movements with slow/fast mover categorization.

Input: { "command": "stock.fetch", "filters": {} }

revenue.fetch

Returns revenue per client for sell-stock clients.

Input: { "command": "revenue.fetch", "filters": {} }

Response Format

Always returns JSON. Example success:

{
  "kpis": { "openPicklists": 42, "closedPicklists": 128, ... },
  "picklists": { "open": [...], "closed": [...], "pickerStats": [...] },
  "stock": { "rows": [...] },
  "revenue": { "perClient": [...] },
  "filtersUsed": { ... }
}

Example error:

{ "error": "Picqer API not configured" }

Security

  • API key only in local .env file
  • No credentials in OpenClaw config
  • Access via Tailscale only
ClawHub Registry URL: https://clawhub.ai/johnmcgucki/skills/picqer-fulfillment

Related skills

If this matches your use case, these are close alternatives in the same category.