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
feat: add Agentforce Vibes IDE support and --directory flag for setup skills (#337)
* feat: add Agentforce Vibes IDE support and --directory flag for setup skills
Add `agentforce-vibes` as a new IDE target for `setup skills`, installing
to `.a4drules/skills/` with auto-detection via the Salesforce Agentforce
VS Code extension. Change `manual` default path from `.claude/skills/` to
`.agents/skills/`. Add `--directory` flag for custom install paths.
* Add changeset for Agentforce Vibes and --directory flag
* fix: always include manual in interactive IDE selection list
* feat: prompt for directory path when manual IDE is selected interactively
Add Agentforce Vibes (`--ide agentforce-vibes`) as a supported IDE target for `setup skills`, installing to `.a4drules/skills/`. Add `--directory` flag for custom installation paths. Change `manual` default directory to `.agents/skills/`.
Use `--ide manual` if you prefer manual installationto the same paths.
476
+
Use `--ide manual` if you prefer manual installation, or `--ide agentforce-vibes`to install to the `.a4drules/skills/` directory used by Salesforce Agentforce for VS Code.
See [Setup Commands](/cli/setup) for full CLI documentation.
203
203
204
+
## Installation with Agentforce Vibes
205
+
206
+
[Agentforce for VS Code](https://developer.salesforce.com/docs/einstein/genai/guide/agentforce-in-ide.html) (Agentforce Vibes) automatically detects skills placed in the `.a4drules/skills/` directory.
Place skill directories in `.a4drules/skills/` (project) or your global storage directory:
222
+
223
+
| Location | Scope |
224
+
|----------|-------|
225
+
|`.a4drules/skills/`| Project (recommended) |
226
+
|`~/Library/Application Support/Code/User/globalStorage`| Global (macOS) |
227
+
|`~/.config/Code/User/globalStorage`| Global (Linux) |
228
+
|`%APPDATA%\Code\User\globalStorage`| Global (Windows) |
229
+
230
+
When a global skill and project skill have the same name, the global skill takes precedence. Version control your project skills by committing `.a4drules/skills/` to your source repository so your team can share, review, and improve them together.
231
+
204
232
## Installation with Other IDEs
205
233
206
234
The B2C skills follow the [Agent Skills](https://agentskills.io/home) standard and can be used with other AI-powered development tools.
@@ -253,7 +281,17 @@ Skills are installed to:
253
281
254
282
### Manual Installation
255
283
256
-
For other AI-powered IDEs, download the skills zip files from the [latest GitHub release](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/releases/latest):
284
+
Use `--ide manual` to install to the default `.agents/skills/` directory, or specify a custom path with `--directory`:
You can also download the skills zip files directly from the [latest GitHub release](https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/releases/latest):
0 commit comments