You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Claude/Copilot plugin marketplace support (#22)
* Add Claude plugin marketplace support
Expose commerce-apps skills as a `cap-dev` plugin via `.claude-plugin/marketplace.json`
so users can install from the Claude/Copilot plugin marketplace. Adds Agent Skills
section to README with installation instructions and manual IDE paths.
* Update marketplace owner to Salesforce
* Add per-IDE installation sections to Agent Skills
* Keep manual installation table for non-marketplace IDEs
Copy file name to clipboardExpand all lines: README.md
+87-50Lines changed: 87 additions & 50 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,35 +30,9 @@ Merchants install Commerce Apps through Business Manager with a click-to-install
30
30
31
31
## Quick Start
32
32
33
-
### Using Claude Code Skills
33
+
### Using Agent Skills
34
34
35
-
If you're using Claude Code, we provide comprehensive skills to streamline development:
36
-
37
-
**Start a new app:**
38
-
```
39
-
/scaffold-app
40
-
```
41
-
42
-
**Generate impex files:**
43
-
```
44
-
/generate-service-impex
45
-
/generate-site-preferences-impex
46
-
/generate-custom-object-impex
47
-
```
48
-
49
-
**Package and validate:**
50
-
```
51
-
/package-app
52
-
/validate-app
53
-
/validate-impex
54
-
```
55
-
56
-
**Submit to registry:**
57
-
```
58
-
/submit-app
59
-
```
60
-
61
-
See [CONTRIBUTING.md](CONTRIBUTING.md) for complete skill documentation.
35
+
If you're using Claude Code, Cursor, Copilot, or another IDE with plugin support, install the `cap-dev` plugin for skills that streamline the full development workflow — see [Agent Skills](#agent-skills) below.
62
36
63
37
### Manual Development
64
38
@@ -198,13 +172,96 @@ Commerce App frontend extensions target the Storefront Next stack:
198
172
199
173
Backend adapters use the Commerce Cloud Script API (CommonJS, `require('dw/...')` modules).
200
174
175
+
## Agent Skills
176
+
177
+
Turn your coding agent into a Commerce Apps specialist. Skills give Claude Code, Cursor, GitHub Copilot, and Codex deep expertise in scaffolding, packaging, validating, and submitting Commerce App Packages.
178
+
179
+
Skills follow the open [Agent Skills](https://agentskills.io/home) standard and work with [Claude Code](https://claude.ai/code), Cursor, GitHub Copilot, VS Code, Codex, and others.
180
+
181
+
### Quick Start
182
+
183
+
Install via your IDE's plugin marketplace or manually copy skills into your IDE's skills directory.
184
+
185
+
#### Claude Code
186
+
187
+
```bash
188
+
claude plugin marketplace add SalesforceCommerceCloud/commerce-apps
189
+
claude plugin install cap-dev --scope project
190
+
```
191
+
192
+
Use `--scope user` instead to install globally across all projects.
193
+
194
+
#### GitHub Copilot (VS Code)
195
+
196
+
In VS Code, open the Command Palette (`Cmd/Ctrl+Shift+P`) and run:
197
+
198
+
```
199
+
Chat: Install Plugin from Source
200
+
```
201
+
202
+
Then enter: `SalesforceCommerceCloud/commerce-apps`
0 commit comments