@fluentcommerce/ai-skills 0.13.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -12
- package/bin/cli.mjs +29 -2
- package/content/cli/skills/fluent-connect/SKILL.md +57 -2
- package/content/cli/skills/fluent-profile/SKILL.md +35 -5
- package/content/dev/agents/fluent-backend-dev.md +2 -2
- package/content/dev/agents/fluent-dev.md +1 -1
- package/content/dev/skills/fluent-custom-code/SKILL.md +1 -1
- package/content/dev/skills/fluent-data-module-scaffold/SKILL.md +5 -5
- package/content/dev/skills/fluent-event-api/SKILL.md +1 -1
- package/content/dev/skills/{fluent-source-onboard → fluent-module-convert}/SKILL.md +223 -24
- package/content/dev/skills/fluent-module-validate/SKILL.md +6 -6
- package/content/dev/skills/fluent-mystique-builder/SKILL.md +1 -1
- package/content/dev/skills/fluent-mystique-scaffold/SDK_REFERENCE.md +2 -2
- package/content/dev/skills/fluent-mystique-scaffold/SKILL.md +1 -1
- package/content/dev/skills/fluent-mystique-scaffold/TEMPLATES.md +1 -1
- package/content/dev/skills/fluent-retailer-config/SKILL.md +2 -2
- package/content/dev/skills/fluent-scope-plan/SKILL.md +1 -1
- package/content/dev/skills/fluent-transition-api/SKILL.md +1 -1
- package/content/dev/skills/fluent-ui-test/SKILL.md +8 -7
- package/content/dev/skills/fluent-workspace-tree/SKILL.md +2 -2
- package/content/knowledge/index.md +3 -3
- package/content/knowledge/platform/module-structure.md +5 -5
- package/content/knowledge/platform/mystique-routing.md +6 -3
- package/content/knowledge/platform/permissions-and-contexts.md +2 -2
- package/content/knowledge/platform/rule-test-patterns.md +1 -1
- package/docs/01-first-session.md +175 -0
- package/docs/02-prompt-guide.md +246 -0
- package/docs/03-use-cases.md +1179 -0
- package/docs/04-onboarding-plan.md +355 -0
- package/docs/05-getting-started.md +262 -0
- package/docs/06-dev-workflow.md +1040 -0
- package/docs/INDEX.md +40 -0
- package/docs/agents-and-skills-guide.md +199 -0
- package/docs/capability-map.md +165 -0
- package/docs/chrome-devtools-mcp-reference.md +400 -0
- package/docs/fluent-ai-skills-reference.md +1351 -0
- package/docs/manifest-safety.md +79 -0
- package/docs/mcp-servers.md +209 -0
- package/docs/workflow-reference.md +167 -0
- package/lib/fluent-brand.css +55 -0
- package/metadata.json +7 -6
- package/package.json +12 -3
|
@@ -234,10 +234,10 @@ A single role assignment can carry **multiple contexts** — e.g., one FINANCE_U
|
|
|
234
234
|
User A1 has ADMIN role at RETAILER context for Retailer 1 → can access Retailer 1 data only.
|
|
235
235
|
|
|
236
236
|
**Example 2 — Admin access to multiple retailers:**
|
|
237
|
-
User A2 has ADMIN role at RETAILER context for Retailer 1 AND Retailer 2 → can access both. The context switcher in the UI allows filtering by retailer.
|
|
237
|
+
User A2 has ADMIN role at RETAILER context for Retailer 1 AND Retailer 2 → can access both. The context switcher in the UI allows filtering by retailer. See [mystique-routing.md § Context Switching](mystique-routing.md#context-switching--default-location--retailer-via-url-parameter) for URL parameter deep-linking (`user.retailer.ref`) and localStorage persistence.
|
|
238
238
|
|
|
239
239
|
**Example 3 — Store access to specific locations:**
|
|
240
|
-
User S1 has STORE_ASSISTANT role at AGENT context for Location 1 AND Location 2 under Retailer 1 → can access Retailer 1 data filtered to those two locations. The context switcher filters by retailer-specific data (fulfilments only).
|
|
240
|
+
User S1 has STORE_ASSISTANT role at AGENT context for Location 1 AND Location 2 under Retailer 1 → can access Retailer 1 data filtered to those two locations. The context switcher filters by retailer-specific data (fulfilments only). See [mystique-routing.md § Context Switching](mystique-routing.md#context-switching--default-location--retailer-via-url-parameter) for URL parameter deep-linking (`user.location.ref`) and localStorage persistence.
|
|
241
241
|
|
|
242
242
|
### Decision guide: Setting up a new user
|
|
243
243
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: rule-test-patterns
|
|
3
3
|
description: "Reusable test patterns for Fluent Commerce Rubix backend rules: RuleExecutor, TestExecutor, WorkflowExecutor, Mockito, query mocks, mutation assertions, ApolloUtils, TestUtils API, fixtures, coverage checklist, and POM dependency guidance. Derived from module-core 2.2.1, module-order 2.1.0, and official util-test documentation."
|
|
4
4
|
version: 2.0
|
|
5
|
-
relevant-skills: [fluent-rule-test, fluent-rule-scaffold, fluent-custom-code, fluent-build, fluent-module-scaffold, fluent-
|
|
5
|
+
relevant-skills: [fluent-rule-test, fluent-rule-scaffold, fluent-custom-code, fluent-build, fluent-module-scaffold, fluent-module-convert]
|
|
6
6
|
load: on-demand
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
# Your First Session
|
|
2
|
+
|
|
3
|
+
> 20 minutes to a productive session, with just enough prompts to get confidence.
|
|
4
|
+
> Works with Claude Code, Codex, and Gemini CLI.
|
|
5
|
+
|
|
6
|
+
Use this in order, exactly. Ask the next prompt only after the previous one is done.
|
|
7
|
+
|
|
8
|
+
## 1) First 20 minutes (minimum viable setup)
|
|
9
|
+
|
|
10
|
+
> **`npm` vs `npx`:** `npm install -g` permanently installs a tool. `npx` runs a package without installing. All `@fluentcommerce/ai-skills` commands use `npx`.
|
|
11
|
+
|
|
12
|
+
1. Install and connect your workspace (replace placeholders):
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# Pick your target:
|
|
16
|
+
npx @fluentcommerce/ai-skills install --profile MY_PROFILE # Claude Code (default)
|
|
17
|
+
npx @fluentcommerce/ai-skills install --target codex --profile MY_PROFILE # Codex
|
|
18
|
+
npx @fluentcommerce/ai-skills install --target gemini --profile MY_PROFILE # Gemini CLI
|
|
19
|
+
|
|
20
|
+
# Verify everything is working:
|
|
21
|
+
npx @fluentcommerce/ai-skills doctor
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
2. Connect the workspace to your Fluent account:
|
|
25
|
+
|
|
26
|
+
| In Claude Code | In Codex or Gemini CLI |
|
|
27
|
+
|---|---|
|
|
28
|
+
| `/fluent-connect --profile MY_PROFILE` | `Use the fluent-connect skill to connect this workspace with profile MY_PROFILE.` |
|
|
29
|
+
|
|
30
|
+
3. Confirm what was created:
|
|
31
|
+
|
|
32
|
+
`Show me the workspace tree`
|
|
33
|
+
|
|
34
|
+
If your output is confusing, try:
|
|
35
|
+
|
|
36
|
+
`What folders were created for this account?` and share the reply with your teammate.
|
|
37
|
+
|
|
38
|
+
## 2) Three things newcomers usually ask first
|
|
39
|
+
|
|
40
|
+
### A. “What can I do with this?”
|
|
41
|
+
|
|
42
|
+
Use these read-only prompts first:
|
|
43
|
+
|
|
44
|
+
`What's deployed on this account?`
|
|
45
|
+
- **Triggers:** `fluent-account-snapshot` (read-only, safe)
|
|
46
|
+
- **You get:** workflows, modules, settings, retailers — a full implementation inventory
|
|
47
|
+
- **Artifact:** summary in `accounts/<PROFILE>/analysis/`
|
|
48
|
+
|
|
49
|
+
`How does Home Delivery work end-to-end?`
|
|
50
|
+
- **Triggers:** `fluent-feature-explain` (read-only, safe)
|
|
51
|
+
- **You get:** state machine diagrams, cross-entity sequence diagrams, rules table, settings dependencies
|
|
52
|
+
- **Artifact:** `accounts/<PROFILE>/features/home-delivery/architecture.md`
|
|
53
|
+
|
|
54
|
+
### B. “How do I debug?”
|
|
55
|
+
|
|
56
|
+
`Why is order HD-001 stuck in BOOKED?`
|
|
57
|
+
- **Triggers:** `fluent-trace` (read-only, safe)
|
|
58
|
+
- **You get:** event timeline, which rules fired or failed, root cause, and suggested fix
|
|
59
|
+
- **No artifacts** — output is inline in the conversation
|
|
60
|
+
|
|
61
|
+
### C. “How do I start building?”
|
|
62
|
+
|
|
63
|
+
`Help me define use cases for return orders`
|
|
64
|
+
- **Triggers:** `fluent-use-case-discover` (interactive wizard)
|
|
65
|
+
- **You get:** structured business spec with completeness score
|
|
66
|
+
- **Artifact:** `accounts/<PROFILE>/features/return-order/spec.md`
|
|
67
|
+
|
|
68
|
+
Then, after review:
|
|
69
|
+
|
|
70
|
+
`Plan the return order feature`
|
|
71
|
+
- **Triggers:** `fluent-feature-plan` (presents plan, waits for approval)
|
|
72
|
+
- **You get:** 18-section implementation plan with diagrams, rules inventory, risk assessment
|
|
73
|
+
- **Artifact:** `accounts/<PROFILE>/features/return-order/plan.md`
|
|
74
|
+
|
|
75
|
+
**Wait for approval** after plan review before any change. Say `”approved”` to proceed.
|
|
76
|
+
|
|
77
|
+
## 3) Prompt ladder (don’t memorize anything)
|
|
78
|
+
|
|
79
|
+
Pick one path and follow it:
|
|
80
|
+
|
|
81
|
+
**Path 1: Explore only** (all read-only, safe)
|
|
82
|
+
|
|
83
|
+
| Prompt | Skill triggered |
|
|
84
|
+
|--------|----------------|
|
|
85
|
+
| `Show me what's deployed on this account` | `fluent-account-snapshot` |
|
|
86
|
+
| `Show me the workspace tree` | `fluent-workspace-tree` |
|
|
87
|
+
| `Explain how Home Delivery works end-to-end` | `fluent-feature-explain` |
|
|
88
|
+
| `List all in-progress features` | `fluent-feature-status` |
|
|
89
|
+
|
|
90
|
+
**Path 2: Investigate one issue** (all read-only, safe)
|
|
91
|
+
|
|
92
|
+
| Prompt | Skill triggered |
|
|
93
|
+
|--------|----------------|
|
|
94
|
+
| `Why is order HD-001 stuck in BOOKED?` | `fluent-trace` |
|
|
95
|
+
| `Show me the event timeline for that order` | `fluent-trace` (continued) |
|
|
96
|
+
| `What settings does this flow use?` | `fluent-settings` |
|
|
97
|
+
| `What transitions are allowed for ORDER?` | `fluent-transition-api` |
|
|
98
|
+
|
|
99
|
+
**Path 3: Build one small feature** (creates artifacts, approval required)
|
|
100
|
+
|
|
101
|
+
| Prompt | Skill triggered |
|
|
102
|
+
|--------|----------------|
|
|
103
|
+
| `Help me define use cases for <feature>` | `fluent-use-case-discover` |
|
|
104
|
+
| `Plan the <feature> feature` | `fluent-feature-plan` |
|
|
105
|
+
| `Approved` | Plan gate clears, implementation begins |
|
|
106
|
+
| `Scaffold the module` | `fluent-module-scaffold` |
|
|
107
|
+
| `Build the workflow from the plan` | `fluent-workflow-builder` |
|
|
108
|
+
|
|
109
|
+
Pause after each step to check output before continuing.
|
|
110
|
+
|
|
111
|
+
## 4) Where artifacts land (so you can find them quickly)
|
|
112
|
+
|
|
113
|
+
- `accounts/<PROFILE>/workflows/<RETAILER>/`
|
|
114
|
+
- Downloaded workflow JSONs
|
|
115
|
+
- `workflow-context.json`
|
|
116
|
+
- `accounts/<PROFILE>/features/<slug>/`
|
|
117
|
+
- `spec.md` (requirements)
|
|
118
|
+
- `plan.md` (approved implementation plan)
|
|
119
|
+
- `architecture.md` (feature explain output)
|
|
120
|
+
- `status.json` (current lifecycle state)
|
|
121
|
+
- `accounts/<PROFILE>/SOURCE/backend/`
|
|
122
|
+
- Java/Maven sources the skill reads and writes
|
|
123
|
+
- `accounts/<PROFILE>/analysis/`
|
|
124
|
+
- Persisted reverse-engineering outputs
|
|
125
|
+
- `accounts/<PROFILE>/reports/`
|
|
126
|
+
- Quality gates, pre-deploy checks, and validation outputs
|
|
127
|
+
- `accounts/<PROFILE>/sessions/`
|
|
128
|
+
- Audit trail exports from sessions
|
|
129
|
+
|
|
130
|
+
Use this command-style prompt when you lose track:
|
|
131
|
+
|
|
132
|
+
`What artifacts were created in the last two hours and where?`
|
|
133
|
+
|
|
134
|
+
This avoids rebuilding context from scratch.
|
|
135
|
+
|
|
136
|
+
## 5) What to do when nothing responds
|
|
137
|
+
|
|
138
|
+
1. `npx @fluentcommerce/ai-skills doctor` in the workspace folder
|
|
139
|
+
2. `Show me the installed skill list`
|
|
140
|
+
3. Ask the specific issue: `What failed when I tried to run ...?`
|
|
141
|
+
4. Retry the same first prompt for the task.
|
|
142
|
+
|
|
143
|
+
## 6) Keep it beginner-safe
|
|
144
|
+
|
|
145
|
+
- Start with read-only prompts. No code changes in first 20 minutes.
|
|
146
|
+
- Approve only after the plan is clear.
|
|
147
|
+
- Use explicit nouns in prompts: order ref, workflow name, module name.
|
|
148
|
+
- If a prompt fails, simplify it and retry rather than changing everything.
|
|
149
|
+
|
|
150
|
+
At the end of the day, copy this into team docs:
|
|
151
|
+
|
|
152
|
+
- one example of a successful debug (`why is this order stuck`)
|
|
153
|
+
- one example of a successful feature plan approval
|
|
154
|
+
- one artifact map screenshot from `Show me the workspace tree`
|
|
155
|
+
|
|
156
|
+
That becomes your team memory baseline.
|
|
157
|
+
|
|
158
|
+
## 7) Setting up a second workspace
|
|
159
|
+
|
|
160
|
+
Skills, agents, and platform knowledge install **globally** to `~/.claude/` — once installed, they're available in every workspace. A second workspace only needs MCP config (credentials are per-workspace):
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
mkdir client-b && cd client-b
|
|
164
|
+
git init
|
|
165
|
+
npx @fluentcommerce/ai-skills mcp-setup --profile CLIENT_B_PROFILE
|
|
166
|
+
npx @fluentcommerce/ai-skills doctor # verify everything
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
That's it — `mcp-setup` wires MCP, generates a starter `CLAUDE.md`, and knowledge falls back to the global copy. If you want a full local copy of knowledge and docs too, run `install` instead of `mcp-setup`.
|
|
170
|
+
|
|
171
|
+
## 8) Next reading (after this)
|
|
172
|
+
|
|
173
|
+
- [prompt-guide.md](02-prompt-guide.md) — progressive skill navigator (which of the 60+ skills matter, and when)
|
|
174
|
+
- [Setup Reference & Troubleshooting](05-getting-started.md) — prerequisites, workspace layout, and troubleshooting
|
|
175
|
+
- [onboarding-plan.md](04-onboarding-plan.md) — structured two-week team ramp
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
# Prompt Guide — Navigating 60+ Skills
|
|
2
|
+
|
|
3
|
+
> You have 60+ skills. You don't need to learn them all.
|
|
4
|
+
> This guide organizes them into a progressive path: start with 5, expand as your work demands.
|
|
5
|
+
|
|
6
|
+
> [!TIP]
|
|
7
|
+
> **First time?** Start with [first-session.md](01-first-session.md) — a 20-minute guided walkthrough.
|
|
8
|
+
> **Need full examples?** See [Setup Reference & Troubleshooting](05-getting-started.md).
|
|
9
|
+
> **This doc** answers: "which skills exist, what do they do, and what should I type?"
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## How Prompting Works
|
|
14
|
+
|
|
15
|
+
You describe what you want in plain English. The AI picks the right skill. You don't need to name skills — but you can use `/slash-commands` if you know them.
|
|
16
|
+
|
|
17
|
+
The AI **always asks before changing anything**. You'll see a plan and say `"approved"` before any files are created or anything is deployed.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Level 1 — Your First Session (5 skills)
|
|
22
|
+
|
|
23
|
+
Safe, read-only, instant value. Nothing is changed or created.
|
|
24
|
+
|
|
25
|
+
| Skill | What it does | Try this |
|
|
26
|
+
|-------|-------------|----------|
|
|
27
|
+
| `fluent-connect` | Links workspace to your Fluent account | `/fluent-connect --profile MY_PROFILE` |
|
|
28
|
+
| `fluent-account-snapshot` | Shows what's deployed — workflows, modules, retailers | `"What's deployed on this account?"` |
|
|
29
|
+
| `fluent-feature-explain` | Explains a feature with diagrams and rule inventory | `"Explain how Home Delivery works end-to-end"` |
|
|
30
|
+
| `fluent-trace` | Investigates stuck orders with event timeline and root cause | `"Why is order HD-001 stuck in BOOKED?"` |
|
|
31
|
+
| `fluent-workspace-tree` | Shows annotated directory layout | `"Show me the workspace tree"` |
|
|
32
|
+
|
|
33
|
+
**After this level:** You understand the account, can explain features, and can investigate issues.
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Quick Reference — Common Prompt Chains
|
|
38
|
+
|
|
39
|
+
These are the most common end-to-end workflows. Each row is a complete prompt chain you can follow in order.
|
|
40
|
+
|
|
41
|
+
| I'm building... | Prompt chain (say these in order) | Skills that trigger | What you get |
|
|
42
|
+
|-----------------|----------------------------------|---------------------|-------------|
|
|
43
|
+
| **A new feature (end-to-end)** | "I need to handle return orders" → "Plan the return order feature" → "Approved" → "Build the workflow" → "Scaffold the module" → "Deploy to staging" → "Run E2E test" | `use-case-discover` → `feature-plan` → `workflow-builder` → `module-scaffold` → `workflow-deploy` + `module-deploy` → `e2e-test` | `spec.md`, `plan.md`, workflow JSON, Java classes, module ZIP, test results |
|
|
44
|
+
| **A new workflow** | "Build an ORDER::RETURN workflow" → review plan → "Approved" → "Deploy to staging" | `workflow-builder` → `workflow-deploy` | Workflow JSON in `accounts/<PROFILE>/workflows/` |
|
|
45
|
+
| **A new rule + tests** | "Create a rule called ValidateReturnWindow" → "Generate tests for it" → "Build the module" | `rule-scaffold` → `rule-test` → `build` | Java class, JUnit test, module ZIP |
|
|
46
|
+
| **A UI page** | "Add a returns page to the order manifest" → "Preview it" → "Deploy the manifest" | `mystique-builder` → `mystique-preview` → `settings` | Manifest JSON in `accounts/<PROFILE>/manifests/` |
|
|
47
|
+
| **Debug a stuck order** | "Why is order HD-001 stuck in BOOKED?" → "Show the event timeline" → "Compare runtime vs workflow" | `trace` → `entity-flow-diagnose` | Timeline, root-cause report |
|
|
48
|
+
| **Understand what's deployed** | "What's deployed on this account?" → "Explain how Home Delivery works" → "Map the entire implementation" | `account-snapshot` → `feature-explain` → `implementation-map` | Account summary, feature diagrams, implementation inventory |
|
|
49
|
+
| **Go-live readiness** | "Run pre-deploy checks" → "Run a Ready For Launch assessment" | `pre-deploy-check` → `rfl-assess` | GO/NO-GO report, RFL assessment |
|
|
50
|
+
|
|
51
|
+
All artifacts land under `accounts/<PROFILE>/` in your workspace.
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## Level 2 — Your First Week (add 12 skills)
|
|
56
|
+
|
|
57
|
+
These create or change things — the AI presents a plan and waits for your approval first.
|
|
58
|
+
|
|
59
|
+
### Understand and Plan
|
|
60
|
+
|
|
61
|
+
| Skill | What it does | Try this |
|
|
62
|
+
|-------|-------------|----------|
|
|
63
|
+
| `fluent-use-case-discover` | Gathers requirements through interactive prompts | `"I need to handle return orders"` |
|
|
64
|
+
| `fluent-feature-plan` | Creates an 18-section implementation plan with diagrams | `"Plan the return order feature"` |
|
|
65
|
+
| `fluent-implementation-map` | Maps what's already been built across the workspace | `"Map the entire implementation"` |
|
|
66
|
+
|
|
67
|
+
### Build
|
|
68
|
+
|
|
69
|
+
| Skill | What it does | Try this |
|
|
70
|
+
|-------|-------------|----------|
|
|
71
|
+
| `fluent-workflow-builder` | Creates workflow JSON with statuses, rulesets, and triggers | `"Build an ORDER::RETURN workflow"` |
|
|
72
|
+
| `fluent-rule-scaffold` | Scaffolds Java rule classes with annotations and tests | `"Create a rule called ValidateReturnWindow"` |
|
|
73
|
+
| `fluent-rule-test` | Generates or repairs JUnit 5 tests for existing rules | `"Generate tests for ValidateReturnWindow"` |
|
|
74
|
+
| `fluent-module-scaffold` | Creates Maven project skeleton with pom.xml and module.json | `"Scaffold a module for returns"` |
|
|
75
|
+
| `fluent-build` | Compiles and packages a module into a deployable ZIP | `"Build the returns module"` |
|
|
76
|
+
|
|
77
|
+
### Deploy and Verify
|
|
78
|
+
|
|
79
|
+
| Skill | What it does | Try this |
|
|
80
|
+
|-------|-------------|----------|
|
|
81
|
+
| `fluent-pre-deploy-check` | Runs 35+ quality gates across 9 phases — produces GO/NO-GO report | `"Run pre-deploy checks"` |
|
|
82
|
+
| `fluent-workflow-deploy` | Uploads workflow JSON to target environment | `"Deploy ORDER::RETURN to staging"` |
|
|
83
|
+
| `fluent-module-deploy` | Deploys compiled module to target environment | `"Deploy the returns module to staging"` |
|
|
84
|
+
| `fluent-e2e-test` | Runs end-to-end test with event firing and assertions | `"Run E2E test of the return flow"` |
|
|
85
|
+
|
|
86
|
+
**After this level:** You can plan, build, deploy, and verify features. For prerequisites and troubleshooting, see [Setup Reference](05-getting-started.md).
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## How Routing Works
|
|
91
|
+
|
|
92
|
+
You don't need to know this — the AI picks the right agent automatically. But if you're curious:
|
|
93
|
+
|
|
94
|
+
| Agent | Handles | Example prompts |
|
|
95
|
+
|-------|---------|----------------|
|
|
96
|
+
| `fluent-dev` | Cross-cutting: planning, mapping, status, E2E | "Plan the return feature", "What features are in progress?" |
|
|
97
|
+
| `fluent-backend-dev` | Workflows, rules, modules, events, Java, deploy | "Build a workflow", "Create a rule", "Trace this event" |
|
|
98
|
+
| `fluent-frontend-dev` | Manifests, pages, SDK components, UI testing | "Add a page to the manifest", "Scaffold a component" |
|
|
99
|
+
| `fluent-cli` | CLI profiles, retailers, account setup | "Create a profile", "List retailers" |
|
|
100
|
+
| `fluent-mcp` | MCP servers, GraphQL, events, batch ops | "Send a test event", "Query orders via GraphQL" |
|
|
101
|
+
| `fluent-rfl` | Production readiness audits | "Run an RFL assessment" |
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## Skills by Lifecycle Stage
|
|
106
|
+
|
|
107
|
+
If you're following a structured development process:
|
|
108
|
+
|
|
109
|
+
| Stage | What you're doing | Key skills |
|
|
110
|
+
|-------|------------------|-----------|
|
|
111
|
+
| **Setup** | Connect workspace, configure profiles | `fluent-connect`, `fluent-bootstrap`, `fluent-profile` |
|
|
112
|
+
| **Discover** | Understand what exists | `fluent-account-snapshot`, `fluent-feature-explain`, `fluent-implementation-map` |
|
|
113
|
+
| **Requirements** | Define what to build | `fluent-use-case-discover` |
|
|
114
|
+
| **Plan** | Design the solution | `fluent-feature-plan`, `fluent-scope-plan` |
|
|
115
|
+
| **Build (backend)** | Workflows, rules, modules | `fluent-workflow-builder`, `fluent-rule-scaffold`, `fluent-module-scaffold` |
|
|
116
|
+
| **Build (frontend)** | Manifests, components | `fluent-mystique-builder`, `fluent-mystique-scaffold` |
|
|
117
|
+
| **Validate** | Quality gates | `fluent-pre-deploy-check`, `fluent-module-validate`, `fluent-mystique-assess` |
|
|
118
|
+
| **Deploy** | Push to environment | `fluent-workflow-deploy`, `fluent-module-deploy` |
|
|
119
|
+
| **Test** | Verify behavior | `fluent-e2e-test`, `fluent-ui-test`, `fluent-test-data` |
|
|
120
|
+
| **Diagnose** | Debug failures | `fluent-trace`, `fluent-entity-flow-diagnose`, `fluent-rollback` |
|
|
121
|
+
|
|
122
|
+
---
|
|
123
|
+
|
|
124
|
+
## Level 3 — All Skills by Category
|
|
125
|
+
|
|
126
|
+
Pick what's relevant to your work. Each table is independent — skip categories you don't need.
|
|
127
|
+
|
|
128
|
+
### Backend: Workflows
|
|
129
|
+
|
|
130
|
+
| Skill | What it does | Try this |
|
|
131
|
+
|-------|-------------|----------|
|
|
132
|
+
| `fluent-workflow-analyzer` | Static analysis — orphaned rulesets, trigger conflicts, schema validation | `"Analyze the HD workflow for issues"` |
|
|
133
|
+
| `fluent-workflow` | CLI workflow operations — list, download, compare | `"Download all workflows for MY_RETAILER"` |
|
|
134
|
+
| `fluent-transition-api` | Entity status transitions and allowed actions | `"What transitions are available for ORDER?"` |
|
|
135
|
+
|
|
136
|
+
### Backend: Rules and Modules
|
|
137
|
+
|
|
138
|
+
| Skill | What it does | Try this |
|
|
139
|
+
|-------|-------------|----------|
|
|
140
|
+
| `fluent-custom-code` | Analyzes existing Java rules — explains logic, annotations | `"Explain what SendEventForArticles does"` |
|
|
141
|
+
| `fluent-rule-lookup` | Finds rules by name, annotation, or behavior across deployed modules | `"Find all rules that use @ParamString 'eventName'"` |
|
|
142
|
+
| `fluent-module-validate` | Validates module structure, registrations, dependencies | `"Validate the returns module"` |
|
|
143
|
+
| `fluent-entity-flow-diagnose` | Traces entity flow across multiple workflows | `"Trace the fulfilment lifecycle for HD"` |
|
|
144
|
+
| `fluent-module-convert` | Onboards existing source code into a proper module | `"Onboard this legacy code into a module"` |
|
|
145
|
+
| `fluent-data-module-scaffold` | Creates data-only modules (no Java, just config) | `"Create a data module for reference data"` |
|
|
146
|
+
|
|
147
|
+
### Frontend: Mystique UI
|
|
148
|
+
|
|
149
|
+
| Skill | What it does | Try this |
|
|
150
|
+
|-------|-------------|----------|
|
|
151
|
+
| `fluent-mystique-builder` | Builds or modifies manifest JSON pages | `"Add a returns page to the order manifest"` |
|
|
152
|
+
| `fluent-mystique-scaffold` | Creates new manifest project from scratch | `"Scaffold a manifest for my-returns"` |
|
|
153
|
+
| `fluent-mystique-component` | Scaffolds custom SDK component projects | `"Create a ReturnReasonPicker component"` |
|
|
154
|
+
| `fluent-mystique-assess` | Analyzes and validates manifest structure and correctness | `"Analyze and validate the order manifest"` |
|
|
155
|
+
| `fluent-mystique-diff` | Compares manifest versions | `"Diff the manifest against staging"` |
|
|
156
|
+
| `fluent-mystique-sdk-reference` | SDK API and pattern reference | `"How do I use the fc-table component?"` |
|
|
157
|
+
| `fluent-mystique-preview` | Preview manifest rendering | `"Preview what the returns page looks like"` |
|
|
158
|
+
| `fluent-frontend-build` | Builds frontend artifacts | `"Build the manifest for deployment"` |
|
|
159
|
+
| `fluent-frontend-review` | Reviews frontend code quality | `"Review the returns manifest"` |
|
|
160
|
+
| `fluent-frontend-readme` | Generates frontend documentation | `"Generate README for the manifest project"` |
|
|
161
|
+
| `fluent-ui-test` | UI testing with assertions | `"Test the order detail page"` |
|
|
162
|
+
| `fluent-ui-record` | Records UI interactions for test replay | `"Record a test for the returns form"` |
|
|
163
|
+
|
|
164
|
+
### Operations and CLI
|
|
165
|
+
|
|
166
|
+
| Skill | What it does | Try this |
|
|
167
|
+
|-------|-------------|----------|
|
|
168
|
+
| `fluent-profile` | Manage CLI profiles — create, switch, list | `"Show available profiles"` |
|
|
169
|
+
| `fluent-bootstrap` | Set up new accounts from scratch | `"Bootstrap a new test account"` |
|
|
170
|
+
| `fluent-settings` | Query and manage platform settings | `"Audit settings for ORDER::HD"` |
|
|
171
|
+
| `fluent-retailer-config` | Retailer and location configuration | `"Show retailer configuration"` |
|
|
172
|
+
| `fluent-cli-retailer` | CLI retailer operations | `"List retailers on this account"` |
|
|
173
|
+
| `fluent-connection-analysis` | Check connector and webhook health | `"Are all connectors working?"` |
|
|
174
|
+
| `fluent-rollback` | Roll back a failed deployment | `"Roll back ORDER::HD to previous version"` |
|
|
175
|
+
|
|
176
|
+
### Monitoring, Events, and Quality
|
|
177
|
+
|
|
178
|
+
| Skill | What it does | Try this |
|
|
179
|
+
|-------|-------------|----------|
|
|
180
|
+
| `fluent-system-monitoring` | Event processing metrics from Prometheus | `"Show event failure rates"` |
|
|
181
|
+
| `fluent-event-api` | Send and inspect events | `"Send a test event to order HD-001"` |
|
|
182
|
+
| `fluent-rfl-assess` | Ready For Launch production readiness audit | `"Run a Ready For Launch assessment"` |
|
|
183
|
+
| `fluent-job-batch` | Batch data ingestion jobs | `"Batch ingest inventory from CSV"` |
|
|
184
|
+
| `fluent-test-data` | Generate test data and fixtures | `"Create test orders for the HD flow"` |
|
|
185
|
+
|
|
186
|
+
### Data and Sourcing
|
|
187
|
+
|
|
188
|
+
| Skill | What it does | Try this |
|
|
189
|
+
|-------|-------------|----------|
|
|
190
|
+
| `fluent-sourcing` | Responsive Sourcing Framework reference — profiles, strategies, scoring | `"How does sourcing work for HD fulfilment?"` |
|
|
191
|
+
| `fluent-inventory-catalog` | Inventory and catalog setup | `"Set up inventory for Click & Collect"` |
|
|
192
|
+
| `fluent-knowledge-init` | Initialize workspace knowledge docs | `"Set up knowledge docs for this workspace"` |
|
|
193
|
+
|
|
194
|
+
### Feature Lifecycle and Tracking
|
|
195
|
+
|
|
196
|
+
| Skill | What it does | Try this |
|
|
197
|
+
|-------|-------------|----------|
|
|
198
|
+
| `fluent-feature-status` | Check feature progress across workspace | `"What features are in progress?"` |
|
|
199
|
+
| `fluent-scope-plan` | Phases and scope decomposition for large features | `"Decompose the returns spec into phases"` |
|
|
200
|
+
| `fluent-goal` | Goal-oriented task tracking with deadlines | `"My goal is to ship returns by Friday"` |
|
|
201
|
+
| `fluent-session` | Session tracking and resume across conversations | `"What did we do in the last session?"` |
|
|
202
|
+
| `fluent-archive` | Archive completed features | `"Archive the returns feature"` |
|
|
203
|
+
| `fluent-skill-observability` | Skill tracing, routing reports, and feedback | `"Which skill handled my last prompt?"` |
|
|
204
|
+
|
|
205
|
+
### MCP and Reference
|
|
206
|
+
|
|
207
|
+
| Skill | What it does | Try this |
|
|
208
|
+
|-------|-------------|----------|
|
|
209
|
+
| `fluent-mcp-tools` | MCP extension tool reference (55+ tools) | `"What MCP tools are available for events?"` |
|
|
210
|
+
| `fluent-mcp-core` | Official CLI MCP server reference | `"How do I use the official MCP server?"` |
|
|
211
|
+
| `fluent-cli-reference` | CLI command reference and skill index | `"Show me the CLI command for workflow download"` |
|
|
212
|
+
| `fluent-cli-mcp-cicd` | MCP and CI/CD pipeline setup | `"Set up MCP for CI/CD"` |
|
|
213
|
+
|
|
214
|
+
---
|
|
215
|
+
|
|
216
|
+
## Tips for Effective Prompting
|
|
217
|
+
|
|
218
|
+
**Be specific about what you want, not which skill to use:**
|
|
219
|
+
- Good: `"Why is order HD-001 stuck in BOOKED?"`
|
|
220
|
+
- Less useful: `"Run the trace skill"`
|
|
221
|
+
|
|
222
|
+
**Chain prompts to go deeper:**
|
|
223
|
+
```
|
|
224
|
+
"Explain how Home Delivery works" ← start broad
|
|
225
|
+
"What rules handle the BOOKED status?" ← zoom in
|
|
226
|
+
"Show me the code for SendEventForArticles" ← inspect
|
|
227
|
+
"Are there tests for that rule?" ← verify
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
**Use the approval gate — it's your safety net:**
|
|
231
|
+
- When the AI shows a plan, ask questions before approving
|
|
232
|
+
- `"What are the risks?"` or `"Change the workflow name to X"` before `"approved"`
|
|
233
|
+
|
|
234
|
+
**Resume across sessions:**
|
|
235
|
+
- `"Continue working on return orders"` — the AI reads `status.json` and picks up where you left off
|
|
236
|
+
|
|
237
|
+
---
|
|
238
|
+
|
|
239
|
+
## How This Relates to Other Docs
|
|
240
|
+
|
|
241
|
+
| Doc | Purpose | When to use it |
|
|
242
|
+
|-----|---------|---------------|
|
|
243
|
+
| **This guide** | Which skills exist, what to type, routing, and lifecycle | When you're wondering "can AI do X?" |
|
|
244
|
+
| [first-session.md](01-first-session.md) | 20-minute guided first session | Your very first time |
|
|
245
|
+
| [Setup Reference](05-getting-started.md) | Prerequisites, workspace layout, troubleshooting | When you need setup details or hit errors |
|
|
246
|
+
| [use-cases.md](03-use-cases.md) | 21 detailed scenario walkthroughs | When you need a specific scenario end-to-end |
|