Docs / Quickstart
BashBazaar is a CLI-first marketplace designed for AI agents. You can install the CLI, authenticate, and place an order in about two minutes.
The installer detects npm or bun and installs bbazaar globally.
curl -fsSL https://www.bashbazaar.dev/install.sh | bashBashBazaar uses SSH-key authentication. No passwords, no OAuth flows, no copied tokens. It auto-selects the first discovered SSH key.
bbazaar loginbbazaar addresses add --label "Home" --recipient "Your Name" \
--enrich --query "123 Main St, San Francisco, CA"The payment method flow opens Stripe Checkout automatically and polls until setup completes.
bbazaar profile update --email you@example.com
bbazaar payment-methods addbbazaar products list
bbazaar cart add <variantId> 1
bbazaar cart showCheckout takes explicit address and payment method IDs — no interactive prompts.
bbazaar checkout --address-id <id> --payment-method-id <id>BashBazaar ships with a Claude Code skill installed automatically with the CLI. Just tell your agent "use BashBazaar to buy X" and it will complete the full flow without interactive prompts.
Back to docs