Fluent Commerce AI Skills
Package
Changed on:
26 Mar 2026
| Publisher: | Fluent Commerce |
|---|---|
| Website: | Fluent Commerce |
Download Package
Version History
Overview
Teach your AI assistant to work with Fluent Commerce (distributed order management) — analyze workflows, scaffold rules, debug events, build manifests, and deploy — all through natural language. This package injects Fluent-specific domain knowledge so Claude Code, and in the skills-first path Codex, can understand workflows, events, rules, GraphQL patterns, CLI commands, and deployment procedures.Detailed Technical Description
[!CAUTION] 🧪 EXPERIMENTAL — LABS PROJECTThis package is NOT production-ready. It is an internal labs experiment under active development.- No stability guarantees — skills, CLI options, MCP tool contracts, and config may change or break between any release
- No support — this is not an officially supported Fluent Commerce product
- No warranty — provided as-is for experimentation and internal evaluation only
- Do NOT use in production without thorough review and explicit sign-off from your team
`@0.9.1`) if you depend on current behavior.Quick Start
Refer to the package page in the download link for more detailed documentation.1# 1. Install prerequisites (skip any you already have)
2# Node.js 18+: https://nodejs.org
3# Fluent CLI: https://docs.fluentcommerce.com/building-blocks/fluent-cli-package
4# Claude Code OR Codex — at least one is required:
5npm install -g @anthropic-ai/claude-code # Claude Code (primary)
6# npx codex # Codex (alternative — see note below)
7
8# 2. Create a Fluent CLI profile (get values from your Fluent account team)
9fluent profile create MY_PROFILE \
10 --id my-account-id \
11 --username admin@example.com \
12 --password "your-password" \
13 --client-secret "your-client-secret" \
14 --base-url "https://my-account-id.sandbox.api.fluentcommerce.com"
15
16# 3. Create workspace, install skills + MCP
17mkdir my-workspace && cd my-workspace
18git init
19# If you know the retailer ref already, add: --profile-retailer MY_RETAILER_REF
20# If you only know the trading/display name, omit that flag and let /fluent-connect pick the retailer interactively
21npx @fluentcommerce/ai-skills install --profile MY_PROFILE
22
23# 4. Verify everything is set up correctly
24npx @fluentcommerce/ai-skills doctor
25
26# 5. Launch Claude Code (MUST be in the workspace folder)
27claude