Install
openclaw skills install ordersTrack orders locally. Use when creating orders, checking status, updating quantities, canceling, or generating sales reports.
openclaw skills install ordersCreate, track, update, cancel, and report on orders.
Create a new order.
bash scripts/script.sh create <customer> <item> <quantity> <unit_price> [--note <text>]
List all orders or filter by status.
bash scripts/script.sh list [--status pending|shipped|delivered|cancelled] [--format table|json|csv]
Query the status of a specific order.
bash scripts/script.sh status <order_id>
Update an existing order (status, quantity, or note).
bash scripts/script.sh update <order_id> [--status <new_status>] [--quantity <num>] [--note <text>]
Cancel an order by ID.
bash scripts/script.sh cancel <order_id> [--reason <text>]
Generate a summary report of all orders.
bash scripts/script.sh report [--period today|week|month|all] [--format table|json]
All commands print to stdout. Order data is stored in ~/.orders/orders.json. Order IDs are auto-generated. Use --format json for machine-readable output where supported.
Questions or suggestions? → https://bytesagain.com/feedback/
Powered by BytesAgain | bytesagain.com