@salesforce/afv-skills 1.7.5 → 1.8.0
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 +1 -1
- package/skills/building-ui-bundle-frontend/SKILL.md +2 -0
- package/skills/deploying-ui-bundle/SKILL.md +2 -0
- package/skills/developing-agentforce/SKILL.md +1 -1
- package/skills/generating-apex/SKILL.md +4 -2
- package/skills/generating-apex-test/SKILL.md +3 -1
- package/skills/generating-custom-application/SKILL.md +2 -0
- package/skills/generating-custom-field/SKILL.md +3 -1
- package/skills/generating-custom-lightning-type/SKILL.md +2 -0
- package/skills/generating-custom-object/SKILL.md +3 -1
- package/skills/generating-custom-tab/SKILL.md +3 -1
- package/skills/generating-flexipage/SKILL.md +2 -0
- package/skills/generating-flow/SKILL.md +2 -0
- package/skills/generating-lightning-app/SKILL.md +1 -1
- package/skills/generating-list-view/SKILL.md +2 -0
- package/skills/generating-ui-bundle-features/SKILL.md +2 -0
- package/skills/generating-ui-bundle-metadata/SKILL.md +2 -0
- package/skills/generating-ui-bundle-site/SKILL.md +2 -0
- package/skills/generating-validation-rule/SKILL.md +2 -0
- package/skills/implementing-ui-bundle-agentforce-conversation-client/SKILL.md +1 -1
- package/skills/implementing-ui-bundle-file-upload/SKILL.md +2 -0
- package/skills/observing-agentforce/SKILL.md +1 -1
- package/skills/switching-org/SKILL.md +1 -1
- package/skills/testing-agentforce/SKILL.md +1 -1
- package/skills/uplifting-components-to-slds2/SKILL.md +3 -1
- package/skills/using-ui-bundle-salesforce-data/SKILL.md +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: building-ui-bundle-frontend
|
|
3
3
|
description: "MUST activate before editing ANY file under uiBundles/*/src/ for visual or UI changes to an EXISTING app — pages, components, sections, layout, styling, colors, fonts, navigation, animations, or any look-and-feel change. Use this skill when modifying pages, components, layout, styling, or navigation in an existing UI bundle app. Activate when the project contains appLayout.tsx, routes.tsx, src/pages/, src/components/, or global.css. This skill contains critical project-specific conventions (appLayout.tsx shell, shadcn/ui components, Tailwind CSS, Salesforce base-path routing, module restrictions) that override general knowledge. Without this skill, generated code will use wrong imports, break routing, or ignore project structure. Do NOT use when creating a new app from scratch (use building-ui-bundle-app instead)."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# UI Bundle UI
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: deploying-ui-bundle
|
|
3
3
|
description: "MUST activate when the project contains a uiBundles/*/src/ directory or sfdx-project.json and the task involves deploying, pushing to an org, or post-deploy setup. Use this skill when deploying a UI bundle app to a Salesforce org. Covers the full deployment sequence: org authentication, pre-deploy build, metadata deployment, permission set assignment, data import, GraphQL schema fetch, and codegen. Activate when files like *.uibundle-meta.xml or sfdx-project.json exist and the user mentions deploying, pushing, org setup, or post-deploy tasks."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# Deploying a UI Bundle
|
|
@@ -4,7 +4,7 @@ description: "Build, modify, debug, and deploy agents with Agentforce Agent Scri
|
|
|
4
4
|
license: Apache-2.0
|
|
5
5
|
compatibility: "Requires Agentforce license, API v66.0+, Einstein Agent User"
|
|
6
6
|
metadata:
|
|
7
|
-
version: "0
|
|
7
|
+
version: "1.0"
|
|
8
8
|
last_updated: "2026-04-08"
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-apex
|
|
3
|
-
description: Primary Apex authoring skill for class generation, refactoring, and review. ALWAYS ACTIVATE when the user mentions Apex, .cls, triggers, or asks to create/refactor a class (service, selector, domain, batch, queueable, schedulable, invocable, DTO, utility, interface, abstract, exception, REST resource). Use this skill for requests involving SObject CRUD, mapping collections, fetching related records, scheduled jobs, batch jobs, trigger design, @AuraEnabled controllers, @RestResource endpoints, custom REST APIs, or code review of existing Apex.
|
|
3
|
+
description: "Primary Apex authoring skill for class generation, refactoring, and review. ALWAYS ACTIVATE when the user mentions Apex, .cls, triggers, or asks to create/refactor a class (service, selector, domain, batch, queueable, schedulable, invocable, DTO, utility, interface, abstract, exception, REST resource). Use this skill for requests involving SObject CRUD, mapping collections, fetching related records, scheduled jobs, batch jobs, trigger design, @AuraEnabled controllers, @RestResource endpoints, custom REST APIs, or code review of existing Apex."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# Generating Apex
|
|
@@ -403,4 +405,4 @@ Deploy: <dry-run or next step>
|
|
|
403
405
|
|
|
404
406
|
## Troubleshooting Boundary
|
|
405
407
|
|
|
406
|
-
This skill handles production `.cls`/`.trigger`/`.apex` issues only: compile/parse failures, deployment dependency errors, runtime governor-limit failures. For test execution, assertions, coverage, or `sf apex run test` failures, delegate to `generating-apex-test`.
|
|
408
|
+
This skill handles production `.cls`/`.trigger`/`.apex` issues only: compile/parse failures, deployment dependency errors, runtime governor-limit failures. For test execution, assertions, coverage, or `sf apex run test` failures, delegate to `generating-apex-test`.
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-apex-test
|
|
3
|
-
description: Generate and validate Apex test classes with TestDataFactory patterns, bulk testing (251+ records), mocking strategies, assertion best practices, and disciplined test-fix loops. Use this skill when creating new Apex test classes, improving test coverage, debugging and fixing failing Apex tests, running test execution and coverage analysis, or implementing testing patterns for triggers, services, controllers, batch jobs, queueables, and integrations. Triggers on *Test.cls, *_Test.cls files, sf apex run test workflows, coverage reports, test-fix loops. Do NOT trigger for production Apex code (use generating-apex) or Jest/LWC tests.
|
|
3
|
+
description: "Generate and validate Apex test classes with TestDataFactory patterns, bulk testing (251+ records), mocking strategies, assertion best practices, and disciplined test-fix loops. Use this skill when creating new Apex test classes, improving test coverage, debugging and fixing failing Apex tests, running test execution and coverage analysis, or implementing testing patterns for triggers, services, controllers, batch jobs, queueables, and integrations. Triggers on *Test.cls, *_Test.cls files, sf apex run test workflows, coverage reports, test-fix loops. Do NOT trigger for production Apex code (use generating-apex) or Jest/LWC tests."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# Generating Apex Tests
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-custom-application
|
|
3
3
|
description: "Use this skill when users need to create or configure Salesforce Custom Applications. Trigger when users mention custom apps, application metadata, app navigation, or organizing tabs into applications. Use when users want to create app containers for tabs and pages. Always use this skill for custom application work."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
## When to Use This Skill
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-custom-field
|
|
3
3
|
description: "Use this skill when users need to create, generate, or validate Salesforce Custom Field metadata. Trigger when users mention custom fields, field types, Roll-up Summary fields, Master-Detail relationships, Lookup relationships, formula fields, picklists, or field metadata. Also use when users encounter field deployment errors, especially around Roll-up Summary format, Master-Detail constraints, or formula issues. Always use this skill for any custom field metadata work, field generation, or field troubleshooting."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
## When to Use This Skill
|
|
@@ -498,4 +500,4 @@ Before generating CustomField XML, verify:
|
|
|
498
500
|
|
|
499
501
|
### Naming Checks
|
|
500
502
|
- [ ] Is the API name free of reserved words (`Order`, `Group`, `Select`, etc.)?
|
|
501
|
-
- [ ] Is the API name unique on this object?
|
|
503
|
+
- [ ] Is the API name unique on this object?
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-custom-lightning-type
|
|
3
3
|
description: "Use this skill when users need to create Custom Lightning Types (CLTs) for Einstein Agent actions or structured input/output schemas. Trigger when users mention CLT, Custom Lightning Types, JSON schemas for agents, type definitions, lightning__objectType, or editor/renderer configurations. This is complex - always use this skill for CLT work."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
## When to Use This Skill
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-custom-object
|
|
3
3
|
description: "Use this skill when users need to create, generate, or validate Salesforce Custom Object metadata. Trigger when users mention custom objects, creating objects, object metadata, .object files, sharing models, name fields, or validation rules on objects. Also use when users say things like \"create a custom object\", \"generate object metadata\", \"set up an object for...\", or when they're troubleshooting object deployment errors especially around sharing models and Master-Detail relationships. Always use this skill for any custom object metadata work."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
## When to Use This Skill
|
|
@@ -235,4 +237,4 @@ Before generating the Custom Object XML, verify:
|
|
|
235
237
|
### Architectural Checks
|
|
236
238
|
- [ ] Is `<description>` present with a meaningful summary?
|
|
237
239
|
- [ ] Are `<enableSearch>` and `<enableReports>` set to `true` if user-facing?
|
|
238
|
-
- [ ] Does the filename match the intended API name?
|
|
240
|
+
- [ ] Does the filename match the intended API name?
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-custom-tab
|
|
3
3
|
description: "Use this skill when users need to create or configure Salesforce Custom Tabs. Trigger when users mention tabs, navigation tabs, object tabs, web tabs, Visualforce tabs, Lightning component tabs, app page tabs, or tab configuration. Also use when users want to add navigation to custom objects, create tabs for external content, or set up Lightning page tabs. Always use this skill for any custom tab work."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
## When to Use This Skill
|
|
@@ -151,4 +153,4 @@ Also forbidden:
|
|
|
151
153
|
- Follow consistent naming conventions
|
|
152
154
|
- Object tab files MUST only contain `<customObject>true</customObject>` and `<motif>` — nothing else
|
|
153
155
|
- Web tab files MUST only contain: `<customObject>false</customObject>`, `<label>`, `<motif>`, `<url>`, `<urlEncodingKey>`, and optionally `<description>`, `<frameHeight>` — nothing else
|
|
154
|
-
- Never include `<isHidden>`, `<tabVisibility>`, `<type>`, `<mobileReady>`, or empty elements
|
|
156
|
+
- Never include `<isHidden>`, `<tabVisibility>`, `<type>`, `<mobileReady>`, or empty elements
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-flexipage
|
|
3
3
|
description: "Use this skill when users need to create, generate, modify, or validate Salesforce Lightning pages (FlexiPages). Trigger when users mention RecordPage, AppPage, HomePage, Lightning pages, page layouts, adding components to pages, or page customization. Also use when users say things like 'create a Lightning page', 'add a component to a page', 'customize the record page', 'generate a FlexiPage', or when they're working with FlexiPage XML files and need help with components, regions, or deployment errors. Always use this skill for any FlexiPage-related work, even if they just mention 'page' in the context of Salesforce."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
## When to Use This Skill
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-flow
|
|
3
3
|
description: "Generate Salesforce Flows using the MCP tool execute_metadata_action. Use when the user asks to create, build, or generate a flow — including Screen, Autolaunched, Record-Triggered (before/after-save), Scheduled. Also trigger for flow-like requests such as \"when a record is created\", \"trigger daily at\", \"send an email when\", \"update the field when\", \"automate\", \"workflow\", or \"flow XML/metadata\". This is the only skill for Salesforce Flow generation."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
## Goal
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-lightning-app
|
|
3
|
-
description: Build complete Salesforce Lightning Experience applications from natural language descriptions. Use this skill when a user requests a "complete app", "Lightning app", "business solution", "management system", or describes a scenario requiring multiple interconnected Salesforce components (objects, fields, pages, tabs, security). Orchestrates all required metadata types in proper dependency order to produce a deployable application.
|
|
3
|
+
description: "Build complete Salesforce Lightning Experience applications from natural language descriptions. Use this skill when a user requests a \"complete app\", \"Lightning app\", \"business solution\", \"management system\", or describes a scenario requiring multiple interconnected Salesforce components (objects, fields, pages, tabs, security). Orchestrates all required metadata types in proper dependency order to produce a deployable application."
|
|
4
4
|
metadata:
|
|
5
5
|
version: "1.0"
|
|
6
6
|
related-skills: generating-custom-object, generating-custom-field, generating-custom-tab, generating-flexipage, generating-custom-application, generating-flow, generating-validation-rule, generating-list-view, generating-permission-set
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-list-view
|
|
3
3
|
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."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
## When to Use This Skill
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-ui-bundle-features
|
|
3
3
|
description: "MUST activate when the project contains a uiBundles/*/src/ directory and the user wants to add authentication or search to their app. Use this skill when adding authentication or search to a UI bundle app. Only covers two features: authentication (login, logout, protected routes, session management) and search (global search across pages and content). Always use this skill for these two features instead of building from scratch."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# UI Bundle Features
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-ui-bundle-metadata
|
|
3
3
|
description: "MUST activate when the project contains a uiBundles/*/src/ directory and scaffolding a new UI bundle or app, or when editing ui-bundle.json, .uibundle-meta.xml, or CSP trusted site files. Use this skill when scaffolding with sf template generate ui-bundle, configuring ui-bundle.json (routing, headers, outputDir), or registering CSP Trusted Sites. Activate when the task involves files matching *.uibundle-meta.xml, ui-bundle.json, or cspTrustedSites/*.cspTrustedSite-meta.xml."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# UI Bundle Metadata
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-ui-bundle-site
|
|
3
3
|
description: "MUST activate when the project contains a uiBundles/*/src/ directory and the task involves creating or configuring site infrastructure. Use this skill when creating or configuring a Salesforce Digital Experience Site for hosting a UI bundle. Activate when files matching digitalExperiences/, networks/, customSite/, or DigitalExperienceBundle exist and need modification, or when the user wants to publish, host, or configure guest access for their app."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# Digital Experience Site for React UI Bundles
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: generating-validation-rule
|
|
3
3
|
description: "Use this skill when users need to create, modify, or validate Salesforce Validation Rules. Trigger when users mention validation rules, field validation, data quality rules, formula validation, error messages, or validation logic. Also use when users encounter validation errors, need to update formulas, or want to enforce business rules at the data layer. Always use this skill for any validation rule work."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
## When to Use This Skill
|
|
@@ -3,7 +3,7 @@ name: implementing-ui-bundle-agentforce-conversation-client
|
|
|
3
3
|
description: "MUST activate when the project contains a uiBundles/*/src/ directory and the task involves adding or modifying a chat widget, chatbot, or conversational AI. Use this skill when the user asks to add, embed, integrate, configure, style, or remove an agent, chatbot, chat widget, conversation client, or AI assistant. Covers styling (colors, fonts, spacing, borders), layout (inline vs floating, width, height, dimensions), and props (agentId, agentLabel, headerEnabled, showHeaderIcon, showAvatar, styleTokens). Activate when files under uiBundles/*/src/ import AgentforceConversationClient or when adding any chat or agent functionality to a page. Never create a custom agent, chatbot, or chat widget component."
|
|
4
4
|
metadata:
|
|
5
5
|
author: ACC Components
|
|
6
|
-
version: 1.0
|
|
6
|
+
version: "1.0"
|
|
7
7
|
package: "@salesforce/ui-bundle-template-feature-react-agentforce-conversation-client"
|
|
8
8
|
sdk-package: "@salesforce/agentforce-conversation-client"
|
|
9
9
|
last-updated: 2025-04-01
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: implementing-ui-bundle-file-upload
|
|
3
3
|
description: "MUST activate when the project contains a uiBundles/*/src/ directory and the task involves uploading, attaching, or dropping files. Use this skill when adding file upload functionality to a UI bundle app. Provides progress tracking and Salesforce ContentVersion integration. This feature provides programmatic APIs ONLY — build custom UI using the upload() API. ALWAYS use this instead of building file upload from scratch with FormData or XHR."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# File Upload API (workflow)
|
|
@@ -4,7 +4,7 @@ description: "Analyze production Agentforce agent behavior using session traces
|
|
|
4
4
|
allowed-tools: Bash Read Write Edit Glob Grep
|
|
5
5
|
license: Apache-2.0
|
|
6
6
|
metadata:
|
|
7
|
-
version: "0
|
|
7
|
+
version: "1.0"
|
|
8
8
|
last_updated: "2026-04-08"
|
|
9
9
|
argument-hint: "<org-alias> [--agent-file <path>] [--session-id <id>] [--days <n>]"
|
|
10
10
|
compatibility: claude-code
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: switching-org
|
|
3
|
-
description: Switches the active Salesforce org (default target-org) using the Salesforce CLI. Use whenever someone wants to change which org CLI commands run against — whether they say "switch org", "change default org", "set my org to", "use alias", "point to", or describe wanting to work against a specific org, scratch org, sandbox, or production.
|
|
3
|
+
description: "Switches the active Salesforce org (default target-org) using the Salesforce CLI. Use whenever someone wants to change which org CLI commands run against — whether they say \"switch org\", \"change default org\", \"set my org to\", \"use alias\", \"point to\", or describe wanting to work against a specific org, scratch org, sandbox, or production."
|
|
4
4
|
compatibility: Salesforce CLI (sf) v2+
|
|
5
5
|
metadata:
|
|
6
6
|
version: "1.0"
|
|
@@ -4,7 +4,7 @@ description: "Write, run, and analyze structured test suites for Agentforce agen
|
|
|
4
4
|
allowed-tools: Bash Read Write Edit Glob Grep
|
|
5
5
|
license: Apache-2.0
|
|
6
6
|
metadata:
|
|
7
|
-
version: "0
|
|
7
|
+
version: "1.0"
|
|
8
8
|
last_updated: "2026-04-08"
|
|
9
9
|
argument-hint: "<org-alias> --authoring-bundle <AgentName> [--utterances <file>] | run <org> --target <flow://Name>"
|
|
10
10
|
compatibility: claude-code
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: uplifting-components-to-slds2
|
|
3
|
-
description: Migrate Lightning Web Components from SLDS 1 to SLDS 2 by running the SLDS linter and fixing violations. Use this skill whenever users mention SLDS 2, SLDS uplift, linter violations, LWC token migration, class overrides, hardcoded CSS values that need SLDS hook replacement, or styling hook selection. Covers all styling hook categories — color, spacing, sizing, typography, borders, radius, and shadows. Also use when users mention no-hardcoded-values, no-slds-class-overrides, lwc-to-slds-hooks, no-deprecated-tokens-slds1, or ask about SLDS component migration — even if they don't explicitly say "uplift" or "migration".
|
|
3
|
+
description: "Migrate Lightning Web Components from SLDS 1 to SLDS 2 by running the SLDS linter and fixing violations. Use this skill whenever users mention SLDS 2, SLDS uplift, linter violations, LWC token migration, class overrides, hardcoded CSS values that need SLDS hook replacement, or styling hook selection. Covers all styling hook categories — color, spacing, sizing, typography, borders, radius, and shadows. Also use when users mention no-hardcoded-values, no-slds-class-overrides, lwc-to-slds-hooks, no-deprecated-tokens-slds1, or ask about SLDS component migration — even if they don't explicitly say \"uplift\" or \"migration\"."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# Goal
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: using-ui-bundle-salesforce-data
|
|
3
3
|
description: "MUST activate when the project contains a uiBundles/*/src/ directory and the task involves ANY Salesforce record operation — reading, creating, updating, or deleting. Use this skill when building forms that submit to Salesforce, pages that display Salesforce records, or any code that touches Salesforce objects or custom objects. Activate when files under uiBundles/*/src/ import from @salesforce/sdk-data, or when *.graphql files or codegen.yml exist. This skill owns all Salesforce data access patterns in UI bundles. Does not apply to authentication/OAuth setup, schema changes, Bulk/Tooling/Metadata API, or declarative automation."
|
|
4
|
+
metadata:
|
|
5
|
+
version: "1.0"
|
|
4
6
|
---
|
|
5
7
|
|
|
6
8
|
# Salesforce Data Access
|