> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# iCommerce CLI Workflows

> End-to-end workflows built with the CLI and MCP tools.

# iCommerce CLI Workflows

Use the CLI to execute safe, repeatable workflows with explicit write intent.

## Order Fulfillment

1. Inspect pending orders
2. Confirm address and inventory
3. Ship the order with tracking

```bash theme={null}
stateset "show me pending orders"
stateset "show order #12345"
stateset --apply "ship order #12345 with tracking FEDEX123"
```

## Returns Processing

1. Find eligible returns
2. Approve or reject
3. Issue refund

```bash theme={null}
stateset "list returns awaiting review"
stateset --apply "approve return RMA-1001"
stateset --apply "refund return RMA-1001 for $29.99"
```

## Inventory Adjustment

```bash theme={null}
stateset --apply "adjust inventory for sku WIDGET-001 by -5 at warehouse LA"
```

## Related Documentation

* [Examples](/stateset-icommerce/examples)
* [Order Lifecycle](/stateset-icommerce-order-lifecycle)
