Adjust inventory
Skill skuio/sku-skills/dist/claude/inventory/adjust-inventory
Open-source e-commerce agent skills for the SKU.io API — authored once, generated for Claude, OpenAI, and Gemini.
npx -y skills add skuio/sku-skills --skill adjust-inventoryAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 27 days oldThe repository was created 27 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Adjust the on-hand quantity of a product at a warehouse in SKU.io — an increase, a decrease, or a set-to-value. Use this for stock takes, corrections, damage/shrinkage write-offs, or found stock. Resolve the product with find-product first so the adjustment targets the right product and warehouse.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.2 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it
Adjust Inventory
Use this skill to change the on-hand quantity of a product at a warehouse — a stock take
correction, a write-off for damage/shrinkage, or booking in found stock. It maps to
POST /api/inventory-adjustments (scope inventory:write; also requires the inventory.adjust
permission on the token's user).
Choose the adjustment type
| Intent | adjustment_type | quantity means |
|---|---|---|
| Add stock (found, returned to stock, receipt correction) | increase | how many to add |
| Remove stock (damage, shrinkage, write-off) | decrease | how many to remove |
| Reconcile to a counted figure (stock take) | set | the new on-hand total |
Prefer set when you have a physically counted number — it's unambiguous and doesn't require you
to compute the delta. Use increase/decrease when you know the change, not the total.
Before you post
- Resolve the product with find-product to get
product_id. - Know the warehouse — you need a
warehouse_id. If the account has multiple warehouses and you weren't told which, ask; don't guess. - Cost for increases — if you're increasing stock for a product that has no average cost yet,
include
unit_cost, or the request will be rejected. Decreases don't need a cost.
Request
curl -sS -X POST "https://$SKU_TENANT.sku.io/api/inventory-adjustments" \
-H "Authorization: Bearer $SKU_PAT" \
-H "Content-Type: application/json" -H "Accept: application/json" \
-d '{
"adjustment_date": "2026-07-09",
"product_id": 1567,
"warehouse_id": 3,
"adjustment_type": "set",
"quantity": 240,
"notes": "Q3 stock take — counted 240 on shelf A2"
}'
Handle the response
200/201→ the adjustment was recorded; on-hand is updated.422→ validation failed. Common causes: zeroquantity(not allowed), missingunit_coston a first-time increase, or aproduct_id/warehouse_idthat doesn't exist. Read theerrorsmap and fix the named field. Seeshared/errors.md.403→ the token lacksinventory:write, or the user lacks theinventory.adjustpermission.
Guardrails
- Adjustments move real stock and post cost — confirm product, warehouse, type, and quantity
before sending, especially for
set(it overwrites the on-hand total). - Always include
noteswith the reason — adjustments are audited. - Not idempotent: a blind retry after a timeout can double-apply. On an ambiguous failure, check current on-hand before re-posting.
API operations
| Method | Path | What it does |
|---|---|---|
POST | /api/inventory-adjustments | Create an inventory adjustment (increase, decrease, or set) for a product at a warehouse. |
Authentication
Every request authenticates with a SKU.io Personal Access Token sent as a Bearer token:
Authorization: Bearer <YOUR_SKU_PAT>
- Base URL:
https://{tenant}.sku.io(replace{tenant}with your account subdomain) - Required scopes:
inventory:write,products:read
Mint a token under Settings → Developer → Personal Access Tokens in the SKU.io web app.
See shared/authentication.md for the full flow.
Improve this skill
Did this skill fall short—an unclear step, a wrong endpoint, or something it couldn't finish? Don't just work around it: capture what was off and open a pull request so the next agent does better.
- Repo: https://github.com/skuio/sku-skills
- Edit the canonical skill under
skills/<domain>/<name>/(not this generated file), then runnpm run buildand open a PR. External contributors: fork the repo and PR from the fork. - The full agent workflow is in
AGENTS.md.
Your agent can do this end to end. The library gets better every time someone sends a fix.