sf-omnistudio

sf-omnistudio is a skill for Claude Code from Clientell-Ai/salesforce-skills. It costs 88 tokens per session (4,401 once invoked), scanned A, original, Apache-2.0.

A Salesforce Industries development guide for OmniStudio, a framework for building guided digital experiences from data, server-side processes, and user-interface components.

In plain words
What is it for?
It covers OmniScripts for step-by-step user flows, FlexCards for summary displays, Integration Procedures for server-side orchestration, and Data Mappers for reading, transforming, and writing Salesforce data.
Why use it?
It helps developers understand how OmniStudio parts depend on one another and how to build, review, troubleshoot, or migrate them consistently.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit It covers OmniScripts for step-by-step user flows, FlexCards for summary displays, Integration Procedures for server-side orchestration, and Data Mappers for reading, transforming, and writing Salesforce data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/clientell-ai/salesforce-skills/sf-omnistudio
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Clientell-Ai/salesforce-skills --skill sf-omnistudio
Clone the repo
git clone --depth 1 https://github.com/Clientell-Ai/salesforce-skills

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for sf-omnistudio

README.md
[![agentmods](https://agentmods.dev/badge/skills/clientell-ai/salesforce-skills/sf-omnistudio/github.svg)](https://agentmods.dev/skills/clientell-ai/salesforce-skills/sf-omnistudio)
Your own site
<a href="https://agentmods.dev/skills/clientell-ai/salesforce-skills/sf-omnistudio"><img src="https://agentmods.dev/badge/skills/clientell-ai/salesforce-skills/sf-omnistudio/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for sf-omnistudio

Your own site · 80×15
<a href="https://agentmods.dev/skills/clientell-ai/salesforce-skills/sf-omnistudio"><img src="https://agentmods.dev/badge/skills/clientell-ai/salesforce-skills/sf-omnistudio.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,401 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00088 $0.04401
Opus 5 $0.00044 $0.02201
Sonnet 5 $0.00018 $0.00880
Haiku 4.5 $0.00009 $0.00440

Measured 12d ago against content hash 868824de0f00, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

sf-omnistudio scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/sf-omnistudio/SKILL.md · 350 lines

How it starts

The opening of the file, as written. The whole thing — 350 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OmniStudio Development Guide

You are a Salesforce OmniStudio specialist. Build, review, and troubleshoot all OmniStudio components: OmniScripts, FlexCards, Integration Procedures, and Data Mappers.

OmniStudio Overview

OmniStudio is Salesforce Industries' declarative development framework for building guided digital experiences without code. It provides four primary component types that work together:

Component Purpose Analogy
OmniScript Multi-step guided wizard for user interaction Screen Flow
FlexCard At-a-glance UI card displaying data Lightning Component
Integration Procedure Server-side process orchestration Apex Service Layer
Data Mapper Data extraction, transformation, and loading SOQL + DML abstraction

Component dependency chain (build bottom-up):

Data Mapper --> Integration Procedure --> OmniScript --> FlexCard
   (data)        (orchestration)          (wizard)      (display)

Data Mappers read/write Salesforce data. Integration Procedures orchestrate Data Mappers, Apex, and HTTP calls. OmniScripts present guided UIs that invoke Integration Procedures. FlexCards display summary data and can launch OmniScripts.

Namespace Guide

OmniStudio exists in three namespace variants. You MUST detect the namespace before querying any component metadata.

Namespace Package Industry
Core (no prefix) OmniStudio managed package / Industries Cloud All industries (Spring '22+)
vlocity_cmt Vlocity CMT Communications, Media, Energy
vlocity_ins Vlocity INS Insurance, Health

Namespace Detection

Try querying a known object from each namespace. An INVALID_TYPE error means that variant isn't installed; a valid response (even totalSize: 0) confirms it.

Namespace Test Query Object to Probe
Core sf data query -q "SELECT Id FROM OmniProcess LIMIT 1" -o <org> OmniProcess
vlocity_cmt sf data query -q "SELECT Id FROM vlocity_cmt__OmniScript__c LIMIT 1" -o <org> vlocity_cmt__OmniScript__c
vlocity_ins sf data query -q "SELECT Id FROM vlocity_ins__OmniScript__c LIMIT 1" -o <org> vlocity_ins__OmniScript__c

Read the full file on GitHub · 350 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 350 lines · 88 tokens per session scan A 868824de0f00

Subscribe to this mod's changes

sf-omnistudio is a skill published in the GitHub repository Clientell-Ai/salesforce-skills (15 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 88 tokens to every session and 4,401 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

sdd-apply

Skill "sdd-apply" from Gentleman-Programming/gentle-ai, covering execution role, language domain contract, purpose, what you receive and execution and persistence contract.

Gentleman-Programming/gentle-ai · 0 tokens

om-system-extension

Extend installed Open Mercato modules through UMES enrichers, interceptors, mutation guards, widgets, menus, entity extensions, events, component/page replacements, and overrides. Use for "extend core", "add field/column/action", "hide page", "intercept API", "UMES", or "rozszerz moduł".

open-mercato/open-mercato · 73 tokens

ijfw-ui-spec

Use when the user says: 'ui spec', 'design contract', 'ui audit setup', 'lock the design', 'visual contract', 'ui review setup', or '/ijfw-ui-spec'. Produces UI-SPEC.md as the visual design contract before any frontend or visual-artifact build, and dispatches ijfw-ui-auditor as the final 6-pillar gate.

FerroxLabs/ijfw · 83 tokens

nextjs-fullstack

Use for Next.js App Router, React Server Components, server actions, API routes, auth, database integration, caching, deployment, or full-stack product features.

DominikTobureto/awesome-grok-build · 37 tokens

algolia-search-v2

Algolia Search Integration workflow skill. Use this skill when the user needs Expert patterns for Algolia search implementation, indexing and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.

diegosouzapw/awesome-omni-skills · 50 tokens

devlab-contract-web-server

A guide for agreeing on how a separate frontend and backend communicate through APIs. An API contract defines field types, optional values, data formatting, error codes, and which configuration belongs on each side.

seed-forge/harness-ai-kit · 119 tokens