Skip to content

Commit 75baad7

Browse files
committed
docs(home): custom feature icons and correct Codex install steps
Replace emoji feature icons with brand-gradient SVGs (CLI, skills, MCP) and style them with a soft brand-tinted tile. Fix Codex install instructions on both the homepage and agent-skills guide to use `codex plugin marketplace add` plus the interactive `/plugins` picker.
1 parent c47b4b5 commit 75baad7

7 files changed

Lines changed: 93 additions & 17 deletions

File tree

.agents/plugins/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "b2c-developer-tooling",
3-
"interface": {
3+
"interface": {
44
"displayName": "B2C Developer Tooling"
55
},
66
"plugins": [

docs/.vitepress/theme/custom.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
margin-bottom: 0;
3333
transform: none;
3434
max-width: 100% !important;
35+
margin-left: 60px;
3536
}
3637
}
3738

@@ -44,3 +45,17 @@
4445
max-height: 500px;
4546
object-fit: contain;
4647
}
48+
49+
/* Home features icon treatment */
50+
.VPFeature .box .icon {
51+
background-color: var(--vp-c-brand-soft);
52+
width: 56px;
53+
height: 56px;
54+
font-size: 28px;
55+
border-radius: 12px;
56+
}
57+
58+
.VPFeature .box .icon img {
59+
width: 32px;
60+
height: 32px;
61+
}

docs/guide/agent-skills.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ copilot plugin install b2c-cli@b2c-developer-tooling
3939
copilot plugin install b2c@b2c-developer-tooling
4040
```
4141

42-
```text [Codex]
43-
Open this repository as a workspace, then restart Codex. Open the plugin
44-
directory and select the "B2C Developer Tooling" marketplace — install
45-
b2c-cli and/or b2c from there.
42+
```bash [Codex]
43+
codex plugin marketplace add SalesforceCommerceCloud/b2c-developer-tooling
44+
# Then in Codex, run /plugins, select the "B2C Developer Tooling"
45+
# marketplace, and select and install the desired plugins.
4646
```
4747

4848
```bash [B2C CLI]
@@ -115,7 +115,22 @@ claude plugin marketplace remove b2c-developer-tooling
115115

116116
## Install Codex Plugin
117117

118-
Open this repository as a workspace and restart Codex. Open the plugin directory, select the **B2C Developer Tooling** marketplace, and install `b2c-cli` and/or `b2c`.
118+
Add the marketplace:
119+
120+
```bash
121+
codex plugin marketplace add SalesforceCommerceCloud/b2c-developer-tooling
122+
```
123+
124+
Then in Codex run `/plugins`, select the **B2C Developer Tooling** marketplace, and select and install the desired plugins.
125+
126+
Codex does not yet support installing plugins from the command line — installs happen from the interactive `/plugins` picker. You can also point Codex at a local marketplace directory by running `codex plugin marketplace add <path-to-dir>`.
127+
128+
Upgrade or remove the marketplace later with:
129+
130+
```bash
131+
codex plugin marketplace upgrade b2c-developer-tooling
132+
codex plugin marketplace remove b2c-developer-tooling
133+
```
119134

120135
> **Note:** The `b2c-dx-mcp` plugin is available only for Claude Code. For other clients, install the MCP server directly — see [MCP Installation](/mcp/installation).
121136

docs/index.md

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,26 @@ hero:
2525
link: /cli/
2626

2727
features:
28-
- icon: "\u26A1"
28+
- icon:
29+
src: /icons/cli.svg
30+
width: 48
31+
height: 48
2932
title: CLI for Every Workflow
3033
details: Deploy cartridges, run jobs, manage ODS and MRT, import/export site archives, work with WebDAV, and automate CI/CD — all from the terminal. The foundation everything else builds on.
31-
link: /cli/
32-
linkText: CLI reference
33-
- icon: "\U0001F9E0"
34+
link: /guide/
35+
linkText: Get started
36+
- icon:
37+
src: /icons/skills.svg
38+
width: 48
39+
height: 48
3440
title: Coding Skills for Your AI Agent
3541
details: 30+ preconfigured skills teach Claude Code, Cursor, Agentforce Vibes, Copilot, and Codex how B2C Commerce works — SCAPI, SLAS, SFRA, ISML, Page Designer, hooks, custom objects — and which CLI commands to run when.
3642
link: /guide/agent-skills
3743
linkText: Install skills
38-
- icon: "\U0001F916"
44+
- icon:
45+
src: /icons/mcp.svg
46+
width: 48
47+
height: 48
3948
title: MCP Server
4049
details: A focused set of MCP tools that complement the CLI for agent-driven workflows. Pairs naturally with skills.
4150
link: /mcp/
@@ -66,11 +75,6 @@ Detailed setup: [Agentforce Vibes](/guide/agent-skills#installation-with-agentfo
6675

6776
::: code-group
6877

69-
```bash [Agentforce Vibes]
70-
# Marketplace install coming soon. For now, use the B2C CLI:
71-
npx @salesforce/b2c-cli setup skills --ide agentforce-vibes
72-
```
73-
7478
```bash [Claude Code]
7579
claude plugin marketplace add SalesforceCommerceCloud/b2c-developer-tooling
7680
# Use --scope user to install globally (available in all projects)
@@ -92,10 +96,17 @@ copilot plugin install b2c@b2c-developer-tooling
9296
```
9397

9498
```bash [Codex]
99+
codex plugin marketplace add SalesforceCommerceCloud/b2c-developer-tooling
100+
# Then in Codex, run /plugins, select the "B2C Developer Tooling"
101+
# marketplace, and select and install the desired plugins.
102+
```
103+
104+
```bash [Agentforce Vibes]
95105
# Marketplace install coming soon. For now, use the B2C CLI:
96-
npx @salesforce/b2c-cli setup skills --ide codex
106+
npx @salesforce/b2c-cli setup skills --ide agentforce-vibes
97107
```
98108

109+
99110
```bash [B2C CLI]
100111
npx @salesforce/b2c-cli setup skills
101112
```

docs/public/icons/cli.svg

Lines changed: 11 additions & 0 deletions
Loading

docs/public/icons/mcp.svg

Lines changed: 13 additions & 0 deletions
Loading

docs/public/icons/skills.svg

Lines changed: 11 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)