Install
$ agentstack add skill-jaganpro-sf-skills-sf-vlocity-build-deploy ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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](../sf-deploy/SKILL.md) - building OmniScripts, FlexCards, IPs, or Data Mappers ->
sf-industry-commoncore-* - designing Product2 EPC bundles -> [sf-industry-cme-epc-model](../sf-industry-cme-epc-model/SKILL.md)
- writing Apex/LWC code -> [sf-apex](../sf-apex/SKILL.md), [sf-lwc](../sf-lwc/SKILL.md)
Critical Operating Rules
- Use Vlocity Build (
vlocity) commands for DataPacks, notsf project deploy. - Prefer Salesforce CLI auth integration (
-sfdx.username) 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 --json
test -f .yaml
Recommended Workflow
1. Ensure tool readiness
npm install --global vlocity
vlocity help
2. Validate project data locally
vlocity -sfdx.username -job .yaml validateLocalData
Use --fixLocalGlobalKeys only when explicitly requested and after explaining impact.
3. Export from source (when needed)
vlocity -sfdx.username -job .yaml packExport
vlocity -sfdx.username -job .yaml packRetry
4. Deploy to target
vlocity -sfdx.username -job .yaml packDeploy
vlocity -sfdx.username -job .yaml packRetry
5. Continue interrupted jobs
vlocity -sfdx.username -job .yaml packContinue
6. Verify post-deploy parity
vlocity -sfdx.username -job .yaml packGetDiffs
Job-file starter: [references/job-file-template.md](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](references/troubleshooting-matrix.md)
CI/CD Guidance
Default pipeline shape:
- authenticate orgs (
sf org login ...) - validate local DataPack integrity (
validateLocalData) - export changed scope (
packExportor manifest-driven export) - deploy (
packDeploy) - retry loop (
packRetry) until stable - compare (
packGetDiffs) and publish deployment report
For incremental deploy optimization, use job-file options such as:
gitCheck: truegitCheckKey:manifestfor deterministic scope control
Cross-Skill Integration
| Need | Delegate to | Reason | |---|---|---| | metadata deploy outside DataPacks | [sf-deploy](../sf-deploy/SKILL.md) | Metadata API workflows | | OmniStudio component authoring | sf-industry-commoncore-* | build artifacts before deploy | | EPC product and offer payload authoring | [sf-industry-cme-epc-model](../sf-industry-cme-epc-model/SKILL.md) | Product2/DataPack model quality | | Apex trigger/log error diagnosis | [sf-debug](../sf-debug/SKILL.md), [sf-apex](../sf-apex/SKILL.md) | automation-side root-cause fixes |
Reference Map
Start here
- [references/job-file-template.md](references/job-file-template.md)
- [references/troubleshooting-matrix.md](references/troubleshooting-matrix.md)
- [examples/business-internet-plus-bundle/TRANSCRIPT.md](examples/business-internet-plus-bundle/TRANSCRIPT.md)
- [examples/business-internet-plus-bundle-deploy/TRANSCRIPT.md](examples/business-internet-plus-bundle-deploy/TRANSCRIPT.md)
External reference
Completion Format
DataPack goal:
Source org:
Target org:
Scope:
Result:
Key findings:
Next step:
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Jaganpro
- Source: Jaganpro/sf-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.