Install
openclaw skills install cin7-inventoryCin7 Core inventory management -- products, stock, orders, purchases, customers, and suppliers via bash scripts.
openclaw skills install cin7-inventoryManage Cin7 Core inventory via bash scripts. All commands run from the skill directory.
CIN7_ACCOUNT_ID — your Cin7 Core account IDCIN7_APP_KEY — your Cin7 Core application keybash scripts/get-products.sh
bash scripts/get-products.sh --search "widget" --page 2
bash scripts/get-product.sh --id "product-id"
bash scripts/get-stock.sh
bash scripts/get-stock.sh --product-id "product-id"
bash scripts/get-stock.sh --page 2
bash scripts/stock-adjustment.sh --data '{"Lines":[{"ProductID":"id","Location":"Main Warehouse","Quantity":5}]}'
bash scripts/stock-transfer.sh --data '{"Lines":[{"ProductID":"id","From":"Warehouse A","To":"Warehouse B","Quantity":10}]}'
bash scripts/list-orders.sh
bash scripts/list-orders.sh --status "COMPLETED" --page 1
bash scripts/get-order.sh --id "order-id"
bash scripts/create-order.sh --data '{"Customer":"John Smith","Lines":[{"ProductID":"id","Quantity":2}]}'
bash scripts/update-order.sh --id "order-id" --data '{"Status":"COMPLETED"}'
bash scripts/sales-report.sh --from "2026-01-01" --to "2026-03-07"
bash scripts/get-purchases.sh
bash scripts/get-purchases.sh --status "ORDERED" --page 1
bash scripts/create-purchase.sh --data '{"Supplier":"Acme Corp","Lines":[{"ProductID":"id","Quantity":100}]}'
bash scripts/get-customers.sh
bash scripts/get-customers.sh --search "John"
bash scripts/get-suppliers.sh
bash scripts/get-suppliers.sh --search "Acme"