@vc-shell/vc-app-skill 2.5.0-pr319.1b94321 → 2.5.0-pr321.e2a103c
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/package.json +1 -1
- package/runtime/vc-app.md +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/vc-app-skill",
|
|
3
|
-
"version": "2.5.0-
|
|
3
|
+
"version": "2.5.0-pr321.e2a103c",
|
|
4
4
|
"description": "AI coding skill for scaffolding and generating VirtoCommerce Shell applications. Works with Claude Code, OpenCode, Gemini, Codex, Cursor.",
|
|
5
5
|
"bin": "./bin/install.cjs",
|
|
6
6
|
"files": [
|
package/runtime/vc-app.md
CHANGED
|
@@ -101,6 +101,7 @@ Collect project parameters through dialog, then run CLI in **non-interactive mod
|
|
|
101
101
|
- `--dashboard` — Include a dashboard page
|
|
102
102
|
- `--tenant-routes` — Include tenant-aware routing
|
|
103
103
|
- `--ai-agent` — Include AI agent integration scaffold
|
|
104
|
+
- `--module-federation` — Include the Module Federation host runtime (load remote modules)
|
|
104
105
|
- `--mocks` — Include sample modules with mock data (demo content to explore the framework)
|
|
105
106
|
|
|
106
107
|
### Execution
|
|
@@ -110,7 +111,7 @@ Collect project parameters through dialog, then run CLI in **non-interactive mod
|
|
|
110
111
|
```bash
|
|
111
112
|
npx @vc-shell/create-vc-app@alpha <projectName> \
|
|
112
113
|
--type standalone \
|
|
113
|
-
[--dashboard] [--tenant-routes] [--ai-agent] [--mocks]
|
|
114
|
+
[--dashboard] [--tenant-routes] [--ai-agent] [--module-federation] [--mocks]
|
|
114
115
|
```
|
|
115
116
|
|
|
116
117
|
**IMPORTANT:** Do NOT pass `--module-name` — the starter module is opt-in and unnecessary because this skill generates custom modules via `/vc-app generate`.
|
|
@@ -125,6 +126,7 @@ Available CLI flags (see `cli/create-vc-app/README.md` for full list):
|
|
|
125
126
|
| `--dashboard` | Include Dashboard |
|
|
126
127
|
| `--tenant-routes` | Include tenant routing |
|
|
127
128
|
| `--ai-agent` | Include AI Agent config |
|
|
129
|
+
| `--module-federation` | Include Module Federation host runtime |
|
|
128
130
|
| `--mocks` | Include sample modules with mock data (demo content) |
|
|
129
131
|
| `--overwrite` | Overwrite existing files |
|
|
130
132
|
|
|
@@ -1198,7 +1200,7 @@ After the user confirms the plan:
|
|
|
1198
1200
|
If `DESIGN_PLAN.needsScaffold` is true, run the `/vc-app create` flow:
|
|
1199
1201
|
|
|
1200
1202
|
- Use `DESIGN_PLAN.appName` as the project name
|
|
1201
|
-
- Enable default options (no dashboard, no tenant-routes, no ai-agent, no mocks)
|
|
1203
|
+
- Enable default options (no dashboard, no tenant-routes, no ai-agent, no module-federation, no mocks)
|
|
1202
1204
|
- After scaffold completes, `cd` into the new project directory
|
|
1203
1205
|
- Update project root for subsequent steps
|
|
1204
1206
|
|