@salesforce/afv-skills 1.6.3 → 1.6.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/afv-skills",
3
- "version": "1.6.3",
3
+ "version": "1.6.4",
4
4
  "description": "Salesforce skills for Agentforce Vibes",
5
5
  "license": "CC-BY-NC-4.0",
6
6
  "files": [
@@ -43,7 +43,7 @@ Build a complete, deployable Salesforce React UI bundle application from a natur
43
43
  ### Phase 1: Scaffolding (Foundation)
44
44
 
45
45
  ```
46
- UI Bundle scaffold (sf ui-bundle generate)
46
+ UI Bundle scaffold (sf template generate ui-bundle)
47
47
  v
48
48
  Install dependencies (npm install)
49
49
  v
@@ -214,7 +214,7 @@ Execute each phase sequentially. Complete all steps within a phase before moving
214
214
 
215
215
  **Phase 1 -- Scaffolding**
216
216
  - 1. Load skill: Invoke `generating-ui-bundle-metadata`
217
- - 2. Execute: Run `sf ui-bundle generate`, install dependencies (`npm install`), configure meta XML, ui-bundle.json, and CSP trusted sites
217
+ - 2. Execute: Run `sf template generate ui-bundle`, install dependencies (`npm install`), configure meta XML, ui-bundle.json, and CSP trusted sites
218
218
  - 3. Verify: Confirm directory structure and metadata files exist
219
219
  - 4. Checkpoint: UI bundle scaffold is ready -- proceed to Phase 2
220
220
 
@@ -1,13 +1,13 @@
1
1
  ---
2
2
  name: generating-ui-bundle-metadata
3
- description: "Scaffold new Salesforce UI bundles and configure their metadata — sf ui-bundle generate, UIBundle bundles (meta XML, ui-bundle.json with routing/headers/outputDir), and CSP Trusted Sites for external domains. Use whenever creating a new UI bundle, setting up UI bundle metadata structure, configuring routing or headers, setting outputDir, adding external domains that need CSP registration, or editing bundle configuration. Triggers on: create UI bundle, create ui-bundle, new app, sf ui-bundle generate, metadata, ui-bundle.json, CSP, trusted site, bundle configuration, meta XML, routing config, external domain, headers config, outputDir."
3
+ description: "Scaffold new Salesforce UI bundles and configure their metadata — sf template generate ui-bundle, UIBundle bundles (meta XML, ui-bundle.json with routing/headers/outputDir), and CSP Trusted Sites for external domains. Use whenever creating a new UI bundle, setting up UI bundle metadata structure, configuring routing or headers, setting outputDir, adding external domains that need CSP registration, or editing bundle configuration. Triggers on: create UI bundle, create ui-bundle, new app, sf template generate ui-bundle, metadata, ui-bundle.json, CSP, trusted site, bundle configuration, meta XML, routing config, external domain, headers config, outputDir."
4
4
  ---
5
5
 
6
6
  # UI Bundle Metadata
7
7
 
8
8
  ## Scaffolding a New UI Bundle
9
9
 
10
- Use `sf ui-bundle generate` to create new apps — not create-react-app, Vite, or other generic scaffolds.
10
+ Use `sf template generate ui-bundle` to create new apps — not create-react-app, Vite, or other generic scaffolds.
11
11
 
12
12
  **UI bundle name (`-n`):** Alphanumerical only — no spaces, hyphens, underscores, or special characters. Example: `CoffeeBoutique` (not `Coffee Boutique`).
13
13