@vc-shell/vc-app-skill 2.0.3-pr227.0c4f2c3 → 2.0.3-pr229.a4f7eec
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 +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ The skill covers:
|
|
|
22
22
|
### Claude Code / Cursor / GitHub Copilot
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npx @vc-shell/vc-app-skill@
|
|
25
|
+
npx @vc-shell/vc-app-skill@latest install
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
Installs skill files into `~/.claude/vc-app-skill/` and registers the `/vc-app` slash command.
|
|
@@ -30,19 +30,19 @@ Installs skill files into `~/.claude/vc-app-skill/` and registers the `/vc-app`
|
|
|
30
30
|
### OpenCode
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npx @vc-shell/vc-app-skill@
|
|
33
|
+
npx @vc-shell/vc-app-skill@latest install --runtime opencode
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### Gemini CLI
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
npx @vc-shell/vc-app-skill@
|
|
39
|
+
npx @vc-shell/vc-app-skill@latest install --runtime gemini
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
### Codex
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
-
npx @vc-shell/vc-app-skill@
|
|
45
|
+
npx @vc-shell/vc-app-skill@latest install --runtime codex
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
### Verify installation
|
|
@@ -180,7 +180,7 @@ Handles topics: widgets, form management (`useBladeForm`), injection-key renames
|
|
|
180
180
|
## Update
|
|
181
181
|
|
|
182
182
|
```bash
|
|
183
|
-
npx @vc-shell/vc-app-skill@
|
|
183
|
+
npx @vc-shell/vc-app-skill@latest install
|
|
184
184
|
```
|
|
185
185
|
|
|
186
186
|
Or from within your AI tool:
|
|
@@ -194,7 +194,7 @@ The installer checks the installed version against the package version and overw
|
|
|
194
194
|
## Uninstall
|
|
195
195
|
|
|
196
196
|
```bash
|
|
197
|
-
npx @vc-shell/vc-app-skill@
|
|
197
|
+
npx @vc-shell/vc-app-skill@latest uninstall
|
|
198
198
|
```
|
|
199
199
|
|
|
200
200
|
Removes skill files from the AI tool's configuration directory. Does not affect your application source code.
|
|
@@ -202,7 +202,7 @@ Removes skill files from the AI tool's configuration directory. Does not affect
|
|
|
202
202
|
To uninstall for a specific runtime:
|
|
203
203
|
|
|
204
204
|
```bash
|
|
205
|
-
npx @vc-shell/vc-app-skill@
|
|
205
|
+
npx @vc-shell/vc-app-skill@latest uninstall --runtime opencode
|
|
206
206
|
```
|
|
207
207
|
|
|
208
208
|
## Architecture
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/vc-app-skill",
|
|
3
|
-
"version": "2.0.3-
|
|
3
|
+
"version": "2.0.3-pr229.a4f7eec",
|
|
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": [
|