Top Agent Skills

25837 skills

pranavnagrecha
Lwc Testing
Writes Jest unit tests for Lightning Web Components using @salesforce/sfdx-lwc-jest, covering wire adapter mocks, imperative Apex mocking, and async rerender handling.
15 · bundle
pranavnagrecha
Flow Testing
Defines a test strategy for Salesforce Flow, combining declarative Flow Tests, debug runs, path matrices, test data, and boundary tests for Apex, LWC, and external services.
15 · bundle
pranavnagrecha
Screen Flows
Guides the design and review of interactive Salesforce Flow screens, covering navigation, validation, component choice, and commit timing to avoid common UX failures.
15 · bundle
pranavnagrecha
Drag And Drop
Implements accessible drag-and-drop in Lightning Web Components using the HTML5 Drag and Drop API, with keyboard alternatives, live-region announcements, and file drop zones.
15 · bundle
pranavnagrecha
Soql Security
Prevents SOQL injection and enforces CRUD, FLS, and sharing in Apex queries, with guidance for building, reviewing, and troubleshooting secure data access.
15 · bundle
pranavnagrecha
Lwc Data Table
Guides Lightning Web Component developers in setting up lightning-datatable with stable row identity, typed columns, row actions, inline edit, and bounded infinite loading.
15 · bundle
pranavnagrecha
Lwc Lds Writes
Creates, updates, and deletes Salesforce records from Lightning Web Components using Lightning Data Service, covering record input shapes, error handling, and cache refresh strategies.
15 · bundle
pranavnagrecha
Cpq Data Model
Maps the Salesforce CPQ managed-package object graph (SBQQ__ namespace) and explains when to use the CPQ Quote API for programmatic writes instead of direct DML.
15 · bundle
pranavnagrecha
Fsc Data Model
Explains the Financial Services Cloud data model, covering managed-package and Core FSC object structures, household relationships, financial account ownership, and the rollup framework, with SOQL query patterns.
15 · bundle
pranavnagrecha
Flow For Slack
Guides Salesforce Flow builders through the Flow Core Actions for Slack catalog, covering prerequisites, common patterns, and troubleshooting for sending messages and managing channels.
15 · bundle
pranavnagrecha
Lifecycle Hooks
Builds memory-safe, performant Lightning Web Components with correct lifecycle hook usage, covering build, review, and troubleshooting workflows.
15 · bundle
pranavnagrecha
Lwc Performance
Optimizes Lightning Web Components for slow initial load, heavy rerenders, large-list rendering, payload reduction, and lazy instantiation choices such as lwc:if, tabs, or dynamic components.
15 · bundle
pranavnagrecha
Mcae Pardot API
Integrates with the Account Engagement (Pardot) REST API v5 to authenticate via Salesforce OAuth, perform CRUD on Prospects, query Visitors and Visitor Activities, configure Form Handlers, and handle cursor-based pagination.
15 · bundle
pranavnagrecha
Npsp Data Model
Understand and query the NPSP data model, including namespace prefixes, GAU allocations, recurring donations, relationships, and affiliations.
15 · bundle
pranavnagrecha
Person Accounts
Enables, configures, and troubleshoots Salesforce Person Accounts, covering data model design, IsPersonAccount flag handling, reporting impact, migration planning, and integration requirements.
15 · bundle
pranavnagrecha
Lwc GRAPHQL Wire
Reads related records across multiple sObjects in one GraphQL request, paginates related lists with cursors, and replaces overlapping @wire(getRecord) calls with a single cache-shared query.
15 · bundle
pranavnagrecha
Flow For Admins
Designs, reviews, and troubleshoots Salesforce Flows from an admin perspective, covering flow type selection, bulkification, fault handling, and error diagnosis.
15 · bundle
pranavnagrecha
User Management
Manages the full Salesforce user lifecycle: create, deactivate, freeze, assign licenses, configure profiles and roles, set login restrictions, and set up delegated administration.
15 · bundle
pranavnagrecha
Lwc Accessibility
Guides designing or reviewing Lightning Web Components for keyboard access, semantic labeling, and focus management, prioritizing base components over custom ARIA.
15 · bundle
pranavnagrecha
Lwc Custom Lookup
Builds a custom LWC lookup component with typeahead search via Apex SOSL/SOQL, debounce, keyboard navigation, and pill UI for cases where standard pickers fall short.
15 · bundle
pranavnagrecha
Lwc Drag And Drop
Implements HTML5 drag-and-drop in Lightning Web Components, covering dataTransfer usage, drop targets, visual states, and keyboard accessibility.
15 · bundle
pranavnagrecha
Lwc Styling Hooks
Theme Salesforce Lightning base components and custom LWCs using SLDS Styling Hooks, covering global and component hooks, shadow DOM considerations, Experience Cloud theming, and SLDS 2 migration.
15 · bundle
pranavnagrecha
Lwc Template Refs
Migrate LWC components from fragile querySelector lookups to typed lwc:ref handles, with guidance on lifecycle timing, shadow boundaries, and iterator limitations.
15 · bundle
pranavnagrecha
Escalation Rules
Configure and troubleshoot Salesforce Case Escalation Rules, including time-based entries, business hours, and escalation actions, with guidance on diagnosing why cases are not escalating.
15 · bundle
pranavnagrecha
Mobile Publisher
Plans, configures, and maintains Salesforce Mobile Publisher branded apps for App Store and Google Play distribution, covering build assets, push certificates, and version policies.
15 · bundle
pranavnagrecha
Apex Dml Patterns
Choose between DML statements and Database class methods for bulk Salesforce operations, handling partial success, DMLOptions, and error collection.
15 · bundle
pranavnagrecha
Apex Metadata API
Creates or updates Salesforce metadata components at runtime from Apex using the Metadata namespace, including custom fields, objects, picklist values, and labels, with asynchronous deployment and callback handling.
15 · bundle
pranavnagrecha
Apex System Runas
Impersonate a user in Apex tests with System.runAs to verify sharing, profile, and permission-set behavior, and to work around mixed-DML errors in test setup.
15 · bundle
pranavnagrecha
Invocable Methods
Designs and reviews Apex actions exposed to Flow via @InvocableMethod, focusing on wrapper DTOs, bulk-safe list contracts, and intentional error behavior.
15 · bundle
pranavnagrecha
Soql Fundamentals
Write and debug SOQL queries covering SELECT syntax, filters, sorting, pagination, relationship traversal, and aggregate functions.
15 · bundle
pranavnagrecha
Trigger Framework
Designs, reviews, and troubleshoots Apex triggers using a single-trigger-per-object handler pattern with recursion guards and activation bypass.
15 · bundle
pranavnagrecha
Sosl With Clauses
Guides composing SOSL FIND queries with result-scoping or result-shaping WITH clauses, covering clause order, supported objects, field-type limits, and API-version floors.
15 · bundle
pranavnagrecha
Lwc Async Patterns
Implements async/await and Promise patterns in Lightning Web Components, covering imperative Apex calls, loading states, error handling, parallel calls, and cancellation with AbortController.
15 · bundle
pranavnagrecha
Cpq Pricing Rules
Configures and troubleshoots Salesforce CPQ pricing: Price Rules, Discount Schedules, Block Pricing, Percent of Total, and Contracted Prices.
15 · bundle
pranavnagrecha
Mcae Pardot Setup
Configures Marketing Cloud Account Engagement (MCAE, formerly Pardot) business units: Salesforce v2 connector activation, connector user permissions, Salesforce User Sync, prospect field sync rules, tracking domain setup, and Account Engagement Lightning App installation.
15 · bundle
pranavnagrecha
Media Cloud Setup
Configures Salesforce Media Cloud for advertising sales management, covering ad product catalogs, rate cards, audience targeting, revenue recognition, and ad-server integration.
15 · bundle
pranavnagrecha
Apex Enum Patterns
Use Apex enums for closed-set dispatch and routing, with safe valueOf conversion, exhaustiveness checks, and managed-package considerations.
15 · bundle
pranavnagrecha
Apex REST Services
Guides building, reviewing, and debugging inbound Apex REST resources with explicit status codes, JSON error shapes, and versioned URL mappings.
15 · bundle
pranavnagrecha
Fsl Scheduling API
Implements Apex code that calls the FSL scheduling API (GetSlots, schedule, GradeSlotsService, OAAS) with correct transaction boundaries, bulk patterns, and licensing considerations.
15 · bundle
pranavnagrecha
Flow Bulkification
Redesign Salesforce Flows to handle bulk data loads without hitting transaction limits, using collection-first patterns and safe transaction scope.
15 · bundle
pranavnagrecha
Lwc CSS And Styling
Style Lightning Web Components using SLDS design tokens, styling hooks, scoped CSS, and ::part() while avoiding common pitfalls like !important and shadow-DOM piercing.
15 · bundle
pranavnagrecha
Lwc Lightning Modal
Build accessible modal dialogs in LWC using the LightningModal base class, covering open(), close(), sizes, and accessibility.
15 · bundle
pranavnagrecha
Lwc Pubsub Patterns
Implements sibling communication between Lightning Web Components using Lightning Message Service (LMS) or the legacy pubsub utility, covering message channel definition, publish/subscribe patterns, and scope selection.
15 · bundle
pranavnagrecha
Custom Permissions
Creates, assigns, and checks custom permissions to gate feature access across Salesforce contexts including validation rules, Apex, Flow, Visualforce, and Connected Apps.
15 · bundle
pranavnagrecha
Salesforce Surveys
Design, configure, distribute, and troubleshoot Salesforce Surveys and Feedback Management, including guest user access and branching logic.
15 · bundle
pranavnagrecha
Agent Actions
Designs or reviews Agentforce agent actions, covering Flow, Apex invocable, and prompt-template actions, including naming, input/output contracts, confirmation, and error behavior.
15 · bundle
pranavnagrecha
Batch Apex Patterns
Design, review, and debug Batch Apex contracts, scope sizing, stateful behavior, chaining, and AsyncApexJob monitoring.
15 · bundle
pranavnagrecha
Marketing Cloud API
Integrates Salesforce or external systems with Marketing Cloud Engagement REST and SOAP APIs, covering OAuth 2.0 authentication, journey injection, triggered sends, and Data Extension row operations.
15 · bundle
pranavnagrecha
Npsp Custom Rollups
Configures, troubleshoots, and extends NPSP Customizable Rollups, including rollup definitions, filter groups, batch job modes, and migration from legacy rollups.
15 · bundle
pranavnagrecha
Soql Date Functions
Write SOQL queries that group or filter records by date periods using the 13 SOQL date functions, with rules for WHERE vs GROUP BY placement, date-literal comparisons, and fiscal-year restrictions.
15 · bundle
pranavnagrecha
Scratch Org Pools
Configures pre-created scratch org pools for parallel CI testing, reducing pipeline wait times by claiming pre-warmed orgs instead of provisioning on demand. Covers CumulusCI pool commands, Dev Hub limits, and CI integration.
15 · bundle
comeonoliver
Re
Adds extra research diligence to coding agents: plan sub-questions, retrieve and cross-check sources, and synthesize before implementing.
61
comeonoliver
Unocss
Configure and use UnoCSS, an instant atomic CSS engine that is a superset of Tailwind CSS, including rules, shortcuts, presets, and integrations.
61
comeonoliver
Ralph
Persists through implement-verify-fix loops until a task is fully completed and verified, overriding default stopping behavior.
61
comeonoliver
Obsidian
Manage an Obsidian vault from the command line: locate active vaults, search notes and content, create, move, and delete notes using obsidian-cli.
61
comeonoliver
Polish
Performs a meticulous final pass on frontend work, checking visual alignment, typography, color contrast, interaction states, micro-interactions, content, icons, forms, edge cases, responsiveness, performance, and code quality to elevate work from shipped to polished.
61
comeonoliver
Distill
Simplify UI designs by removing unnecessary complexity, clarifying hierarchy, and focusing on essential elements.
61
comeonoliver
Dogfood
Systematically explores a web application, finds issues, and produces a report with reproduction evidence for each finding.
61
comeonoliver
Extract
Identifies reusable UI patterns, components, and design tokens, then extracts and consolidates them into a design system for systematic reuse.
61
dvcrn
Aeo
Runs AEO audits on deployed sites, applies targeted fixes, validates JSON-LD schema, generates llms.txt files, and monitors changes over time.
32