@vc-shell/vc-app-skill 2.5.0-pr318.ac8415b → 2.5.0-pr320.75ed0de
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 +2 -4
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-pr320.75ed0de",
|
|
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,7 +101,6 @@ 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)
|
|
105
104
|
- `--mocks` — Include sample modules with mock data (demo content to explore the framework)
|
|
106
105
|
|
|
107
106
|
### Execution
|
|
@@ -111,7 +110,7 @@ Collect project parameters through dialog, then run CLI in **non-interactive mod
|
|
|
111
110
|
```bash
|
|
112
111
|
npx @vc-shell/create-vc-app@alpha <projectName> \
|
|
113
112
|
--type standalone \
|
|
114
|
-
[--dashboard] [--tenant-routes] [--ai-agent] [--
|
|
113
|
+
[--dashboard] [--tenant-routes] [--ai-agent] [--mocks]
|
|
115
114
|
```
|
|
116
115
|
|
|
117
116
|
**IMPORTANT:** Do NOT pass `--module-name` — the starter module is opt-in and unnecessary because this skill generates custom modules via `/vc-app generate`.
|
|
@@ -126,7 +125,6 @@ Available CLI flags (see `cli/create-vc-app/README.md` for full list):
|
|
|
126
125
|
| `--dashboard` | Include Dashboard |
|
|
127
126
|
| `--tenant-routes` | Include tenant routing |
|
|
128
127
|
| `--ai-agent` | Include AI Agent config |
|
|
129
|
-
| `--module-federation` | Include Module Federation host runtime |
|
|
130
128
|
| `--mocks` | Include sample modules with mock data (demo content) |
|
|
131
129
|
| `--overwrite` | Overwrite existing files |
|
|
132
130
|
|
|
@@ -1200,7 +1198,7 @@ After the user confirms the plan:
|
|
|
1200
1198
|
If `DESIGN_PLAN.needsScaffold` is true, run the `/vc-app create` flow:
|
|
1201
1199
|
|
|
1202
1200
|
- Use `DESIGN_PLAN.appName` as the project name
|
|
1203
|
-
- Enable default options (no dashboard, no tenant-routes, no ai-agent, no
|
|
1201
|
+
- Enable default options (no dashboard, no tenant-routes, no ai-agent, no mocks)
|
|
1204
1202
|
- After scaffold completes, `cd` into the new project directory
|
|
1205
1203
|
- Update project root for subsequent steps
|
|
1206
1204
|
|