commerce-b2b-open-code…
Integrate Salesforce B2B Commerce open source components from GitHub into B2B Commerce stores. Use when users mention \"integrate open code components\",…
Use this skill when users need to create, generate, or validate Salesforce List View metadata. Trigger when users mention list views, filtered record lists, creating views, setting up record columns, filtering records by criteria, or ask about list view visibility. Also use when
$ npx -y skills add forcedotcom/sf-skills --skill platform-list-view-generate --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/platform-list-view-generateContext preview
The summary Claude sees to decide when to auto-load this skill.
Use this skill when users need to create, generate, or validate Salesforce List View metadata. Trigger when users mention list views, filtered record lists, creating views, setting up record columns, filtering records by criteria, or ask about list view visibility. Also use when
name: platform-list-view-generate description: "Use this skill when users need to create, generate, or validate Salesforce List View metadata. Trigger when users mention list views, filtered record lists, creating views, setting up record columns, filtering records by criteria, or ask about list view visibility. Also use when users say things like \"I need a view that shows...\", \"filter records by...\", \"create a list view for...\", or when they're working with ListView XML files and need validation or troubleshooting." metadata: version: "1.0" domains: ["Platform"] minApiVersion: "51.0"
Use this skill when you need to:
Salesforce List Views define filtered, column-based record listings on an object's tab.
Unless specifically requested to be generated inline, List Views are stored at:
Only if the user requests are they to be included in the object's metadata file:
Key elements:
References:
Choose how broadly the view should appear in the org.
**Choose "Visible to all users" when:**
**Choose "Owner-only/Restricted" when:**
**When in doubt:** Default to "Visible to all users".
**Choose minimal, high-signal columns when:**
**Choose richer column sets when:**
**When in doubt:** Start with 4–6 columns that directly support the primary task.
For custom fields, use exact API names (e.g., Status__c), not labels.
Wrong:
Right:
For standard fields on Custom Objects, use already defined names:
Wrong:
Right:
The standard fields on Custom Objects are:
Picklists require equals/notEqual; date fields require date operators; boolean values are 0 and 1; do not mix text-only operators with non-text fields.
Wrong:
Right:
File name, fullName (also sometimes referred to as DeveloperName), and uniqueness must align.
Wrong:
Right:
Place files under the object's listViews directory or deployments will fail to resolve components. Only if a user requests it, may the listView may be included inline in force-app/main/default/objects/<ObjectName>/<ObjectName>.object-meta.xml
Path:
Document before implementation:
Use a Lightning-compatible template and ensure valid XML:
<?xml version="1.0" encoding="UTF-8"?>
<ListView xmlns="http://soap.sforce.com/2006/04/metadata">
<fullName>OpenMine</fullName>
<label>Open - My Records</label>
<filterScope>Mine</filterScope>
<columns>NAME</columns>
<columns>Status__c</columns>
<columns>OWNER.ALIAS</columns>
<columns>LAST_UPDATE</columns>
<filters>
<field>Status__c</field>
<operation>equals</operation>
<value>OpeThis repository provides a curated collection of Salesforce agent skills for building applications.
Repo: forcedotcom/sf-skills
Integrate Salesforce B2B Commerce open source components from GitHub into B2B Commerce stores. Use when users mention \"integrate open code components\",…
Replace OOTB (out-of-the-box) B2B Commerce components with open source equivalents in site metadata content.json files, or look up the equivalent open code…
Use this skill to diagnose and resolve what blocks a DevOps Center promotion of a work item's feature branch: Git merge conflicts and deployment failures.…
Use this skill to manage the full lifecycle of a DevOps Center pipeline — list all pipelines, get a single pipeline's details, create a new pipeline linked to…
Analyzes DevOps Center test failures and Code Analyzer violations in plain language — failure category, offending file/class/method/line, rule violated, fix…
Configures DevOps Center pipeline testing infrastructure: enables a test provider so its suites become available, re-syncs a configured provider to pull in new…