
Sf Vlocity Build Deploy
- 761 installs
- 423 repo stars
- Updated April 27, 2026
- jaganpro/sf-skills
sf-vlocity-build-deploy is a Salesforce DevOps skill that orchestrates Vlocity OmniStudio DataPack deployments using official Vlocity Build commands and job files for developers managing packExport, packDeploy, and retry
About
sf-vlocity-build-deploy is a Claude Code skill from jaganpro/sf-skills that orchestrates OmniStudio/Vlocity DataPack deployments through the official Vlocity Build command model. It references packExport, packDeploy, packRetry, packContinue, and packGetDiffs along with job-file patterns for projectPath, queries, manifest, and retry/validation flow. The workflow structure follows sf-deploy templates and deployment report patterns contributed by Shreyas Dhond. Salesforce developers use it when promoting Vlocity metadata between orgs with repeatable job files instead of ad hoc CLI steps.
- Orchestrates packExport, packDeploy, packRetry, packContinue and packGetDiffs commands
- Supports job-file patterns with projectPath, queries, manifest and retry/validation flows
- Handles DataPack deployment for Product2 bundles and other OmniStudio components
- Includes failure triage and validation steps for Vlocity environments
- 1 defaultMaxParallel setting with supportHeadersOnly and autoUpdateSettings
Sf Vlocity Build Deploy by the numbers
- 761 all-time installs (skills.sh)
- +4 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #212 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jaganpro/sf-skills --skill sf-vlocity-build-deployAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 761 |
|---|---|
| repo stars | ★ 423 |
| Security audit | 3 / 3 scanners passed |
| Last updated | April 27, 2026 |
| Repository | jaganpro/sf-skills ↗ |
How do you deploy Vlocity OmniStudio DataPacks with Vlocity Build?
Orchestrate Vlocity OmniStudio DataPack deployments using the official Vlocity Build tooling.
Who is it for?
Salesforce OmniStudio developers promoting Vlocity DataPacks across orgs using the official Vlocity Build CLI and job-file patterns.
Skip if: Generic Salesforce metadata deploys unrelated to Vlocity/OmniStudio or teams not using the Vlocity Build tooling.
When should I use this skill?
The user mentions Vlocity Build, OmniStudio DataPack deploy, packDeploy, packRetry, packGetDiffs, or Vlocity job files.
What you get
Vlocity Build job files, deployment orchestration steps, diff reports, and retry/validation runbooks for DataPack promotion.
- Vlocity Build job file
- Deployment orchestration steps
- Pack diff and retry report
Files
sf-vlocity-build-deploy: Vlocity Build DataPack Deployment
Use this skill when the user needs Vlocity DataPack deployment orchestration: export/deploy workflow, manifest-driven deploys, failure triage, and CI/CD sequencing for OmniStudio/Industries DataPacks.
---
When This Skill Owns the Task
Use sf-vlocity-build-deploy when work involves:
vlocity packDeploy,packRetry,packContinue,packExport,packGetDiffs,validateLocalData- DataPack job-file design (
projectPath,expansionPath,manifest,queries) - org-to-org DataPack migration and retry loops
- troubleshooting DataPack dependency, matching-key, and GlobalKey issues
Delegate elsewhere when the user is:
- deploying standard metadata with
sf project deploy-> sf-deploy - building OmniScripts, FlexCards, IPs, or Data Mappers ->
sf-industry-commoncore-* - designing Product2 EPC bundles -> sf-industry-cme-epc-model
- writing Apex/LWC code -> sf-apex, sf-lwc
---
Critical Operating Rules
- Use Vlocity Build (`vlocity`) commands for DataPacks, not
sf project deploy. - Prefer Salesforce CLI auth integration (
-sfdx.username <alias>) over username/password files when available. - Always run a pre-deploy quality gate before full deploy:
1) validateLocalData 2) optional packGetDiffs 3) then packDeploy
- Use
packRetryrepeatedly when error counts are dropping; stop when retries no longer improve results. - Keep matching-key strategy and GlobalKey integrity consistent across source and target orgs.
---
Required Context to Gather First
Ask for or infer:
- source org and target org aliases
- job file path and DataPack project path
- deployment scope (full project, manifest subset, or specific
-key) - whether this is export, deploy, retry, continue, or diff-only
- namespace model (
%vlocity_namespace%,vlocity_cmt, or core) - known constraints (new sandbox bootstrap, trigger behavior, matching key customizations)
Preflight checks:
vlocity help
sf org list
sf org display --target-org <alias> --json
test -f <job-file>.yaml---
Recommended Workflow
1. Ensure tool readiness
npm install --global vlocity
vlocity help2. Validate project data locally
vlocity -sfdx.username <source-alias> -job <job-file>.yaml validateLocalDataUse --fixLocalGlobalKeys only when explicitly requested and after explaining impact.
3. Export from source (when needed)
vlocity -sfdx.username <source-alias> -job <job-file>.yaml packExport
vlocity -sfdx.username <source-alias> -job <job-file>.yaml packRetry4. Deploy to target
vlocity -sfdx.username <target-alias> -job <job-file>.yaml packDeploy
vlocity -sfdx.username <target-alias> -job <job-file>.yaml packRetry5. Continue interrupted jobs
vlocity -sfdx.username <target-alias> -job <job-file>.yaml packContinue6. Verify post-deploy parity
vlocity -sfdx.username <target-alias> -job <job-file>.yaml packGetDiffsJob-file starter: references/job-file-template.md
---
High-Signal Failure Patterns
| Error / symptom | Likely cause | Default fix direction |
|---|---|---|
No match found for ... | missing dependency in target org | include missing DataPack key and redeploy |
Duplicate Results found for ... GlobalKey | duplicate records in target | clean duplicates and re-run deploy |
Multiple Imported Records ... same Salesforce Record | source duplicate matching-key records | remove duplicates in source and re-export |
No Configuration Found | outdated DataPack settings | run packUpdateSettings or enable autoUpdateSettings |
Some records were not processed | settings mismatch / partial dependency state | refresh settings both orgs, then retry |
| SASS / template compile failures | missing referenced UI template assets | export/deploy referenced template dependencies first |
Detailed matrix: references/troubleshooting-matrix.md
---
CI/CD Guidance
Default pipeline shape: 1. authenticate orgs (sf org login ...) 2. validate local DataPack integrity (validateLocalData) 3. export changed scope (packExport or manifest-driven export) 4. deploy (packDeploy) 5. retry loop (packRetry) until stable 6. compare (packGetDiffs) and publish deployment report
For incremental deploy optimization, use job-file options such as:
gitCheck: truegitCheckKey: <folder>manifestfor deterministic scope control
---
Cross-Skill Integration
| Need | Delegate to | Reason |
|---|---|---|
| metadata deploy outside DataPacks | sf-deploy | Metadata API workflows |
| OmniStudio component authoring | sf-industry-commoncore-* | build artifacts before deploy |
| EPC product and offer payload authoring | sf-industry-cme-epc-model | Product2/DataPack model quality |
| Apex trigger/log error diagnosis | sf-debug, sf-apex | automation-side root-cause fixes |
---
Reference Map
Start here
- references/job-file-template.md
- references/troubleshooting-matrix.md
- examples/business-internet-plus-bundle/TRANSCRIPT.md
- examples/business-internet-plus-bundle-deploy/TRANSCRIPT.md
External reference
---
Completion Format
DataPack goal: <export / deploy / retry / diff / ci-cd>
Source org: <alias or N/A>
Target org: <alias or N/A>
Scope: <job file + manifest/key/full>
Result: <passed / failed / partial>
Key findings: <errors, dependencies, retries, diffs>
Next step: <safe follow-up action>Credits & Acknowledgments
This skill is based on practical OmniStudio/Vlocity DataPack deployment workflows and the Vlocity Build command model.
Primary References
- Vlocity Build (official repository): https://github.com/vlocityinc/vlocity_build
- Vlocity Build README command and job-file guidance:
packExport,packDeploy,packRetry,packContinue,packGetDiffs- Job file patterns for
projectPath,queries,manifest, and retry/validation flow
Repository Inputs
skills/sf-deploy/SKILL.md(workflow structure template)skills/sf-deploy/references/(deployment orchestration style and report patterns)
Contributor
- Shreyas Dhond (ShreyasD)
projectPath: .
expansionPath: vlocity
manifest:
- Product2/9f1d3c4a-8e5b-4d71-9a2d-f6b719a90101
autoUpdateSettings: true
defaultMaxParallel: 1
supportHeadersOnly: true
gitCheck: false
Deployment Transcript: Business Internet Plus Bundle
This transcript captures the skills used plus the planning and execution process for deploying business-internet-plus-bundle with Vlocity Build.
---
Task Summary
Deploy the Business Internet Plus Product2 bundle DataPack and document the end-to-end process in sf-vlocity-build-deploy/examples.
---
Skills Used
1) sf-vlocity-build-deploy (Primary)
Why used: The task is DataPack deployment orchestration with Vlocity Build commands (validateLocalData, packDeploy, packRetry) and failure triage.
Applied guidance:
- Validate-first execution (
validateLocalDatabefore deployment). - Deterministic job file (
projectPath,expansionPath,manifest) for reproducible scope. - Retry loop and failure interpretation.
2) sf-industry-cme-epc-model (Supporting)
Why used: The deployment target is an EPC Product2 offer bundle sample with Product Child Item dependencies and companion artifacts.
Applied guidance:
- Confirmed Product2 offer markers and companion file consistency.
- Preserved
%vlocity_namespace%placeholders and stable GlobalKey references.
3) sf-deploy (Supporting preflight pattern)
Why used: Reused deployment preflight discipline for target org/tooling readiness and concise completion reporting.
---
Planning Process (Executed)
1. Confirm where the source bundle artifacts were authored. 2. Stage those artifacts into a standard Vlocity expansion path under vlocity/Product2/<global-key>/. 3. Build a deterministic deploy job file in this example folder. 4. Run pre-deploy validation (validateLocalData). 5. Run actual deployment (packDeploy). 6. Run retry (packRetry) to confirm whether the failure is transient or dependency-blocking. 7. Capture findings and next safe action.
---
Execution Details
A) Staging for deploy
Source payload location:
skills/sf-industry-cme-epc-model/examples/business-internet-plus-bundle
Deploy staging location:
vlocity/Product2/9f1d3c4a-8e5b-4d71-9a2d-f6b719a90101
Staged files include:
Business-Internet-Plus_DataPack.jsonBusiness-Internet-Plus_AttributeAssignments.jsonBusiness-Internet-Plus_ProductChildItems.jsonBusiness-Internet-Plus_PricebookEntries.jsonBusiness-Internet-Plus_PriceListEntries.jsonBusiness-Internet-Plus_ObjectFieldAttributes.jsonBusiness-Internet-Plus_OrchestrationScenarios.jsonBusiness-Internet-Plus_DecompositionRelationships.jsonBusiness-Internet-Plus_CompiledAttributeOverrides.jsonBusiness-Internet-Plus_OverrideDefinitions.jsonBusiness-Internet-Plus_ParentKeys.json
B) Job file used
skills/sf-vlocity-build-deploy/examples/business-internet-plus-bundle-deploy/deploy-business-internet-plus-bundle.yaml
Key settings:
projectPath: .expansionPath: vlocitymanifest: Product2/9f1d3c4a-8e5b-4d71-9a2d-f6b719a90101
C) Commands executed
npx --yes vlocity -sfdx.username sample-uat -job "skills/sf-vlocity-build-deploy/examples/business-internet-plus-bundle-deploy/deploy-business-internet-plus-bundle.yaml" validateLocalData
npx --yes vlocity -sfdx.username sample-uat -job "skills/sf-vlocity-build-deploy/examples/business-internet-plus-bundle-deploy/deploy-business-internet-plus-bundle.yaml" packDeploy
npx --yes vlocity -sfdx.username sample-uat -job "skills/sf-vlocity-build-deploy/examples/business-internet-plus-bundle-deploy/deploy-business-internet-plus-bundle.yaml" packRetryD) Command outcomes
validateLocalData:
- Success (
1 Completed)
packDeploy:
- Auto-settings migration phase completed successfully.
- Bundle deploy failed with dependency error:
This DataPack has a reference to another object which was not found -- Product2/21e9dce1-4f89-4f99-a7b2-9cb5d6332101
packRetry:
- Failed with the same missing reference error.
---
Root Cause
The bundle references child Product2 DataPacks that are not currently present in local expansion scope and/or target org at deploy time.
Missing child Product2 keys confirmed absent from local vlocity/Product2:
21e9dce1-4f89-4f99-a7b2-9cb5d6332101(Managed Router)43f2fd94-6114-449b-a1b4-b8dd7238b202(Internet Security Suite)64a06b24-1135-4f2e-95a1-3a5f5822c303(Static IP Add-On)
---
Completion Block
DataPack goal: deploy
Source org: N/A (local staged payload)
Target org: sample-uat
Scope: Product2/9f1d3c4a-8e5b-4d71-9a2d-f6b719a90101
Result: failed (dependency missing)
Key findings:
- validateLocalData passed (1 completed)
- packDeploy failed: missing referenced child Product2
- packRetry failed with same error
Next step:
- Stage/deploy the three child Product2 DataPacks first (or include them in manifest), then rerun packDeploy and packRetry.projectPath: ../../../../
expansionPath: skills/sf-industry-cme-epc-model/examples/business-internet-plus-bundle
# Deterministic scope for this validation example.
manifest:
- Product2/9f1d3c4a-8e5b-4d71-9a2d-f6b719a90101
autoUpdateSettings: true
defaultMaxParallel: 1
supportHeadersOnly: true
gitCheck: false
Validation Transcript: Business Internet Plus Bundle Deployment
This transcript captures the skills used and the planning/execution process to validate deployment readiness for the business-internet-plus-bundle sample.
---
Task Summary
Validate deployment for the Business Internet Plus bundle and document the process in a new examples folder under sf-vlocity-build-deploy.
---
Skills Used
1) sf-vlocity-build-deploy (Primary)
Why used: The task is Vlocity Build deployment validation for DataPacks (validateLocalData, deployment preflight, and scope verification).
Applied from skill guidance:
- Validate-first workflow (
validateLocalDatabefore deploy). - Required context checks (tooling readiness, org auth, deterministic scope).
- Job-file driven validation with explicit manifest targeting.
2) sf-deploy (Supporting)
Why used: Deployment preflight practices overlap with org readiness checks.
Applied from skill guidance:
- Confirm CLI and org context before execution.
- Capture result and safe next action in a completion block.
3) sf-industry-cme-epc-model (Supporting)
Why used: The target bundle payload was generated as an EPC Product2 offer bundle sample, so EPC-specific structure and guardrails were validated before deployment checks.
Applied from skill guidance:
- Confirm offer markers (
SpecificationType=Offer,SpecificationSubType=Bundle). - Confirm root PCI + child PCI composition.
- Confirm companion bundle artifacts and GlobalKey consistency.
---
Planning Process (Executed)
1. Locate the business-internet-plus-bundle payload and confirm all companion JSON artifacts exist. 2. Run preflight checks for deployment tooling:
vlocityCLI availability.- Salesforce org auth context for target alias.
3. Run file-level integrity checks:
- JSON parse for all bundle artifacts.
- Product2 + PCI + attribute consistency checks.
4. Create a deterministic Vlocity Build job file in this example folder for reproducible validation. 5. Execute validateLocalData against the bundle scope and record outcome. 6. Summarize result, findings, and safe next actions.
---
Execution Log
A) Bundle discovery
- Located bundle payload at:
skills/sf-industry-cme-epc-model/examples/business-internet-plus-bundle- Confirmed 11 companion JSON files exist (
DataPack,AttributeAssignments,ProductChildItems, pricing files, orchestration/decomposition files, overrides, and parent keys).
B) Tooling and org preflight
vlocityglobal binary check: not installed globally (command not found).npx vlocitycheck: available (Vlocity Build v1.17.21).sf org list --json: org context available; target aliassample-uatis connected.
C) File-level integrity validation
Local JSON validation checks passed:
- Missing files:
0 - JSON parse errors:
0 - Product identity checks: name and product code match expected values.
- Offer checks:
SpecificationType=OfferandSpecificationSubType=Bundle. - Composition checks:
1root PCI and3child PCI records. - Attribute checks:
3attribute assignment records. - Key integrity checks: PCI parent references match Product2 GlobalKey.
D) Vlocity validateLocalData execution
Job file used:
skills/sf-vlocity-build-deploy/examples/business-internet-plus-bundle/deploy-business-internet-plus-bundle.yaml
Command:
npx --yes vlocity -sfdx.username sample-uat -job "skills/sf-vlocity-build-deploy/examples/business-internet-plus-bundle/deploy-business-internet-plus-bundle.yaml" validateLocalDataResult:
ValidateLocalData success: 0 Completed
Interpretation:
- Validation command executed successfully.
0 Completedindicates no DataPack records were processed for this scope layout.- This is consistent with the sample payload being stored as a documentation/example artifact rather than a standard
vlocity/expansion deployment path.
---
Validation Outcome
DataPack goal: validate deployment readiness
Source org: N/A
Target org: sample-uat
Scope: deploy-business-internet-plus-bundle.yaml + Product2/9f1d3c4a-8e5b-4d71-9a2d-f6b719a90101
Result: partial
Key findings:
- Bundle JSON payload is internally consistent and structurally valid.
- Vlocity validateLocalData ran successfully but processed 0 DataPacks in current example-folder scope.
Next step:
- Stage the bundle into a standard Vlocity expansion path (for example under `vlocity/Product2/<global-key>/`) and rerun `validateLocalData`, then `packDeploy` and `packGetDiffs`.MIT License
Copyright (c) 2026 Shreyas Dhond and Jag Valaiyapathy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
sf-vlocity-build-deploy
Salesforce Industries DataPack deployment automation using Vlocity Build. Export, validate, deploy, retry, and compare OmniStudio/Vlocity DataPacks with predictable workflow guardrails.
Features
- DataPack Deployment Workflow: Run
packExport,packDeploy,packRetry,packContinue, andpackGetDiffs - Job File Guidance: Build deterministic
projectPath,expansionPath,queries, andmanifestjob patterns - Validation-First Operations: Gate deployment with
validateLocalDataand dependency checks - Failure Triage: Diagnose matching-key, GlobalKey, dependency, and configuration drift failures
- CI/CD Patterns: Support manifest-driven and git-aware deployment sequencing
Installation
# Install as part of sf-skills
npx skills add Jaganpro/sf-skills
# Or install just this skill
npx skills add Jaganpro/sf-skills --skill sf-vlocity-build-deployQuick Start
1. Invoke the skill
Skill: sf-vlocity-build-deploy
Request: "Deploy my OmniStudio DataPacks to UAT using Vlocity Build and include retry guidance."2. Common operations
| Operation | Example Request |
|---|---|
| Export | "Export DataPacks from source org with this job file." |
| Validate local files | "Run pre-deploy validation and identify key issues." |
| Deploy | "Deploy DataPacks to target org using packDeploy." |
| Retry failures | "Run packRetry and summarize what remains." |
| Resume interrupted run | "Continue the failed deployment job." |
| Compare with target | "Run packGetDiffs and report drift." |
Key Commands
# Validate local DataPack integrity
vlocity -sfdx.username [sourceAlias] -job [jobFile].yaml validateLocalData
# Export from source
vlocity -sfdx.username [sourceAlias] -job [jobFile].yaml packExport
# Deploy to target
vlocity -sfdx.username [targetAlias] -job [jobFile].yaml packDeploy
# Retry failed DataPacks
vlocity -sfdx.username [targetAlias] -job [jobFile].yaml packRetry
# Continue interrupted execution
vlocity -sfdx.username [targetAlias] -job [jobFile].yaml packContinue
# Compare local files to target org
vlocity -sfdx.username [targetAlias] -job [jobFile].yaml packGetDiffsBest Practices
| Rule | Details |
|---|---|
| Validate first | Run validateLocalData before deploy |
| Keep scope minimal | Prefer manifest/key-scoped deploys for safer rollouts |
| Retry intentionally | Use packRetry while error count is decreasing |
| Preserve key strategy | Keep matching keys and GlobalKeys consistent across orgs |
| Compare post-deploy | Run packGetDiffs to verify target parity |
Cross-Skill Integration
| Related Skill | When to Use |
|---|---|
| sf-deploy | Deploy non-DataPack Salesforce metadata with sf project deploy |
| sf-industry-commoncore-omniscript | Author OmniScripts before deployment |
| sf-industry-commoncore-flexcard | Build FlexCards before deployment |
| sf-industry-commoncore-integration-procedure | Build Integration Procedures before deployment |
| sf-debug | Investigate runtime/triggers/log failures surfaced during deploy |
Documentation
- SKILL.md - Full DataPack deployment workflow and operating rules
- references/job-file-template.md - Baseline job file patterns
- references/troubleshooting-matrix.md - Common failures and fix directions
- examples/business-internet-plus-bundle/TRANSCRIPT.md - Validation planning/execution transcript and outcomes
- examples/business-internet-plus-bundle-deploy/TRANSCRIPT.md - Deployment execution transcript with packDeploy/packRetry results
Requirements
- Node.js 18+
- Vlocity Build CLI (
npm install --global vlocity) - Salesforce CLI v2 (for org auth and context)
- Source and target org access
License
MIT License. See LICENSE.
Vlocity Build Job File Template
Use this as a baseline and keep only settings you need to override.
projectPath: .
expansionPath: vlocity
# Optional: narrow export scope
queries:
- OmniScript
- IntegrationProcedure
- DataRaptor
- FlexCard
# Optional: deterministic targeted scope
# manifest:
# - Product2/<global-key>
# - OmniScript/<type>_<subtype>_<language>
# Optional runtime controls
autoUpdateSettings: true
defaultMaxParallel: 1
supportHeadersOnly: true
gitCheck: falseCommon command patterns
# Export
vlocity -sfdx.username <source> -job <job>.yaml packExport
# Deploy
vlocity -sfdx.username <target> -job <job>.yaml packDeploy
# Retry
vlocity -sfdx.username <target> -job <job>.yaml packRetry
# Continue interrupted
vlocity -sfdx.username <target> -job <job>.yaml packContinueVlocity Build Troubleshooting Matrix
| Symptom | Quick checks | Typical fix |
|---|---|---|
No match found for ... | Is referenced key present in exported folder and target org? | Deploy missing dependency first, then packRetry |
Duplicate Results found for ... GlobalKey | Query target org for duplicate GlobalKey values | Remove duplicates in target, rerun deploy |
Multiple Imported Records ... same Salesforce Record | Check source for duplicate matching-key combinations | Clean source data, re-export, then redeploy |
No Configuration Found | Was packUpdateSettings run recently? | Run packUpdateSettings (or keep autoUpdateSettings: true) |
Some records were not processed | Compare settings and package versions across orgs | Refresh settings in both orgs, then packRetry |
| SASS/template compile errors | Are referenced UI templates exported? | Export missing templates by key and redeploy |
Retry strategy
1. Run packRetry. 2. Check if error count decreases. 3. Repeat until error count plateaus. 4. Fix root data/config issue before further retries.
Data hygiene checks
vlocity -sfdx.username <org> -job <job>.yaml validateLocalData
vlocity -sfdx.username <org> -job <job>.yaml packGetDiffsRelated skills
How it compares
Use sf-vlocity-build-deploy for Vlocity/OmniStudio DataPacks; use standard SFDX deploy skills for non-Vlocity Salesforce metadata.
FAQ
Which Vlocity Build commands does sf-vlocity-build-deploy cover?
sf-vlocity-build-deploy covers packExport, packDeploy, packRetry, packContinue, and packGetDiffs using job-file patterns for projectPath, queries, manifest, and retry validation from the official vlocity_build tool.
What Salesforce stack does sf-vlocity-build-deploy target?
sf-vlocity-build-deploy targets OmniStudio and Vlocity DataPack deployments on Salesforce orgs, not generic SFDX metadata unrelated to the Vlocity Build command model.
Is Sf Vlocity Build Deploy safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.