@fluentcommerce/ai-skills 0.1.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.
Files changed (60) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +622 -0
  3. package/bin/cli.mjs +1973 -0
  4. package/content/cli/agents/fluent-cli/agent.json +149 -0
  5. package/content/cli/agents/fluent-cli.md +132 -0
  6. package/content/cli/skills/fluent-bootstrap/SKILL.md +181 -0
  7. package/content/cli/skills/fluent-cli-index/SKILL.md +63 -0
  8. package/content/cli/skills/fluent-cli-mcp-cicd/SKILL.md +77 -0
  9. package/content/cli/skills/fluent-cli-reference/SKILL.md +1031 -0
  10. package/content/cli/skills/fluent-cli-retailer/SKILL.md +85 -0
  11. package/content/cli/skills/fluent-cli-settings/SKILL.md +106 -0
  12. package/content/cli/skills/fluent-connect/SKILL.md +886 -0
  13. package/content/cli/skills/fluent-module-deploy/SKILL.md +349 -0
  14. package/content/cli/skills/fluent-profile/SKILL.md +180 -0
  15. package/content/cli/skills/fluent-workflow/SKILL.md +310 -0
  16. package/content/dev/agents/fluent-dev/agent.json +88 -0
  17. package/content/dev/agents/fluent-dev.md +525 -0
  18. package/content/dev/reference-modules/catalog.json +4754 -0
  19. package/content/dev/skills/fluent-build/SKILL.md +192 -0
  20. package/content/dev/skills/fluent-connection-analysis/SKILL.md +386 -0
  21. package/content/dev/skills/fluent-custom-code/SKILL.md +895 -0
  22. package/content/dev/skills/fluent-data-module-scaffold/SKILL.md +714 -0
  23. package/content/dev/skills/fluent-e2e-test/SKILL.md +394 -0
  24. package/content/dev/skills/fluent-event-api/SKILL.md +945 -0
  25. package/content/dev/skills/fluent-feature-explain/SKILL.md +603 -0
  26. package/content/dev/skills/fluent-feature-plan/PLAN_TEMPLATE.md +695 -0
  27. package/content/dev/skills/fluent-feature-plan/SKILL.md +227 -0
  28. package/content/dev/skills/fluent-job-batch/SKILL.md +138 -0
  29. package/content/dev/skills/fluent-mermaid-validate/SKILL.md +86 -0
  30. package/content/dev/skills/fluent-module-scaffold/SKILL.md +1928 -0
  31. package/content/dev/skills/fluent-module-validate/SKILL.md +775 -0
  32. package/content/dev/skills/fluent-pre-deploy-check/SKILL.md +1108 -0
  33. package/content/dev/skills/fluent-retailer-config/SKILL.md +1111 -0
  34. package/content/dev/skills/fluent-rule-scaffold/SKILL.md +385 -0
  35. package/content/dev/skills/fluent-scope-decompose/SKILL.md +1021 -0
  36. package/content/dev/skills/fluent-session-audit-export/SKILL.md +632 -0
  37. package/content/dev/skills/fluent-session-summary/SKILL.md +195 -0
  38. package/content/dev/skills/fluent-settings/SKILL.md +1058 -0
  39. package/content/dev/skills/fluent-source-onboard/SKILL.md +632 -0
  40. package/content/dev/skills/fluent-system-monitoring/SKILL.md +767 -0
  41. package/content/dev/skills/fluent-test-data/SKILL.md +513 -0
  42. package/content/dev/skills/fluent-trace/SKILL.md +1143 -0
  43. package/content/dev/skills/fluent-transition-api/SKILL.md +346 -0
  44. package/content/dev/skills/fluent-version-manage/SKILL.md +744 -0
  45. package/content/dev/skills/fluent-workflow-analyzer/SKILL.md +959 -0
  46. package/content/dev/skills/fluent-workflow-builder/SKILL.md +319 -0
  47. package/content/dev/skills/fluent-workflow-deploy/SKILL.md +267 -0
  48. package/content/mcp-extn/agents/fluent-mcp.md +69 -0
  49. package/content/mcp-extn/skills/fluent-mcp-tools/SKILL.md +461 -0
  50. package/content/mcp-official/agents/fluent-mcp-core.md +91 -0
  51. package/content/mcp-official/skills/fluent-mcp-core/SKILL.md +94 -0
  52. package/content/rfl/agents/fluent-rfl.md +56 -0
  53. package/content/rfl/skills/fluent-rfl-assess/SKILL.md +172 -0
  54. package/docs/CAPABILITY_MAP.md +77 -0
  55. package/docs/CLI_COVERAGE.md +47 -0
  56. package/docs/DEV_WORKFLOW.md +802 -0
  57. package/docs/FLOW_RUN.md +142 -0
  58. package/docs/USE_CASES.md +404 -0
  59. package/metadata.json +156 -0
  60. package/package.json +51 -0
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: fluent-rfl
3
+ description: Fluent Commerce Ready For Launch (RFL) assessment agent. Analyzes workflows, custom rules, GraphQL usage, and architecture to determine production readiness. Triggers on "rfl assessment", "ready for launch", "production readiness", "go-live check".
4
+ tools: Bash, Read, Write, Edit, Glob, Grep
5
+ model: inherit
6
+ skills: fluent-rfl-assess
7
+ ---
8
+
9
+ # Fluent RFL Assessment Agent
10
+
11
+ You are a Fluent Commerce Ready For Launch specialist. You perform comprehensive assessments of Fluent Commerce implementations to determine production readiness.
12
+
13
+ ## Assessment Areas
14
+
15
+ ### 1. Workflow Analysis
16
+ - Naming conventions compliance
17
+ - Duplicate ruleset detection
18
+ - Orphaned ruleset identification
19
+ - Cyclic dependency detection
20
+ - State machine completeness
21
+
22
+ ### 2. Custom Rules Review
23
+ - Java code quality and best practices
24
+ - GraphQL usage patterns
25
+ - Error handling coverage
26
+ - Test coverage analysis
27
+ - Performance considerations
28
+
29
+ ### 3. Configuration Audit
30
+ - Settings completeness
31
+ - User and role setup
32
+ - Catalogue configuration
33
+ - Network topology
34
+ - Location setup
35
+
36
+ ### 4. Integration Health
37
+ - Webhook configuration
38
+ - Event processing patterns
39
+ - External system connectivity
40
+ - Error retry mechanisms
41
+
42
+ ## Assessment Output
43
+
44
+ The RFL report includes:
45
+ - Overall readiness score (0-100)
46
+ - Risk assessment (Critical / High / Medium / Low)
47
+ - Prioritized recommendations
48
+ - Detailed findings per area
49
+ - Go/No-Go recommendation
50
+
51
+ ## Key Behaviors
52
+
53
+ 1. **Be thorough** - Check all workflows, not just the primary ones
54
+ 2. **Verify, don't assume** - Query the live environment for actual state
55
+ 3. **Prioritize findings** - Critical blockers first, nice-to-haves last
56
+ 4. **Provide actionable recommendations** - Not just problems, but solutions
@@ -0,0 +1,172 @@
1
+ ---
2
+ name: fluent-rfl-assess
3
+ description: Run a Ready For Launch (RFL) assessment on a Fluent Commerce implementation. Analyzes workflows, rules, settings, and integrations for production readiness. Triggers on "rfl assessment", "ready for launch check", "go-live readiness", "production audit".
4
+ user-invocable: true
5
+ allowed-tools: Bash, Read, Write, Edit, Glob, Grep
6
+ argument-hint: [--profile name] [--retailer ref]
7
+ ---
8
+
9
+ # RFL Assessment
10
+
11
+ Comprehensive Ready For Launch assessment for Fluent Commerce implementations.
12
+
13
+ ## When to Use
14
+
15
+ - Pre-go-live production readiness check
16
+ - Post-implementation quality review
17
+ - Periodic health check of running implementations
18
+ - New team member onboarding (understand current state)
19
+
20
+ ## Assessment Workflow
21
+
22
+ ### Step 1: Environment Discovery
23
+
24
+ ```bash
25
+ # Verify connection
26
+ fluent profile active
27
+
28
+ # List workflows
29
+ fluent workflow list -p <profile> -r <retailer>
30
+
31
+ # List installed modules
32
+ fluent module list -p <profile>
33
+ ```
34
+
35
+ ### Step 2: Workflow Analysis
36
+
37
+ For each workflow:
38
+ - Download and parse workflow JSON
39
+ - Check naming conventions
40
+ - Detect duplicate rulesets
41
+ - Identify orphaned rulesets
42
+ - Verify state transitions are complete
43
+ - Check for cyclic dependencies
44
+
45
+ ### Step 3: Custom Rules Review
46
+
47
+ - Locate plugin source code under `accounts/<PROFILE>/SOURCE/`
48
+ - If source is unavailable:
49
+ - Check for JARs or decompiled output at `accounts/<PROFILE>/SOURCE/.decompiled/`
50
+ - If neither exists, run `/fluent-custom-code <PROFILE>` to decompile available JARs
51
+ - If no JARs are available, run `/fluent-connect` for full workspace preparation including JAR provision guidance
52
+ - Fall back to `plugin.list` for description-level review (rule parameters, accepted entity types, produced events) — note reduced confidence in the report
53
+ - Analyze Java code quality (original source = high confidence; decompiled = medium confidence, note synthetic variable names)
54
+ - Check GraphQL usage patterns
55
+ - Verify error handling
56
+ - Assess test coverage (skip if only decompiled source available)
57
+
58
+ ### Step 4: Configuration Audit
59
+
60
+ - Query settings via GraphQL
61
+ - Check user and role setup
62
+ - Verify catalogue configuration
63
+ - Validate network topology
64
+ - Confirm location setup
65
+
66
+ ### Step 5: Generate Report
67
+
68
+ Output: `rfl-report-<retailer>-<timestamp>.md`
69
+
70
+ Includes:
71
+ - Overall score (0-100)
72
+ - Risk matrix
73
+ - Findings by category
74
+ - Prioritized recommendations
75
+ - Go/No-Go recommendation
76
+
77
+ ## Scoring
78
+
79
+ | Score | Rating | Meaning |
80
+ |-------|--------|---------|
81
+ | 90-100 | Excellent | Ready for launch |
82
+ | 75-89 | Good | Minor issues, safe to launch |
83
+ | 60-74 | Fair | Address high-priority items first |
84
+ | 40-59 | Poor | Significant work needed |
85
+ | 0-39 | Critical | Not ready for launch |
86
+
87
+ ## Common Findings
88
+
89
+ | Category | Finding | Severity |
90
+ |----------|---------|----------|
91
+ | Workflow | Orphaned rulesets | Medium |
92
+ | Workflow | Missing error handlers | High |
93
+ | Rules | No test coverage | High |
94
+ | Rules | Hardcoded values | Medium |
95
+ | Config | Missing settings | Critical |
96
+ | Integration | No retry on webhook failure | High |
97
+
98
+ ## Event Health Assessment
99
+
100
+ As part of the RFL assessment, check event processing health:
101
+
102
+ Prerequisites:
103
+ - Metrics queries require a user/token with `METRICS_VIEW`.
104
+ - Interpret metrics as trend-level observability signals (Prometheus functions may extrapolate around scrape windows), not ledger-accurate financial totals.
105
+
106
+ ### Automated Health Check (Preferred)
107
+ ```
108
+ metrics.healthCheck({
109
+ "window": "168h",
110
+ "topN": 20,
111
+ "thresholds": { "failureRate": 2, "pendingRate": 5 }
112
+ })
113
+ ```
114
+ Single call covers failure rate, NO_MATCH, PENDING, and dominance checks. Use stricter thresholds (2% failure) for go-live readiness.
115
+
116
+ If Prometheus is unavailable, the tool automatically falls back to Event API aggregation.
117
+
118
+ ### Manual Checks (Drill-Down)
119
+
120
+ Use these for targeted investigation when healthCheck reports findings:
121
+
122
+ ### Failed Events Check
123
+ ```
124
+ event.list({
125
+ "eventStatus": "FAILED",
126
+ "from": "<last_7_days>",
127
+ "count": 50
128
+ })
129
+ ```
130
+ Flag: >5% failure rate indicates systemic issues requiring investigation before launch.
131
+
132
+ ### NO_MATCH Events Check
133
+ ```
134
+ event.list({
135
+ "eventStatus": "NO_MATCH",
136
+ "from": "<last_7_days>",
137
+ "count": 50
138
+ })
139
+ ```
140
+ Flag: Any NO_MATCH events indicate missing workflow configuration (event name doesn't match any ruleset).
141
+
142
+ ### Exception Events Check
143
+ ```
144
+ event.list({
145
+ "category": "exception",
146
+ "from": "<last_7_days>",
147
+ "count": 50
148
+ })
149
+ ```
150
+ Flag: Recurring exceptions with the same `lastRule` or `lastRuleSet` indicate a code-level bug.
151
+
152
+ ### Event Volume Analytics
153
+
154
+ **Prometheus (preferred):**
155
+ ```
156
+ metrics.query({
157
+ "query": "sum by (event_name, entity_type, status) (increase(rubix_event_runtime_seconds_count[24h]))",
158
+ "type": "instant"
159
+ })
160
+ ```
161
+
162
+ **Fallback (Event API aggregation):**
163
+ ```
164
+ metrics.topEvents({
165
+ "from": "<last_24h>",
166
+ "topN": 20
167
+ })
168
+ ```
169
+ Review top events for unexpected patterns: high failure rates, unusual entity type distribution, missing expected events.
170
+
171
+ For detailed event diagnostics → `/fluent-trace`.
172
+ For monitoring workflows and anomaly detection → `/fluent-system-monitoring`.
@@ -0,0 +1,77 @@
1
+ # Capability Ownership Map
2
+
3
+ This document defines which command/skill is the source of truth for each capability.
4
+
5
+ Use it to avoid duplicate guidance and conflicting instructions.
6
+
7
+ ## Ownership Table
8
+
9
+ | Capability | Owner | Why |
10
+ |---|---|---|
11
+ | Automated diagnostics and guarded deploy execution | `flow-run` (`bin/cli.mjs`) | Deterministic checks + JSON report + explicit safety gates |
12
+ | Manual module deployment steps | `content/cli/skills/fluent-module-deploy/SKILL.md` | Human-guided deployment with operator decisions |
13
+ | Workflow operations (list, download, merge, workflowlog) | `content/cli/skills/fluent-workflow/SKILL.md` | Operational CLI source of truth |
14
+ | Fluent CLI settings inspection (`fluent setting list/get`) | `content/cli/skills/fluent-cli-settings/SKILL.md` | Canonical CLI guidance for reading/auditing settings in profile+retailer context |
15
+ | 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 |
16
+ | 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 |
17
+ | Fluent CLI cross-family routing | `content/cli/skills/fluent-cli-index/SKILL.md` | Single entry point for broad or mixed Fluent CLI requests |
18
+ | Complete CLI command reference (all subcommands + flags) | `content/cli/skills/fluent-cli-reference/SKILL.md` | Canonical reference for every Fluent CLI command, flag, and option |
19
+ | Workflow design patterns and validation checklist | `content/dev/skills/fluent-workflow-builder/SKILL.md` | Architecture/design guidance for new workflow behavior |
20
+ | Build, version bump, package steps | `content/dev/skills/fluent-build/SKILL.md` | Code/module build lifecycle ownership |
21
+ | Event tracing and diagnostic decision trees | `content/dev/skills/fluent-trace/SKILL.md` | Investigation workflow ownership |
22
+ | 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) |
23
+ | 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 |
24
+ | Opaque rule logic analysis (source request + JAR decompile fallback) | `content/dev/skills/fluent-trace/SKILL.md` + `docs/DEV_WORKFLOW.md` | Ensures workflow explanations are grounded in executable rule behavior |
25
+ | E2E scenario patterns and polling strategy | `content/dev/skills/fluent-e2e-test/SKILL.md` | Scenario-driven behavior verification |
26
+ | Workflow structural analysis and dependency mapping | `content/dev/skills/fluent-workflow-analyzer/SKILL.md` | Status graph, event chain tracing, orphan detection |
27
+ | 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 |
28
+ | Transition API user action discovery | `content/dev/skills/fluent-transition-api/SKILL.md` | Runtime user action queries, attribute mapping for events |
29
+ | 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 |
30
+ | Settings management | `content/dev/skills/fluent-settings/SKILL.md` | Manage retailer settings — discover, audit against workflows, create/update, migrate between environments |
31
+ | Retailer environment configuration | `content/dev/skills/fluent-retailer-config/SKILL.md` | Configure retailer environments — create locations, networks, catalogues, inventory, carriers via GraphQL |
32
+ | 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 |
33
+ | 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 |
34
+ | MCP extension tool reference (syntax/limits) | `content/mcp-extn/skills/fluent-mcp-tools/SKILL.md` | Canonical tool-level reference |
35
+ | MCP core setup and GraphQL core utilities | `content/mcp-official/skills/fluent-mcp-core/SKILL.md` | Canonical official MCP server reference |
36
+ | 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 |
37
+ | Complete account bootstrap (profile, retailer, modules, sample data) | `content/cli/skills/fluent-bootstrap/SKILL.md` | End-to-end account setup wizard with planning gate |
38
+ | CLI profile lifecycle (create, switch, list, export, update) | `content/cli/skills/fluent-profile/SKILL.md` | Profile CRUD, active context, Postman export |
39
+ | Ready For Launch production readiness assessment | `content/rfl/skills/fluent-rfl-assess/SKILL.md` | Scored go-live audit across workflows, rules, settings, integrations |
40
+ | 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 |
41
+ | 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 |
42
+ | Session change tracking and audit reporting (text + JSON) | `content/dev/skills/fluent-session-summary/SKILL.md` | Running change log of all write operations; structured summary on demand; lightweight JSON export |
43
+ | 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/` |
44
+ | Scope document decomposition into task lists | `content/dev/skills/fluent-scope-decompose/SKILL.md` | Parses ADD scope docs into ordered tasks with dependency DAG, skill mappings, ambiguity flags |
45
+ | Version lifecycle (read, bump, sync, tag) | `content/dev/skills/fluent-version-manage/SKILL.md` | Semver bumps across POM files, module.json, CHANGELOG; git tag creation |
46
+ | Pre-deployment quality gates | `content/dev/skills/fluent-pre-deploy-check/SKILL.md` | 26 gates across 8 phases; blocks deployment on critical failures |
47
+ | Machine-readable compliance audit export | `content/dev/skills/fluent-session-audit-export/SKILL.md` | JSON audit trail with traceability matrix, rollback commands, compliance metadata |
48
+ | 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. |
49
+ | 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). |
50
+ | Source code onboarding into Fluent module format | `content/dev/skills/fluent-source-onboard/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. |
51
+ | Workflow deployment (upload, validation, versioning, rollback) | `content/dev/skills/fluent-workflow-deploy/SKILL.md` | MCP `workflow.upload` primary, REST API fallback, CLI last resort; planning gate, dry-run validation, module dependency checks |
52
+ | Data module scaffolding (no Java, assets only) | `content/dev/skills/fluent-data-module-scaffold/SKILL.md` | Scaffolds data modules with 14 asset directories, module.json, config template with prefix system, build scripts |
53
+ | Mermaid diagram syntax validation | `content/dev/skills/fluent-mermaid-validate/SKILL.md` | Internal validator called by diagram-generating skills; pitfall tables for stateDiagram-v2, sequenceDiagram, flowchart, erDiagram |
54
+
55
+ ## Reconciliation Rules
56
+
57
+ - Event API source docs are selectively extracted into skills; do not mirror full product docs.
58
+ - If deployment logic changes, update `flow-run` and `fluent-module-deploy`; link from `fluent-build` rather than duplicating deploy instructions.
59
+ - If workflow command syntax changes, update `fluent-workflow`; `fluent-workflow-builder` should reference it for operational steps.
60
+ - If MCP tool contracts change, update `fluent-mcp-tools` first; other skills should reference it for request syntax and limits.
61
+ - If workflow/ruleset intent is ambiguous, escalate to source/decompile flow owned by `fluent-trace` + `DEV_WORKFLOW.md` before making behavioral claims.
62
+ - 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.
63
+ - Keep skill files focused on decision logic and patterns; keep low-level command/tool reference centralized.
64
+
65
+ ## Round-Robin Debugging Protocol
66
+
67
+ | Entry intent | Route to | Avoid |
68
+ |---|---|---|
69
+ | "What actions are available at this status?" | `fluent-transition-api` | Re-implementing transition discovery in other skills |
70
+ | "How do events/filters/causality work?" | `fluent-event-api` | Running full root-cause workflow here |
71
+ | "How do I call this MCP tool?" | `fluent-mcp-tools` | Redefining tool contracts per skill |
72
+ | "Run workflow end-to-end validation" | `fluent-e2e-test` | Duplicating trace decision trees |
73
+ | "Why did this fail / entity stuck?" | `fluent-trace` | Repeating generic setup when failure context is already known |
74
+ | "Explain feature / how does X work / document this flow" | `fluent-feature-explain` | Running individual analysis skills without synthesizing into a document |
75
+ | "Plan this feature / implement curbside / design the return flow" | `fluent-feature-plan` | Using individual skills without a comprehensive plan first |
76
+
77
+ Handoff rule: when E2E fails, pass `entityRef`, `entityType`, `eventId` (if available), and expected vs actual status to `fluent-trace`.
@@ -0,0 +1,47 @@
1
+ # Fluent CLI Coverage Matrix
2
+
3
+ This matrix tracks how fully the `cli` skill group covers Fluent CLI command families.
4
+
5
+ Use statuses:
6
+
7
+ - `full` - dedicated skill with operational guidance and troubleshooting
8
+ - `partial` - covered indirectly (for example via bootstrap flow) but not deep
9
+ - `missing` - no owned skill yet
10
+
11
+ ## Coverage
12
+
13
+ | Command Family | Status | Owner Skill | Notes |
14
+ |---|---|---|---|
15
+ | `fluent profile *` | `full` | `content/cli/skills/fluent-profile/SKILL.md` | Create/use/update/list/export profile lifecycle |
16
+ | `fluent retailer *` | `full` | `content/cli/skills/fluent-cli-retailer/SKILL.md` | Create/list retailers and post-create context validation |
17
+ | `fluent module *` | `full` | `content/cli/skills/fluent-module-deploy/SKILL.md` | Describe/config/install/list with deployment safeguards |
18
+ | `fluent workflow *` | `full` | `content/cli/skills/fluent-workflow/SKILL.md` | List/download/merge and operational usage patterns |
19
+ | `fluent workflowlog *` | `full` | `content/cli/skills/fluent-workflow/SKILL.md` | List/describe/insert/delete fragment history operations |
20
+ | `fluent setting *` | `full` | `content/cli/skills/fluent-cli-settings/SKILL.md` | List/get settings with profile/retailer context checks |
21
+ | Cross-family routing | `full` | `content/cli/skills/fluent-cli-index/SKILL.md` | Master router for broad/mixed Fluent CLI requests |
22
+ | `fluent mcp server *` | `full` | `content/cli/skills/fluent-cli-mcp-cicd/SKILL.md` | CLI-group guidance plus handoff path to official MCP core skill |
23
+ | Account bootstrap flow | `full` | `content/cli/skills/fluent-bootstrap/SKILL.md` | Profile + retailer + module bootstrap workflow |
24
+ | CI/CD guarded deploy pattern | `full` | `content/cli/skills/fluent-cli-mcp-cicd/SKILL.md` | Pipeline-safe checks and explicit deploy confirmation pattern |
25
+
26
+ ## Guide Section Alignment
27
+
28
+ This maps the major sections from `Fluent CLI Complete Guide` to skill coverage.
29
+
30
+ | Guide Section | Status | Primary Owner |
31
+ |---|---|---|
32
+ | Quick Start | `full` | `fluent-bootstrap` + `fluent-cli-index` |
33
+ | Profile Management | `full` | `fluent-profile` |
34
+ | Retailer Management | `full` | `fluent-cli-retailer` |
35
+ | Module Management | `full` | `fluent-module-deploy` |
36
+ | Workflow Management | `full` | `fluent-workflow` |
37
+ | Settings Management | `full` | `fluent-cli-settings` |
38
+ | MCP Integration | `full` | `fluent-cli-mcp-cicd` (+ `fluent-mcp-core` for official tool details) |
39
+ | Troubleshooting | `partial` | distributed across each skill's troubleshooting sections |
40
+ | CI/CD Integration | `full` | `fluent-cli-mcp-cicd` + `flow-run` command docs |
41
+ | Deep developer how-to examples | `partial` | `dev` group skills and `Fluent CLI` docs |
42
+
43
+ ## Routing Rule
44
+
45
+ For broad requests (for example "handle Fluent CLI end-to-end"), start with `/fluent-cli-index`, then delegate to the command-family specialist.
46
+
47
+ If the request needs official MCP server internals/tool semantics, hand off to `/fluent-mcp-core`.