baselinker-webhooks

A guide for receiving BaseLinker notifications, where BaseLinker (now Base.com) is a Polish platform for managing online orders, warehouses, marketplaces, and stores. Its callbacks use HTTP HEAD requests with data in the URL query string.

In plain words
What is it for?
Use it to build order or warehouse callback receivers, read query parameters such as order IDs and states, and convert their string values to the needed types.
Why use it?
It highlights the unusual delivery format: there is no request body and no signature, so a normal POST webhook handler will not work.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/hookdeck/webhook-skills/baselinker-webhooks
Any agent
npx skills add hookdeck/webhook-skills --skill baselinker-webhooks
Clone the repo
git clone --depth 1 https://github.com/hookdeck/webhook-skills

Made for: Claude Code, Codex.

Per session 131 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,145 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00131 $0.03145
Opus 5 $0.00066 $0.01572
Sonnet 5 $0.00026 $0.00629
Haiku 4.5 $0.00013 $0.00314

Measured 2d ago against content hash 95dc3a237ad5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

baselinker-webhooks scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (examples/express/src/index.js, examples/express/test/webhook.test.js, examples/fastapi/main.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://api.baselinker.com/connector.php \
skills/baselinker-webhooks/SKILL.md · 243 lines

How it starts

The opening of the file, as written. The whole thing — 243 lines — stays where its author put it; the contents beside it link to each section on GitHub.

BaseLinker Webhooks

BaseLinker (rebranded Base.com) is a Polish multichannel e-commerce platform — order management, warehouse/inventory, and integrations with marketplaces, stores and couriers.

This is not a normal webhook source. Three things make BaseLinker unlike every other provider in this repo, and all three must be reflected in your handler:

  1. The transport is HTTP HEAD, not POST. A HEAD request has no body by definition — reading req.body / await request.json() yields nothing or throws.
  2. The entire payload is in the query string. Read it from the parsed query params. Query values are always strings — coerce numerics explicitly.
  3. There is no signature verification. None. No HMAC, no signature header, no timestamp/replay check, no shared secret, no handshake or challenge step.

BaseLinker also publishes no webhook documentation at all. Its public API (api.baselinker.com, ~195 methods over connector.php) is strictly request/response, with change tracking done by polling (getJournalList, getOrderReturnJournalList, getInventoryProductLogs). Neither the English nor the Polish help centre documents an outbound webhook. Everything below about the wire format is stated as observed, not documented — see references/overview.md for exactly what was observed and what was not.

When to Use This Skill

  • How do I receive BaseLinker (Base.com) webhooks?
  • Why is my BaseLinker webhook body empty / why does req.body have nothing in it?
  • How do I handle an HTTP HEAD webhook in Express, Next.js, or FastAPI?
  • How do I read order_id and state from a BaseLinker callback?
  • How do I verify a BaseLinker webhook signature? (You cannot — there is none.)
  • Is X-BLToken a webhook signature? (No — it is the outbound API request header.)
  • How do I track BaseLinker order changes reliably? (Poll getJournalList.)

Verification (core): there is none

BaseLinker provides no cryptographic authentication for these callbacks. There is nothing to verify with, so do not write an HMAC verifier, a signature header check, a timestamp/replay window, or a shared-secret comparison against something BaseLinker sends — none of those inputs exist. Inventing one produces a handler that silently rejects (or silently pretends to check) every delivery.

Read the full file on GitHub · 243 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 243 lines · 131 tokens per session scan A 95dc3a237ad5

Subscribe to this mod's changes

baselinker-webhooks is a skill published in the GitHub repository hookdeck/webhook-skills (84 stars, last pushed 5d ago), licensed MIT. It adds 131 tokens to every session and 3,145 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

wiki

Rebuild a flow-first project wiki using the mimirs wiki MCP tool. Use when the user asks to generate, rebuild, refresh, or write the wiki for a codebase.

TheWinci/mimirs · 38 tokens

scout

Research the web for solutions, competitors, alternatives, or prior art for a decision facing this project — then store the findings in project memory so they survive the session. Use when choosing a library or approach, comparing tools, checking what others do, or evaluating whether to build vs adopt.

TheWinci/mimirs · 60 tokens

plan

Design an implementation plan before writing code — where the change lands, what it will touch, what could break, and the steps in order. Use when asked to plan a feature, scope a change, or figure out how to approach an edit before making it. To assess a change that already exists (a diff, refactor, or rename), use…

TheWinci/mimirs · 75 tokens

research

Answer a hard, open-ended question about how the project works or is built by synthesizing every source — code, structure, git history, prior decisions, discussion, caveats — and verifying each claim against the source. Use for deep cross-cutting questions that span more than one area. Narrower siblings — a single…

TheWinci/mimirs · 88 tokens

explore

Build an accurate mental model of an unfamiliar codebase, feature, or area before changing it — where it lives, how it connects, what it does, and why. Use when asked how something works, where something is, when onboarding to a repo, or before editing code you don't know. For a cross-cutting question that needs…

TheWinci/mimirs · 79 tokens

handoff

Wrap up a work session so the next session (or another agent) can pick up cleanly — what was done, what's in flight, what to watch out for. Use when ending a session, switching tasks, or asked to hand off, wrap up, or save state for later.

TheWinci/mimirs · 61 tokens