@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
package/docs/INDEX.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Fluent AI Skills — Documentation
|
|
2
|
+
|
|
3
|
+
> [!CAUTION]
|
|
4
|
+
> **EXPERIMENTAL - LABS PROJECT**
|
|
5
|
+
>
|
|
6
|
+
> This package is not production-ready. No stability guarantees, no support, no warranty. See `../README.md` for the full disclaimer.
|
|
7
|
+
|
|
8
|
+
## Reading Order
|
|
9
|
+
|
|
10
|
+
Follow the numbered path. Most people only need docs 1 and 2.
|
|
11
|
+
|
|
12
|
+
| # | Doc | Time | What you get |
|
|
13
|
+
|---|-----|------|-------------|
|
|
14
|
+
| **1** | [Your First Session](01-first-session.md) | 20 min | Installed, connected, first results — the minimum to be productive |
|
|
15
|
+
| **2** | [Prompt Guide](02-prompt-guide.md) | 10 min | "I'm building X, what do I type?" — progressive skill navigator with prompt chains |
|
|
16
|
+
| **3** | [Use Cases](03-use-cases.md) | Browse | 21 real scenarios walked through end-to-end with exact prompts and expected output |
|
|
17
|
+
| **4** | [Onboarding Plan](04-onboarding-plan.md) | Reference | Structured 2-week team ramp (skip if solo) |
|
|
18
|
+
|
|
19
|
+
**Hitting errors?** Jump to [Setup Reference & Troubleshooting](05-getting-started.md) — prerequisites, workspace layout, and fixes.
|
|
20
|
+
|
|
21
|
+
**Need the full lifecycle protocol?** See [Development Workflow](06-dev-workflow.md) — lifecycle gates, deploy, promote, rollback.
|
|
22
|
+
|
|
23
|
+
## Reference (look up when needed)
|
|
24
|
+
|
|
25
|
+
| Topic | Doc |
|
|
26
|
+
|-------|-----|
|
|
27
|
+
| MCP server setup, auth, multi-profile switching | [mcp-servers.md](mcp-servers.md) |
|
|
28
|
+
| Manifest write-safety rules | [manifest-safety.md](manifest-safety.md) |
|
|
29
|
+
| Workflow upload methods and caching layers | [workflow-reference.md](workflow-reference.md) |
|
|
30
|
+
| Browser automation for UI testing | [chrome-devtools-mcp-reference.md](chrome-devtools-mcp-reference.md) |
|
|
31
|
+
|
|
32
|
+
## Deep Reference
|
|
33
|
+
|
|
34
|
+
You don't need these to get started — they're for when you want the full picture.
|
|
35
|
+
|
|
36
|
+
| Doc | What's in it |
|
|
37
|
+
|-----|-------------|
|
|
38
|
+
| [fluent-ai-skills-reference.md](fluent-ai-skills-reference.md) | Comprehensive single-doc reference — architecture, MCP tools (55+), workspace conventions, feature lifecycle. Overlaps with the docs above; use this when you prefer searching one file. |
|
|
39
|
+
| [agents-and-skills-guide.md](agents-and-skills-guide.md) | Agent routing tables, all 60+ skills with invocation rules and SDLC mapping |
|
|
40
|
+
| [capability-map.md](capability-map.md) | Which skill owns which capability — the ownership backstop for routing conflicts |
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
# Agents and Skills Guide
|
|
2
|
+
|
|
3
|
+
> [!CAUTION]
|
|
4
|
+
> **EXPERIMENTAL - LABS PROJECT**
|
|
5
|
+
>
|
|
6
|
+
> This package is not production-ready. No stability guarantees, no support, no warranty. See [`../README.md`](../README.md) for the full disclaimer.
|
|
7
|
+
|
|
8
|
+
This is the fastest way to understand the runtime model for `@fluentcommerce/ai-skills`:
|
|
9
|
+
|
|
10
|
+
- which agent handles what
|
|
11
|
+
- which skill to invoke
|
|
12
|
+
- when to invoke it
|
|
13
|
+
- where it fits in the SDLC
|
|
14
|
+
|
|
15
|
+
This guide covers all 6 agents and 60+ skills currently registered in `metadata.json`.
|
|
16
|
+
|
|
17
|
+
## How Invocation Works
|
|
18
|
+
|
|
19
|
+
1. Start with natural language when you are outcome-focused.
|
|
20
|
+
Example: "Explain how Home Delivery works" or "Add a page to the OMS manifest".
|
|
21
|
+
2. Use a slash command when you know the exact skill you want.
|
|
22
|
+
Example: `/fluent-feature-plan`, `/fluent-workflow-builder`, `/fluent-ui-test`.
|
|
23
|
+
3. Treat agents as routers, not as commands.
|
|
24
|
+
Agents are selected automatically from intent. In normal use, you do not manually invoke `fluent-dev` or `fluent-backend-dev`.
|
|
25
|
+
4. Use package CLI commands for installation and platform wiring, not feature delivery.
|
|
26
|
+
Example: `npx @fluentcommerce/ai-skills install`, `status`, `uninstall`, `mcp-setup`.
|
|
27
|
+
|
|
28
|
+
## Practical Rules
|
|
29
|
+
|
|
30
|
+
- Use natural language first if you are not sure which skill is correct.
|
|
31
|
+
- Use slash commands when you want precise control.
|
|
32
|
+
- Read-only skills are usually safe at any time: status, explain, analyze, validate, trace, review, reference.
|
|
33
|
+
- Build, scaffold, deploy, rollback, and environment-changing skills usually sit behind planning or approval gates.
|
|
34
|
+
- Slash commands are Claude Code friendly. Natural-language routing is the safer default across tools.
|
|
35
|
+
|
|
36
|
+
## Best Companion Docs
|
|
37
|
+
|
|
38
|
+
| Document | Best for |
|
|
39
|
+
|---|---|
|
|
40
|
+
| `INDEX.md` | Docs hub and reading order |
|
|
41
|
+
| `../README.md` | Install, package overview, top-level architecture |
|
|
42
|
+
| `docs/05-getting-started.md` | Setup reference and troubleshooting |
|
|
43
|
+
| `docs/03-use-cases.md` | Example prompts and expected outcomes |
|
|
44
|
+
| `docs/capability-map.md` | Capability ownership backstop and maintainer reference |
|
|
45
|
+
| `docs/fluent-ai-skills-reference.md` | Deep operational reference |
|
|
46
|
+
| `docs/06-dev-workflow.md` | End-to-end autonomous delivery loop |
|
|
47
|
+
|
|
48
|
+
## Agent Catalog
|
|
49
|
+
|
|
50
|
+
| Agent | Group | Auto-route when | What it owns | Good starting skills |
|
|
51
|
+
|---|---|---|---|---|
|
|
52
|
+
| `fluent-dev` | `dev` | The request spans frontend and backend, or you need planning, explain, mapping, status, or E2E coordination | Cross-cutting lifecycle orchestration | `/fluent-use-case-discover`, `/fluent-feature-plan`, `/fluent-feature-explain`, `/fluent-feature-status`, `/fluent-e2e-test` |
|
|
53
|
+
| `fluent-backend-dev` | `dev` | The request mentions workflows, rules, rule tests, modules, settings, events, tracing, Java, Maven, or deployment | Backend implementation and runtime operations | `/fluent-workflow-builder`, `/fluent-rule-scaffold`, `/fluent-rule-test`, `/fluent-module-scaffold`, `/fluent-build`, `/fluent-trace`, `/fluent-entity-flow-diagnose` |
|
|
54
|
+
| `fluent-frontend-dev` | `dev` | The request mentions manifests, pages, routes, components, Mystique, SDK projects, frontend build, or browser UI verification | Frontend implementation and UI verification | `/fluent-mystique-builder`, `/fluent-mystique-scaffold`, `/fluent-frontend-build`, `/fluent-ui-test`, `/fluent-frontend-review` |
|
|
55
|
+
| `fluent-cli` | `cli` | The request is really about Fluent CLI commands, profiles, retailers, workflow download/listing, or module install operations | CLI family routing and command guidance | `/fluent-connect`, `/fluent-profile`, `/fluent-cli-retailer`, `/fluent-module-deploy`, `/fluent-workflow` |
|
|
56
|
+
| `fluent-mcp` | `mcp-extn` | The request is about MCP servers (extension or official CLI), workflow download/list, GraphQL build/validate, events, batch, entities, metrics, or webhook validation | MCP tool usage, payload contracts, and core GraphQL/workflow utilities | `/fluent-mcp-tools`, `/fluent-mcp-core` |
|
|
57
|
+
| `fluent-rfl` | `rfl` | The request is a production-readiness or go-live audit | Readiness assessment and risk reporting | `/fluent-rfl-assess` |
|
|
58
|
+
|
|
59
|
+
## SDLC Cheat Sheet
|
|
60
|
+
|
|
61
|
+
| Stage | Goal | Start here |
|
|
62
|
+
|---|---|---|
|
|
63
|
+
| Environment setup | Get the workspace, profile, retailer, and MCP wiring ready | `/fluent-bootstrap`, `/fluent-connect`, `/fluent-profile`, `/fluent-cli-mcp-cicd` |
|
|
64
|
+
| Discover current state | Understand what already exists before changing anything | `/fluent-implementation-map`, `/fluent-feature-explain`, `/fluent-workflow-analyzer`, `/fluent-mystique-assess`, `/fluent-feature-status`, `/fluent-account-snapshot` |
|
|
65
|
+
| Requirements | Turn business need into an approved spec | `/fluent-use-case-discover` |
|
|
66
|
+
| Phasing | Split a large approved feature into vertical slices | `/fluent-scope-plan` |
|
|
67
|
+
| Technical planning | Produce the implementation contract for multi-artifact work | `/fluent-feature-plan` |
|
|
68
|
+
| Backend implementation | Change workflows, rules, rule tests, modules, settings, or environment config | `/fluent-workflow-builder`, `/fluent-rule-scaffold`, `/fluent-rule-test`, `/fluent-module-scaffold`, `/fluent-settings` |
|
|
69
|
+
| Frontend implementation | Change manifests, SDK components, frontend build/test assets | `/fluent-mystique-builder`, `/fluent-mystique-scaffold`, `/fluent-mystique-component`, `/fluent-frontend-build` |
|
|
70
|
+
| Validate and build | Run structural, code, and pre-deploy quality gates | `/fluent-module-validate`, `/fluent-mystique-assess`, `/fluent-frontend-review`, `/fluent-pre-deploy-check`, `/fluent-build` |
|
|
71
|
+
| Deploy | Push module, workflow, or settings changes | `/fluent-module-deploy`, `/fluent-workflow-deploy`, `/fluent-settings` |
|
|
72
|
+
| Test and verify | Confirm behavior in API, workflow, and browser layers | `/fluent-test-data`, `/fluent-e2e-test`, `/fluent-transition-api`, `/fluent-ui-test` |
|
|
73
|
+
| Diagnose and recover | Trace failures, compare runtime vs workflow intent, monitor health, or roll back safely | `/fluent-trace`, `/fluent-entity-flow-diagnose`, `/fluent-system-monitoring`, `/fluent-connection-analysis`, `/fluent-rollback` |
|
|
74
|
+
| Audit and wrap-up | Summarize, assess readiness, export audit trail, or archive | `/fluent-rfl-assess`, `/fluent-session`, `/fluent-archive`, `/fluent-skill-observability` |
|
|
75
|
+
|
|
76
|
+
## Skills by Lifecycle
|
|
77
|
+
|
|
78
|
+
### 1. Setup and Platform Access
|
|
79
|
+
|
|
80
|
+
| Skill | What it does | Invoke when |
|
|
81
|
+
|---|---|---|
|
|
82
|
+
| `/fluent-bootstrap` | Creates a new Fluent account workspace end-to-end: profile, retailer, modules, and initial setup | You are starting from a brand-new account or environment |
|
|
83
|
+
| `/fluent-connect` | Connects an existing account, wires MCP, downloads workflows, scans source, and prepares the workspace | You are starting work in an existing tenant or switching into a prepared workspace |
|
|
84
|
+
| `/fluent-profile` | Manages Fluent CLI profiles | Credentials, account context, or active profile need to change |
|
|
85
|
+
| `/fluent-cli-retailer` | Lists or creates retailers and validates retailer CLI context | Retailer admin or environment setup is the task |
|
|
86
|
+
| `/fluent-cli-reference` | Provides exact Fluent CLI command and flag reference, and routes broad CLI questions | You need command syntax, flags, or examples, or the request mixes profiles, retailers, workflows, modules, and settings |
|
|
87
|
+
| `/fluent-cli-mcp-cicd` | Sets up the CLI MCP server and CI/CD-safe automation patterns | You are wiring MCP or building deployment automation |
|
|
88
|
+
| `/fluent-mcp-core` | Covers official CLI MCP setup plus GraphQL build, validate, execute, and workflow list/download | You want built-in MCP server workflows and GraphQL utilities (now under `mcp-extn` group) |
|
|
89
|
+
| `/fluent-mcp-tools` | Documents the extension MCP tool contracts for events, GraphQL, entities, metrics, workflows, batch, and cache | You need exact MCP payload shape, limits, or tool selection |
|
|
90
|
+
|
|
91
|
+
### 2. Discovery, Documentation, and Planning
|
|
92
|
+
|
|
93
|
+
| Skill | What it does | Invoke when |
|
|
94
|
+
|---|---|---|
|
|
95
|
+
| `/fluent-account-snapshot` | Produces a lightweight account state inventory — retailers, workflows, modules, catalogues, settings, UI customizations | You want a quick overview of what exists in the account |
|
|
96
|
+
| `/fluent-workspace-tree` | Shows an annotated workspace tree with artifact counts and status overlays | You need to orient yourself in the account workspace |
|
|
97
|
+
| `/fluent-feature-status` | Shows the current feature lifecycle table, next actions, and generates the live feature dashboard | You want to know what is in progress, blocked, or ready next, or you want a browser view of feature artifacts and status |
|
|
98
|
+
| `/fluent-implementation-map` | Reverse-engineers the account into a feature inventory and dependency map | You need a broad picture of what has been built |
|
|
99
|
+
| `/fluent-feature-explain` | Produces an architecture-style explanation of an existing feature | The question is "how does this work?" rather than "change it" |
|
|
100
|
+
| `/fluent-use-case-discover` | Turns vague requirements, notes, or a PRD into a structured business spec | You are starting a new feature and the business shape is not locked yet |
|
|
101
|
+
| `/fluent-scope-plan` | Breaks features into phases and converts scope documents into ordered tasks and dependencies | The feature is too large for one plan-build-deploy cycle, or you have a scope pack and need executable work items |
|
|
102
|
+
| `/fluent-feature-plan` | Produces the technical implementation contract across artifacts | The work spans multiple artifacts such as rules, workflows, settings, and UI |
|
|
103
|
+
| `/fluent-goal` | Goal-oriented task tracking with deadlines and progress | You have a delivery target and want the AI to track progress toward it |
|
|
104
|
+
| `/fluent-knowledge-init` | Captures account-specific conventions, business rules, integrations, and test context | You want reusable project knowledge in the workspace |
|
|
105
|
+
| `/fluent-archive` | Archives a completed or abandoned feature and performs lifecycle cleanup | The feature is done and should be formally closed out |
|
|
106
|
+
|
|
107
|
+
### 3. Backend Delivery
|
|
108
|
+
|
|
109
|
+
| Skill | What it does | Invoke when |
|
|
110
|
+
|---|---|---|
|
|
111
|
+
| `/fluent-workflow` | Handles operational workflow CLI tasks such as list, download, merge, and workflow logs | You need workflow files or workflow CLI operations rather than design logic |
|
|
112
|
+
| `/fluent-workflow-builder` | Creates or edits workflow JSON definitions, rulesets, statuses, and triggers | You are implementing or changing workflow behavior |
|
|
113
|
+
| `/fluent-workflow-analyzer` | Validates and analyzes workflow JSON — status graphs, event chains, orphaned rulesets, trigger coverage, and structural correctness | You want to understand, validate, or audit a workflow before or after change |
|
|
114
|
+
| `/fluent-workflow-deploy` | Deploys standalone workflow JSON with strict preflight and fallback paths | You need to ship workflow-only changes safely |
|
|
115
|
+
| `/fluent-rule-scaffold` | Generates a new Java rule and test and wires it into the module manifest | New custom backend rule logic is required |
|
|
116
|
+
| `/fluent-rule-test` | Generates or repairs backend rule tests using the repo's local harness conventions | A rule already exists and you need to add, fix, or backfill its tests |
|
|
117
|
+
| `/fluent-rule-lookup` | Finds rules by name, annotation, or behavior across deployed modules and source code | You need to locate a rule, check what rules use a particular annotation, or audit rule coverage |
|
|
118
|
+
| `/fluent-module-scaffold` | Creates a new Java/Maven Fluent extension module | You need a new plugin module rather than adding to an existing one |
|
|
119
|
+
| `/fluent-data-module-scaffold` | Creates a data-only module with assets and build scripts but no Java plugins | You need a module for workflows, settings, or data assets only |
|
|
120
|
+
| `/fluent-module-validate` | Validates module structure, contents, and classification | You want to check a module before build or deploy, or audit what exists |
|
|
121
|
+
| `/fluent-build` | Builds and packages Fluent extension modules; also handles version reads, bumps, and sync | Source changes are ready to compile and package, or you need to prepare or align a release version |
|
|
122
|
+
| `/fluent-module-convert` | Restructures non-standard or decompiled code into Fluent module format | You have code that does not yet match Fluent module conventions |
|
|
123
|
+
| `/fluent-settings` | Discovers, audits, creates, updates, and migrates settings | Behavior depends on settings or settings need to be deployed |
|
|
124
|
+
| `/fluent-retailer-config` | Creates and configures environment entities such as locations, networks, carriers, and catalogues | You are doing retailer environment setup or cloning |
|
|
125
|
+
| `/fluent-inventory-catalog` | Manages virtual inventory catalogues, positions, segments, and control groups | The work is specifically about virtual inventory structures |
|
|
126
|
+
| `/fluent-sourcing` | Provides the Responsive Sourcing Framework reference and operational patterns | You are designing or debugging sourcing and fulfilment allocation logic |
|
|
127
|
+
| `/fluent-custom-code` | Analyzes existing custom backend code and produces reusable artifacts | You need to understand source-level behavior before changing it |
|
|
128
|
+
| `/fluent-module-deploy` | Installs module ZIPs into target retailers | You are ready to deploy modules, bundled settings, or bundled workflow changes |
|
|
129
|
+
|
|
130
|
+
### 4. Frontend Delivery
|
|
131
|
+
|
|
132
|
+
| Skill | What it does | Invoke when |
|
|
133
|
+
|---|---|---|
|
|
134
|
+
| `/fluent-mystique-sdk-reference` | Serves as the SDK and registry reference for Mystique component development | You need exact hook, registry, or SDK usage patterns before coding |
|
|
135
|
+
| `/fluent-mystique-builder` | Creates or edits Mystique manifests, routes, pages, and components | The UI change can be solved with manifest configuration |
|
|
136
|
+
| `/fluent-mystique-assess` | Validates and analyzes manifest schema, components, queries, complexity, usage patterns, and architectural health | You need to verify a manifest before deployment, or you are auditing or reverse-engineering an existing frontend |
|
|
137
|
+
| `/fluent-mystique-diff` | Compares customized manifests against deployed or baseline state | You need to know what changed or what is overridden |
|
|
138
|
+
| `/fluent-mystique-preview` | Previews likely UI changes before a real deployment | You want fast visual iteration on layout or structure |
|
|
139
|
+
| `/fluent-mystique-scaffold` | Scaffolds a brand-new Mystique SDK project | Configuration is not enough and a custom bundle is needed |
|
|
140
|
+
| `/fluent-mystique-component` | Adds a component, field, or template helper to an existing SDK project | You already have a bundle and want to extend it |
|
|
141
|
+
| `/fluent-frontend-build` | Runs local dev mode or full production frontend build gates | You need hot reload locally or a deployable SDK bundle |
|
|
142
|
+
| `/fluent-frontend-review` | Performs a read-only audit of SDK code quality, GraphQL, docs, and readiness | You want a release-quality frontend review before shipping |
|
|
143
|
+
| `/fluent-frontend-readme` | Generates or refreshes project README documentation from source | You need handover-quality docs for an SDK project |
|
|
144
|
+
| `/fluent-ui-test` | Verifies deployed UI behavior in OMS or Store via browser automation | You need to prove the UI renders and behaves correctly in the real app |
|
|
145
|
+
| `/fluent-ui-record` | Captures annotated walkthroughs and before/after evidence | You need screenshots, walkthrough evidence, or reporting artifacts |
|
|
146
|
+
|
|
147
|
+
### 5. Test, Diagnose, and Operate
|
|
148
|
+
|
|
149
|
+
| Skill | What it does | Invoke when |
|
|
150
|
+
|---|---|---|
|
|
151
|
+
| `/fluent-test-data` | Discovers live references and creates valid test entities dynamically | Tests need real environment-compatible data without hardcoding |
|
|
152
|
+
| `/fluent-e2e-test` | Runs end-to-end scenarios and asserts state transitions | You want post-deploy functional verification across the workflow lifecycle |
|
|
153
|
+
| `/fluent-transition-api` | Discovers available user actions at a given status | You are validating UI buttons, action visibility, or dynamic user action paths |
|
|
154
|
+
| `/fluent-event-api` | Explains the event model, statuses, filters, and event contracts | The question is about event semantics or event query strategy |
|
|
155
|
+
| `/fluent-trace` | Traces failed processing and surfaces runtime root cause | An entity is stuck, an event failed, or the runtime story is unclear |
|
|
156
|
+
| `/fluent-entity-flow-diagnose` | Reconstructs the entity event chain and compares runtime against workflow intent | You have a real entity ref and want the complete expected-vs-observed diagnosis |
|
|
157
|
+
| `/fluent-system-monitoring` | Monitors metrics, failure rates, latency, and event health | You are doing observability, triage, or health monitoring |
|
|
158
|
+
| `/fluent-connection-analysis` | Maps cross-entity and cross-workflow topology and conformance | Dependencies, setting linkage, or runtime-vs-static drift need analysis |
|
|
159
|
+
| `/fluent-job-batch` | Monitors and explains JOB and BATCH entity lifecycles | The work centers on batch ingestion or async job processing |
|
|
160
|
+
| `/fluent-pre-deploy-check` | Runs pre-deployment quality gates across module, workflow, environment, and settings | You need a final go or no-go decision before deployment |
|
|
161
|
+
| `/fluent-rollback` | Performs guided rollback for workflows, modules, or settings | A deployment must be reversed safely |
|
|
162
|
+
| `/fluent-rfl-assess` | Audits production readiness for go-live | You need a launch-readiness or release-readiness review |
|
|
163
|
+
|
|
164
|
+
### 6. Session, Audit, and Quality Loop
|
|
165
|
+
|
|
166
|
+
| Skill | What it does | Invoke when |
|
|
167
|
+
|---|---|---|
|
|
168
|
+
| `/fluent-session` | Summarizes what changed in the current session in human-readable form; use `/fluent-session export` for a machine-readable JSON audit trail | You want a wrap-up, handover, decision chain summary, or structured audit export for CI/CD and compliance |
|
|
169
|
+
| `/fluent-skill-observability` | Traces skill routing, generates routing reports, and captures feedback on skill performance | You want to understand which skill handled a request, review routing decisions, or tune skill quality |
|
|
170
|
+
|
|
171
|
+
## Picking the Right Entry Point
|
|
172
|
+
|
|
173
|
+
| If the user says... | Start with |
|
|
174
|
+
|---|---|
|
|
175
|
+
| "Help me set this workspace up" | `/fluent-connect` |
|
|
176
|
+
| "We have an idea but need requirements" | `/fluent-use-case-discover` |
|
|
177
|
+
| "Plan this feature" | `/fluent-feature-plan` |
|
|
178
|
+
| "Explain what already exists" | `/fluent-feature-explain` or `/fluent-implementation-map` |
|
|
179
|
+
| "Change workflow behavior" | `/fluent-workflow-builder` |
|
|
180
|
+
| "Add a custom rule" | `/fluent-rule-scaffold` |
|
|
181
|
+
| "Write or fix a rule test" | `/fluent-rule-test` |
|
|
182
|
+
| "Create a module" | `/fluent-module-scaffold` or `/fluent-data-module-scaffold` |
|
|
183
|
+
| "Build or deploy this backend change" | `/fluent-build`, then `/fluent-module-deploy` or `/fluent-workflow-deploy` |
|
|
184
|
+
| "Change the UI" | `/fluent-mystique-builder` or `/fluent-mystique-scaffold` |
|
|
185
|
+
| "Test in browser" | `/fluent-ui-test` |
|
|
186
|
+
| "Why did this fail?" | `/fluent-trace` |
|
|
187
|
+
| "Show me what happened vs what should have happened for this entity" | `/fluent-entity-flow-diagnose` |
|
|
188
|
+
| "Is this safe to ship?" | `/fluent-pre-deploy-check` or `/fluent-rfl-assess` |
|
|
189
|
+
|
|
190
|
+
## Maintenance Note
|
|
191
|
+
|
|
192
|
+
If the agent or skill inventory changes, update this guide together with:
|
|
193
|
+
|
|
194
|
+
- `metadata.json`
|
|
195
|
+
- `README.md`
|
|
196
|
+
- `docs/capability-map.md`
|
|
197
|
+
- `docs/fluent-ai-skills-reference.md`
|
|
198
|
+
|
|
199
|
+
This keeps the consolidated routing guide aligned with the package registry and the deeper reference docs.
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
# Capability Ownership Map
|
|
2
|
+
|
|
3
|
+
> [!CAUTION]
|
|
4
|
+
> **🧪 EXPERIMENTAL — LABS PROJECT**
|
|
5
|
+
> This package is not production-ready. No stability guarantees, no support, no warranty. See [README](../README.md) for full disclaimer.
|
|
6
|
+
|
|
7
|
+
This document defines which command/skill is the source of truth for each capability.
|
|
8
|
+
|
|
9
|
+
Use it to avoid duplicate guidance and conflicting instructions.
|
|
10
|
+
|
|
11
|
+
If you want the higher-level "which agent/skill should I use, how do I invoke it, and where does it fit in the SDLC?" view, start with [Agents & Skills Guide](agents-and-skills-guide.md) and use this document as the ownership backstop.
|
|
12
|
+
|
|
13
|
+
## Ownership Table
|
|
14
|
+
|
|
15
|
+
| Capability | Owner | Why |
|
|
16
|
+
|---|---|---|
|
|
17
|
+
| Automated diagnostics and guarded deploy execution | `flow-run` (`bin/cli.mjs`) | Deterministic checks + JSON report + explicit safety gates |
|
|
18
|
+
| Manual module deployment steps | `content/cli/skills/fluent-module-deploy/SKILL.md` | Human-guided deployment with operator decisions |
|
|
19
|
+
| Workflow operations (list, download, merge, workflowlog) | `content/cli/skills/fluent-workflow/SKILL.md` | Operational CLI source of truth |
|
|
20
|
+
| Fluent CLI retailer lifecycle (`fluent retailer create/list`) | `content/cli/skills/fluent-cli-retailer/SKILL.md` | Canonical CLI guidance for retailer bootstrap and context validation |
|
|
21
|
+
| Fluent CLI MCP setup and CI/CD guarded deploy patterns | `content/cli/skills/fluent-cli-mcp-cicd/SKILL.md` | Canonical CLI guidance for `fluent mcp server --stdio` setup and pipeline-safe deploy flow |
|
|
22
|
+
| Complete CLI command reference and cross-family routing | `content/cli/skills/fluent-cli-reference/SKILL.md` | Canonical reference for every Fluent CLI command, flag, and option. Absorbs former `fluent-cli-index` (v0.12.0). |
|
|
23
|
+
| Account bootstrap (profile, retailer, MCP, workflows, source) | `content/cli/skills/fluent-bootstrap/SKILL.md` | Complete Fluent Commerce account bootstrap wizard with mandatory planning gate |
|
|
24
|
+
| CLI profile management (create, switch, list, export) | `content/cli/skills/fluent-profile/SKILL.md` | Manage Fluent CLI profiles for connecting to Fluent Commerce accounts |
|
|
25
|
+
| Ready For Launch (RFL) assessment | `content/rfl/skills/fluent-rfl-assess/SKILL.md` | Production readiness audit across workflows, rules, settings, and architecture |
|
|
26
|
+
| Workflow design patterns and validation checklist | `content/dev/skills/fluent-workflow-builder/SKILL.md` | Architecture/design guidance for new workflow behavior |
|
|
27
|
+
| Build, version bump, package steps | `content/dev/skills/fluent-build/SKILL.md` | Code/module build lifecycle ownership |
|
|
28
|
+
| Event tracing and diagnostic decision trees | `content/dev/skills/fluent-trace/SKILL.md` | Investigation workflow ownership |
|
|
29
|
+
| Entity-ref-first runtime-to-workflow diagnosis and expected-vs-observed diff | `content/dev/skills/fluent-entity-flow-diagnose/SKILL.md` | Single entry point for real-entity diagnosis that stitches runtime chain reconstruction to static workflow comparison |
|
|
30
|
+
| Event API model, types, categories, query patterns, event contracts, causality analysis, integration patterns | `content/dev/skills/fluent-event-api/SKILL.md` | Event data model knowledge, filter parameters, event contracts (pre-send validation), causality tracing patterns (`sourceEvents`, `rootEntityRef`, cross-entity chains), and common integration event patterns (inventory, PIM, WMS, carrier) |
|
|
31
|
+
| Aggregate platform observability and metrics anomaly triage | `content/dev/skills/fluent-system-monitoring/SKILL.md` | Prometheus/Event API aggregate monitoring, threshold checks, and incident triage routing |
|
|
32
|
+
| Opaque rule logic analysis (source request + JAR decompile fallback) | `content/dev/skills/fluent-trace/SKILL.md` + `docs/06-dev-workflow.md` | Ensures workflow explanations are grounded in executable rule behavior |
|
|
33
|
+
| E2E scenario patterns and polling strategy | `content/dev/skills/fluent-e2e-test/SKILL.md` | Scenario-driven behavior verification |
|
|
34
|
+
| Workflow structural validation, analysis, and dependency mapping | `content/dev/skills/fluent-workflow-analyzer/SKILL.md` | Status graph, event chain tracing, orphan detection, JSON validation, trigger coverage, user action consistency. Absorbs former `fluent-workflow-validate` (v0.12.0). |
|
|
35
|
+
| Custom source-code understanding and reusable artifact output | `content/dev/skills/fluent-custom-code/SKILL.md` | Source-map, workflow-rule-map, constraints, behavior-map, extension-plan |
|
|
36
|
+
| Transition API user action discovery | `content/dev/skills/fluent-transition-api/SKILL.md` | Runtime user action queries, attribute mapping for events |
|
|
37
|
+
| Test data discovery and payload generation | `content/dev/skills/fluent-test-data/SKILL.md` | Discover retailer environment (locations, products, catalogues, inventory) and generate valid test entity creation payloads dynamically |
|
|
38
|
+
| Settings management | `content/dev/skills/fluent-settings/SKILL.md` | Manage retailer settings — discover, audit against workflows, create/update, migrate between environments |
|
|
39
|
+
| Retailer environment configuration | `content/dev/skills/fluent-retailer-config/SKILL.md` | Configure retailer environments — create locations, networks, catalogues, inventory, carriers via GraphQL |
|
|
40
|
+
| Module inventory, classification, and structure validation | `content/dev/skills/fluent-module-validate/SKILL.md` | Inventory all deployed modules (reference vs custom), classify by symbolic name, validate custom extension structure; cached JSON artifacts |
|
|
41
|
+
| OOTB-vs-custom rule decision | `content/dev/skills/fluent-rule-scaffold/SKILL.md` | Pre-scaffolding check: search registered rules via plugin_list, recommend OOTB if match exists, scaffold custom only when needed |
|
|
42
|
+
| Rule unit test generation and repair | `content/dev/skills/fluent-rule-test/SKILL.md` | Generate or repair JUnit 5 tests for Rubix rules. Classifies rule, matches local harness (RuleExecutor/TestExecutor/Mockito/WorkflowExecutor), applies patterns from `knowledge/platform/rule-test-patterns.md` |
|
|
43
|
+
| MCP extension tool reference (syntax/limits) | `content/mcp-extn/skills/fluent-mcp-tools/SKILL.md` | Canonical tool-level reference |
|
|
44
|
+
| MCP core setup and GraphQL core utilities | `content/mcp-extn/skills/fluent-mcp-core/SKILL.md` | Canonical official MCP server reference (now under `mcp-extn` group) |
|
|
45
|
+
| Account connection, workspace discovery, JAR decompilation, and cached state | `content/cli/skills/fluent-connect/SKILL.md` | Guided onboarding — discovers profiles, wires MCP, downloads workflows, decompiles JARs, builds rule inventory, persists workspace state |
|
|
46
|
+
| Connection topology, cross-entity dependency maps, static-vs-dynamic runtime diffs, webhook/setting conformance | `content/dev/skills/fluent-connection-analysis/SKILL.md` | Topology analysis, orphan detection, process flow classification, --validate mode for runtime coverage comparison, settings conformance inventories |
|
|
47
|
+
| JOB/BATCH entity lifecycle diagnostics and monitoring | `content/dev/skills/fluent-job-batch/SKILL.md` | JOB/BATCH orchestration lifecycle, batch ingestion monitoring, job status tracking |
|
|
48
|
+
| Session change tracking, audit reporting (text + JSON), and compliance export | `content/dev/skills/fluent-session/SKILL.md` | Running change log of all write operations, skill invocations (with gate results and handoff signals), and MCP tool calls; structured summary on demand; lightweight JSON export; machine-readable JSON audit trail with `skillInvocations[]`, `toolCalls[]`, `decisionTrail[]`, traceability matrix, rollback commands, compliance metadata |
|
|
49
|
+
| Module skeleton scaffolding (Maven, POMs, module.json, rules) | `content/dev/skills/fluent-module-scaffold/SKILL.md` | New-vs-extend decision tree; generates buildable module under `accounts/<PROFILE>/SOURCE/` |
|
|
50
|
+
| Scope document decomposition and feature phasing | `content/dev/skills/fluent-scope-plan/SKILL.md` | Consolidated from `fluent-scope-decompose` + `fluent-feature-phase` (v0.12.0); parses scope docs into ordered tasks with dependency DAG, skill mappings, vertical slice delivery phases |
|
|
51
|
+
| Pre-deployment quality gates | `content/dev/skills/fluent-pre-deploy-check/SKILL.md` | 35+ gates across 9 phases; blocks deployment on critical failures |
|
|
52
|
+
| Feature reverse-engineering and architecture documentation | `content/dev/skills/fluent-feature-explain/SKILL.md` | Synthesizes workflow, code, connection, and runtime analysis into a persisted Feature Architecture Document with Mermaid diagrams. Tiered evidence: plugin_list (always) → decompiled JAR / original source → runtime. Auto-discovers entities for runtime, decompiles JARs when no source. Includes Analysis Confidence section with per-rule evidence levels. |
|
|
53
|
+
| Feature implementation planning (multi-artifact) | `content/dev/skills/fluent-feature-plan/SKILL.md` | Produces comprehensive 18-section feature plans with universal NEW/EXISTING/MODIFIED/REUSED/OOTB Source classification across all artifacts (rules, rulesets, statuses, settings, webhooks, GraphQL ops, cross-entity impacts). For NEW rules: pseudo logic contract. For OOTB: prop configuration. Template at `PLAN_TEMPLATE.md` (sibling file in skill directory). |
|
|
54
|
+
| Source code onboarding into Fluent module format | `content/dev/skills/fluent-module-convert/SKILL.md` | Restructures non-standard Java source (loose files, decompiled JARs, Gradle projects, partial modules) into Maven multi-module Fluent extension module format. Validates with module-validate, attempts build, reconciles against deployed rules. |
|
|
55
|
+
| Sourcing framework reference (profiles, strategies, conditions, criteria, scoring, extensions) | `content/dev/skills/fluent-sourcing/SKILL.md` | Comprehensive reference for Responsive Sourcing Framework v2.1+. Covers evaluation flow, 10 condition operators, 11 built-in criteria with scoring models, normalization algorithm, permutation search, settings schema, workflow integration rules, custom Java extensions, and operational GraphQL patterns. Chains to `/fluent-rule-scaffold` for custom extension wiring, `/fluent-workflow-builder` for sourcing rulesets, `/fluent-settings` for sourcing settings CRUD. |
|
|
56
|
+
| Business requirements gathering (interactive wizard + document analysis) | `content/dev/skills/fluent-use-case-discover/SKILL.md` | Structured business spec production that feeds feature planning. Interactive mode walks through use cases, actors, business rules. Document analysis mode extracts from existing docs. |
|
|
57
|
+
| Feature lifecycle dashboard and status tracking | `content/dev/skills/fluent-feature-status/SKILL.md` | Scans all `features/*/status.json`, presents consolidated table with filtering, sorting, and attention items across profiles |
|
|
58
|
+
| Feature archival and lifecycle cleanup | `content/dev/skills/fluent-archive/SKILL.md` | Transitions features to ARCHIVED status with confirmation gate. Blocked for IN_PROGRESS without --force. |
|
|
59
|
+
| Deployment rollback (workflows, modules, settings) | `content/dev/skills/fluent-rollback/SKILL.md` | Guided rollback with mandatory planning gate and dry-run mode. Workflow version revert, module redeploy, settings restore. |
|
|
60
|
+
| Account state inventory (lightweight snapshot) | `content/dev/skills/fluent-account-snapshot/SKILL.md` | MCP-first data collection of retailers, workflows, modules, catalogues, settings, and UI customizations with LLM summary |
|
|
61
|
+
| Workspace structure visualization | `content/dev/skills/fluent-workspace-tree/SKILL.md` | Read-only annotated workspace tree showing all artifacts by category with counts and status overlays |
|
|
62
|
+
| Implementation reverse-engineering and feature inventory | `content/dev/skills/fluent-implementation-map/SKILL.md` | Top-of-pyramid analysis: discovers features from workflows/rules/settings, maps cross-feature dependencies, scores customisation depth, identifies gaps. Output to `analysis/implementation-map/`. |
|
|
63
|
+
| Workflow deployment with validation and fallback | `content/dev/skills/fluent-workflow-deploy/SKILL.md` | MCP-primary workflow upload with pre-flight checks, version verification, automatic REST API fallback, and rollback support |
|
|
64
|
+
| Data module scaffolding (no Java plugins) | `content/dev/skills/fluent-data-module-scaffold/SKILL.md` | Generates module structure with assets directories, module.json, config template, and build script for non-plugin modules |
|
|
65
|
+
| Mermaid diagram syntax validation | `knowledge/mermaid-syntax-rules.md` | Internalized as knowledge doc. Validates stateDiagram-v2, sequenceDiagram, flowchart, erDiagram syntax. Referenced by diagram-generating skills. |
|
|
66
|
+
| Mystique manifest validation and analysis | `content/dev/skills/fluent-mystique-assess/SKILL.md` | Consolidated from `fluent-mystique-validate` + `fluent-mystique-analyze` (v0.12.0); validation rules, OOTB component alias registry, complexity scoring, pattern detection, Mermaid diagrams, architectural health |
|
|
67
|
+
| Mystique manifest building and editing | `content/dev/skills/fluent-mystique-builder/SKILL.md` | 6 operations (create manifest, add page, add component, build fragment, generate data query, edit manifest). 7 composition patterns. Entity type-to-GraphQL query mapping. Full manifest v2.0 schema. Build vs Configure decision framework. |
|
|
68
|
+
| Mystique SDK component scaffolding | `content/dev/skills/fluent-mystique-scaffold/SKILL.md` | Generate complete buildable SDK component projects (webpack, TypeScript, Storybook, Jest, component registration). Only invoked when Build vs Configure framework determines OOTB components cannot meet the requirement. |
|
|
69
|
+
| Frontend SDK build pipeline (7 gates) | `content/dev/skills/fluent-frontend-build/SKILL.md` | TypeScript compilation → lint → tests with coverage → production webpack build → bundle verification (size, version.json) → externals check (React/MUI not bundled) → GraphQL schema validation (3-tier: source queries, deployed manifests, workflow cross-ref). Produces structured build report. |
|
|
70
|
+
| Frontend SDK code quality audit (9 phases) | `content/dev/skills/fluent-frontend-review/SKILL.md` | TypeScript quality, React patterns, SDK compliance, GraphQL schema validation (3-tier), code documentation, test quality, README completeness, bundle health, deployment readiness. Graded A-F scoring. Read-only — does not auto-fix. |
|
|
71
|
+
| Frontend SDK README generation | `content/dev/skills/fluent-frontend-readme/SKILL.md` | Auto-generates README.md from source code. Inspects ComponentRegistry registrations, hook usage, settings dependencies, GraphQL queries, and build config to produce accurate documentation. |
|
|
72
|
+
| Mystique manifest CDN baseline diffing | `content/dev/skills/fluent-mystique-diff/SKILL.md` | Compare manifest settings against CDN baselines; shows customized vs default fragments, structural diffs, OOTB vs custom component classification |
|
|
73
|
+
| Browser-based UI testing for deployed Mystique manifests | `content/dev/skills/fluent-ui-test/SKILL.md` | Chrome DevTools MCP-based browser testing — login, navigation, component rendering verification, screenshot capture, DOM snapshot, console error detection. Requires `chrome-devtools` server in `.mcp.json`. |
|
|
74
|
+
| Skill system observability (trace, routing, feedback, quality) | `content/dev/skills/fluent-skill-observability/SKILL.md` | Consolidated from `fluent-feedback` + `fluent-skill-trace` + `fluent-skill-routing-report` (v0.12.0); unified trace, routing analysis, feedback dashboard, and quality audit |
|
|
75
|
+
| Goal-directed autonomous orchestration | `content/dev/skills/fluent-goal/SKILL.md` | Takes any Fluent Commerce goal, decomposes into sub-goals, delegates to existing skills, verifies via MCP, self-critiques, and persists until done. Three autonomy levels, mandatory planning gate, critique protocol, failure pattern map |
|
|
76
|
+
| Annotated UI walkthroughs and evidence recording | `content/dev/skills/fluent-ui-record/SKILL.md` | Captures before/after screenshots with DOM annotations, optional Chrome DevTools MCP video recording, manifest diff reports, and HTML evidence reports. Companion to `/fluent-ui-test`. |
|
|
77
|
+
| Project knowledge initialization and management | `content/dev/skills/fluent-knowledge-init/SKILL.md` | Interactive wizard to set up partner conventions, client business rules, integrations, and test data in `accounts/<PROFILE>/knowledge/` directory. Supports doc ingestion, conversational capture, and progressive learning. |
|
|
78
|
+
| Mystique Component SDK API reference lookup | `content/dev/skills/fluent-mystique-sdk-reference/SKILL.md` | Read-only reference for React hooks, composition primitives, field patterns, and Material-UI constraints for custom Fluent Commerce UI components |
|
|
79
|
+
| OOTB rule reference lookup | `content/dev/skills/fluent-rule-lookup/SKILL.md` | Search and discover out-of-the-box Fluent Commerce reference module rules by keyword, entity type, module, or capability via MCP plugin_list |
|
|
80
|
+
| Mystique SDK component addition | `content/dev/skills/fluent-mystique-component/SKILL.md` | Adds new components, form fields, or template helpers to an existing Mystique SDK project. Generates component files, registers with the appropriate registry, and wires into the build. |
|
|
81
|
+
| Mystique UI preview (mock/modify/remove) | `content/dev/skills/fluent-mystique-preview/SKILL.md` | Mock, modify, and preview Mystique UI components in the live Fluent Commerce app before building or deploying. Three modes: ADD (inject new), MODIFY (alter existing), REMOVE (preview without). |
|
|
82
|
+
| Virtual inventory catalog management | `content/dev/skills/fluent-inventory-catalog/SKILL.md` | Manage Fluent Commerce virtual inventory: catalogues, positions, segments, feeds, and control groups. Schema-gated — only runs when VirtualSegment type exists. |
|
|
83
|
+
|
|
84
|
+
## Reconciliation Rules
|
|
85
|
+
|
|
86
|
+
- Event API source docs are selectively extracted into skills; do not mirror full product docs.
|
|
87
|
+
- If deployment logic changes, update `flow-run` and `fluent-module-deploy`; link from `fluent-build` rather than duplicating deploy instructions.
|
|
88
|
+
- If workflow command syntax changes, update `fluent-workflow`; `fluent-workflow-builder` should reference it for operational steps.
|
|
89
|
+
- If MCP tool contracts change, update `fluent-mcp-tools` first; other skills should reference it for request syntax and limits.
|
|
90
|
+
- If workflow/ruleset intent is ambiguous, escalate to source/decompile flow owned by `fluent-trace` + `dev-workflow.md` before making behavioral claims.
|
|
91
|
+
- If module structure checks change, update `fluent-module-validate` first; `fluent-build` and `fluent-module-deploy` should read the cached report rather than duplicating checks.
|
|
92
|
+
- Keep skill files focused on decision logic and patterns; keep low-level command/tool reference centralized.
|
|
93
|
+
- If Mystique component registry or manifest schema changes, update `fluent-mystique-assess` first (canonical OOTB alias list); `fluent-mystique-builder` references it for component resolution.
|
|
94
|
+
- Frontend skills (`fluent-mystique-*`, `fluent-frontend-*`, `fluent-ui-test`) own all Mystique/manifest/UI/SDK work. Backend skills should never generate or modify manifests. Cross-domain features route through `/fluent-feature-plan` at the orchestrator level.
|
|
95
|
+
- Browser-based UI testing (`fluent-ui-test`) requires Chrome DevTools MCP. If Chrome DevTools MCP is not configured, redirect user to add the `chrome-devtools` server entry to `.mcp.json`.
|
|
96
|
+
|
|
97
|
+
## Round-Robin Debugging Protocol
|
|
98
|
+
|
|
99
|
+
| Entry intent | Route to | Avoid |
|
|
100
|
+
|---|---|---|
|
|
101
|
+
| "What actions are available at this status?" | `fluent-transition-api` | Re-implementing transition discovery in other skills |
|
|
102
|
+
| "How do events/filters/causality work?" | `fluent-event-api` | Running full root-cause workflow here |
|
|
103
|
+
| "How do I call this MCP tool?" | `fluent-mcp-tools` | Redefining tool contracts per skill |
|
|
104
|
+
| "Run workflow end-to-end validation" | `fluent-e2e-test` | Duplicating trace decision trees |
|
|
105
|
+
| "Why did this fail / entity stuck?" | `fluent-trace` | Repeating generic setup when failure context is already known |
|
|
106
|
+
| "Compare runtime vs workflow for this entity ref" | `fluent-entity-flow-diagnose` | Manually chaining trace, workflow fetch, and topology diff |
|
|
107
|
+
| "Explain feature / how does X work / document this flow" | `fluent-feature-explain` | Running individual analysis skills without synthesizing into a document |
|
|
108
|
+
| "Plan this feature / implement curbside / design the return flow" | `fluent-feature-plan` | Using individual skills without a comprehensive plan first |
|
|
109
|
+
| "How does sourcing work / configure sourcing profile / debug sourcing" | `fluent-sourcing` | Reimplementing sourcing logic reference in other skills |
|
|
110
|
+
| "Gather requirements / create business spec / define use cases" | `fluent-use-case-discover` | Starting `/fluent-feature-plan` without an approved spec |
|
|
111
|
+
| "Write tests for a rule / generate rule tests / fix rule test" | `fluent-rule-test` | Re-implementing test generation in other skills |
|
|
112
|
+
| "Show feature status / what's in progress / feature dashboard" | `fluent-feature-status` | Manually scanning feature directories |
|
|
113
|
+
| "Archive this feature / mark as done / close feature" | `fluent-archive` | Manually editing status.json |
|
|
114
|
+
| "Roll back / undo deployment / revert workflow" | `fluent-rollback` | Manual GraphQL mutations or file restoration |
|
|
115
|
+
| "Show workspace / what's where / directory structure" | `fluent-workspace-tree` | Running `ls` or `find` commands |
|
|
116
|
+
| "What's deployed / account snapshot / environment summary" | `fluent-account-snapshot` | Running individual queries piecemeal |
|
|
117
|
+
| "Validate workflow / check workflow / lint workflow" | `fluent-workflow-analyzer` | Re-implementing validation in other skills |
|
|
118
|
+
| "Implementation map / what's been built / feature inventory / reverse engineer account" | `fluent-implementation-map` | Running individual analysis skills piecemeal |
|
|
119
|
+
| "Deploy workflow / upload workflow JSON" | `fluent-workflow-deploy` | Using `fluent-workflow` for deployment (that's read-only operations) |
|
|
120
|
+
| "Validate Mermaid / check diagram syntax" | `knowledge/mermaid-syntax-rules.md` | Reference knowledge doc directly |
|
|
121
|
+
| "Bootstrap account / set up new environment / initialize workspace" | `fluent-bootstrap` | Manual multi-step setup |
|
|
122
|
+
| "Create profile / switch profile / manage environments" | `fluent-profile` | Manual CLI profile management |
|
|
123
|
+
| "Ready for launch / go-live readiness / production audit" | `fluent-rfl-assess` | Manual checklist-based assessment |
|
|
124
|
+
| "Build manifest / create page / add route / edit UI" | `fluent-mystique-builder` | Building manifests outside the builder skill |
|
|
125
|
+
| "Validate manifest / check UI / lint manifest" | `fluent-mystique-assess` | Re-implementing component validation elsewhere |
|
|
126
|
+
| "Scaffold SDK component / new Mystique project" | `fluent-mystique-scaffold` | Building SDK projects without the Build vs Configure decision framework |
|
|
127
|
+
| "Build SDK project / compile / run tests / check bundle" | `fluent-frontend-build` | Re-implementing build pipeline in other skills |
|
|
128
|
+
| "Review frontend code / audit quality / check patterns" | `fluent-frontend-review` | Re-implementing code analysis in other skills |
|
|
129
|
+
| "Generate README / document components" | `fluent-frontend-readme` | Manually writing README for SDK projects |
|
|
130
|
+
| "Analyze manifest / UI audit / manifest complexity" | `fluent-mystique-assess` | Re-implementing analysis elsewhere |
|
|
131
|
+
| "Test the page in browser / verify UI / check if page loads" | `fluent-ui-test` | Manual browser testing or re-implementing Chrome DevTools MCP logic in other skills |
|
|
132
|
+
| "Show feedback / skill success rate / recurring issues" | `fluent-skill-observability` | Manually reading feedback JSONL files |
|
|
133
|
+
| "Record UI walkthrough / capture before-after / evidence report" | `fluent-ui-record` | Manual screenshot gathering without annotations |
|
|
134
|
+
| "Set up knowledge / import conventions / capture business rules" | `fluent-knowledge-init` | Manually writing knowledge files |
|
|
135
|
+
| "Phase this feature / break into slices / delivery phases" | `fluent-scope-plan` | Manual phase planning |
|
|
136
|
+
| "Show feature dashboard / open dashboard" | `fluent-feature-status` | Manually scanning feature directories |
|
|
137
|
+
| "Add component to SDK project / new field / new helper" | `fluent-mystique-component` | Manually creating component files |
|
|
138
|
+
| "Preview UI change / mock component / what will it look like" | `fluent-mystique-preview` | Manual manifest editing for preview |
|
|
139
|
+
| "Manage inventory / virtual catalogue / segments" | `fluent-inventory-catalog` | Manual GraphQL inventory operations |
|
|
140
|
+
| "Diff manifest / CDN vs custom / what's customized" | `fluent-mystique-diff` | Manual comparison of manifest fragments |
|
|
141
|
+
| "SDK hook / hook API / SDK reference / useSettings" | `fluent-mystique-sdk-reference` | Searching SDK source code manually |
|
|
142
|
+
| "Find rule / OOTB rule / what rule does X / rule catalog" | `fluent-rule-lookup` | Manual plugin_list queries |
|
|
143
|
+
| "Skill trace / routing report / skill quality / audit skills" | `fluent-skill-observability` | Manually reading trace/feedback JSONL files |
|
|
144
|
+
| "Decompose scope / task breakdown / scope to tasks" | `fluent-scope-plan` | Manual scope document parsing |
|
|
145
|
+
|
|
146
|
+
Handoff rule: when E2E fails, pass `entityRef`, `entityType`, `eventId` (if available), and expected vs actual status to `fluent-trace`.
|
|
147
|
+
|
|
148
|
+
## CLI Coverage Matrix
|
|
149
|
+
|
|
150
|
+
Tracks how fully the `cli` skill group covers Fluent CLI command families.
|
|
151
|
+
|
|
152
|
+
| Command Family | Status | Owner Skill |
|
|
153
|
+
|---|---|---|
|
|
154
|
+
| `fluent profile *` | full | `fluent-profile` |
|
|
155
|
+
| `fluent retailer *` | full | `fluent-cli-retailer` |
|
|
156
|
+
| `fluent module *` | full | `fluent-module-deploy` |
|
|
157
|
+
| `fluent workflow *` | full | `fluent-workflow` |
|
|
158
|
+
| `fluent workflowlog *` | full | `fluent-workflow` |
|
|
159
|
+
| `fluent setting *` | full | `fluent-settings` |
|
|
160
|
+
| Cross-family routing | full | `fluent-cli-reference` |
|
|
161
|
+
| `fluent mcp server *` | full | `fluent-cli-mcp-cicd` |
|
|
162
|
+
| Account bootstrap flow | full | `fluent-bootstrap` |
|
|
163
|
+
| CI/CD guarded deploy | full | `fluent-cli-mcp-cicd` |
|
|
164
|
+
|
|
165
|
+
Routing rule: for broad CLI requests, start with `/fluent-cli-reference`, then delegate to the command-family specialist. For official MCP server internals, hand off to `/fluent-mcp-core`.
|