Skip to content

josecdiaz/sf-skills

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

538 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Salesforce Skills for Agentic Coding Tools

💙 Community-powered agentic coding knowledge, shared by a Salesforce Certified Technical Architect (CTA)

Author License: MIT Skills Claude Code Agents Standard

A reusable skill library for Salesforce-focused coding agents—covering Apex, Flow, LWC, SOQL, metadata, integration, testing, deployment, and Agentforce workflows.

Included: 25 Salesforce skills, 7 specialist Claude Code agents, a shared hook system for guardrails and auto-validation, and LSP-backed feedback for Apex, LWC, and Agent Script.

Start here: Available Skills · Installation · Claude Code Features · Skill Architecture


✨ Available Skills

The library is organized by capability area so you can scan quickly, pick the right entry point, and jump straight into the relevant skill folder.

Area Skills Best for
💻 Development sf-apex, sf-flow, sf-lwc, sf-soql Apex, Flow, LWC, and query development
🧪 Quality sf-testing, sf-debug Test execution, coverage analysis, and debug-log troubleshooting
📦 Foundation sf-metadata, sf-data, sf-docs, sf-permissions Metadata generation, data operations, access analysis, and official Salesforce docs retrieval
🔌 Integration sf-connected-apps, sf-integration OAuth, External Client Apps, Named Credentials, callouts, and events
🤖 AI & Automation sf-ai-agentscript, sf-ai-agentforce, sf-ai-agentforce-testing, sf-ai-agentforce-observability, sf-ai-agentforce-persona Agent design, Agent Script, testing, observability, and persona design
🚀 DevOps & Tooling sf-deploy, sf-diagram-mermaid, sf-diagram-nanobananapro Deployment automation, Mermaid diagrams, and visual artifacts
🏢 Industries sf-industry-commoncore-omnistudio-analyze, sf-industry-commoncore-datamapper, sf-industry-commoncore-integration-procedure, sf-industry-commoncore-omniscript, sf-industry-commoncore-flexcard OmniStudio: DataMappers, Integration Procedures, OmniScripts, FlexCards, dependency analysis

🚀 Installation

Choose Your Path

If you want... Use this Best for
Skills only, any supported coding agent npx skills add Jaganpro/sf-skills Codex, Gemini CLI, OpenCode, Amp, Claude Code without local hooks
Full Claude Code experience curl -sSL https://raw.githubusercontent.com/Jaganpro/sf-skills/main/tools/install.sh | bash Hooks, agents, LSP, guardrails, org preflight
Manual / Windows / CI-friendly install curl -sSL https://raw.githubusercontent.com/Jaganpro/sf-skills/main/tools/install.py | python3 Direct installer control without bash wrapper

Any AI Coding Agent

Requires Node.js 18+ (provides the npx command)

npx skills add Jaganpro/sf-skills

Works with Claude Code, Codex, Gemini CLI, OpenCode, Amp, and 40+ agents.

# Install a single skill
npx skills add Jaganpro/sf-skills --skill sf-apex

# List available skills before installing
npx skills add Jaganpro/sf-skills --list

Claude Code (Full Experience)

Using Claude Code? This path is recommended — npx installs skills only, while the installer adds the full local experience: skills + agents + hooks + LSP + guardrails.

curl -sSL https://raw.githubusercontent.com/Jaganpro/sf-skills/main/tools/install.sh | bash

This installs 25 skills, 7 specialist agents, a shared hook system, and the local LSP engine. It also configures guardrails, auto-validation on Write/Edit, org preflight checks, and background LSP prewarm.

Restart Claude Code after installation.

Direct Python Installer (manual / Windows / CI)

curl -sSL https://raw.githubusercontent.com/Jaganpro/sf-skills/main/tools/install.py | python3

Use this path when you want to:

  • review installer output directly
  • run on Windows without the bash wrapper
  • script installs in CI or managed environments
  • access advanced installer commands immediately

Updating

Install Method Check for Updates Update
npx npx skills check npx skills update
install.py python3 ~/.claude/sf-skills-install.py --status python3 ~/.claude/sf-skills-install.py --update

Managing install.py

After sf-skills is installed, use the installed copy at ~/.claude/sf-skills-install.py for normal updates. Use tools/install.py only when developing or testing from a cloned repo checkout.

python3 ~/.claude/sf-skills-install.py --status            # Check version and install state
python3 ~/.claude/sf-skills-install.py --update            # Update to latest
python3 ~/.claude/sf-skills-install.py --force-update      # Reinstall even if already current
python3 ~/.claude/sf-skills-install.py --diagnose          # Run installer diagnostics
python3 ~/.claude/sf-skills-install.py --restore-settings  # Restore settings.json from backup
python3 ~/.claude/sf-skills-install.py --cleanup           # Clean legacy artifacts
python3 ~/.claude/sf-skills-install.py --uninstall         # Remove everything installed by sf-skills
python3 ~/.claude/sf-skills-install.py --dry-run           # Preview without applying

Installer Profiles

python3 ~/.claude/sf-skills-install.py --profile list
python3 ~/.claude/sf-skills-install.py --profile save personal
python3 ~/.claude/sf-skills-install.py --profile use enterprise
python3 ~/.claude/sf-skills-install.py --profile show enterprise
python3 ~/.claude/sf-skills-install.py --profile delete old

Upgrading from npx to install.py? Just run the installer command above — it auto-detects and migrates.

What Gets Installed (install.py only)

~/.claude/
├── skills/                    # 25 Salesforce skills
│   ├── sf-apex/SKILL.md
│   ├── sf-flow/SKILL.md
│   └── ... (18 more)
├── agents/                    # 7 FDE + PS agents
│   ├── fde-strategist.md
│   ├── fde-engineer.md
│   └── ... (5 more)
├── hooks/                     # Shared hook system and registry
│   ├── scripts/
│   └── skills-registry.json
├── lsp-engine/                # LSP wrappers (Apex, LWC, AgentScript)
├── .sf-skills.json            # Version + metadata
└── sf-skills-install.py       # Installer for updates

Active hook lifecycle:

Event What it does
SessionStart Session init, org preflight, LSP prewarm
PreToolUse Guardrails + API version checks before Bash / Salesforce tool usage
PostToolUse Validator dispatcher for file-aware checks after Write/Edit

For deeper install and hook internals, see tools/README.md and shared/hooks/README.md.

⚙️ Claude Code Features

💡 Auto-Activation

Skills are available as slash commands (for example /sf-apex, /sf-flow, /sf-ai-agentscript). Claude can also select the appropriate skill dynamically from your request context — keywords, intent, and file patterns in shared/hooks/skills-registry.json document what each skill is best at.


Automatic Validation Hooks

Each skill includes validation hooks that run automatically on Write and Edit operations:

Skill File Type Validation
sf-apex *.cls, *.trigger 150-pt scoring + Code Analyzer + LSP
🔄 sf-flow *.flow-meta.xml 110-pt scoring + Flow Scanner
sf-lwc *.js (LWC) 140-pt scoring + LSP syntax validation
sf-lwc *.html (LWC) Template validation (directives, expressions)
🔍 sf-soql *.soql 100-pt scoring + Live Query Plan API
🧪 sf-testing *Test.cls 100-pt scoring + coverage analysis
🐛 sf-debug Debug logs 90-pt scoring + governor analysis
📋 sf-metadata *.object-meta.xml, *.field-meta.xml, *.permissionset-meta.xml Metadata best practices
💾 sf-data *.apex, *.soql SOQL patterns + Live Query Plan
🤖 sf-ai-agentscript *.agent Agent Script syntax, ASV-* rule checks, org-aware validation + LSP auto-fix
🧪 sf-ai-agentforce-testing Test spec YAML 100-pt scoring + fix loops
🔐 sf-connected-apps *.connectedApp-meta.xml OAuth security validation
🔗 sf-integration *.namedCredential-meta.xml 120-pt scoring + callout patterns
📸 sf-diagram-nanobananapro Generated images Prerequisites check
Validator Dispatcher Architecture

All PostToolUse validations are routed through a central dispatcher (shared/hooks/scripts/validator-dispatcher.py) that receives file paths from Write/Edit hook context, matches file patterns to determine which validators to run, and returns combined validation output.

Routing Table:

Pattern Skill Validators
*.agent sf-ai-agentscript agentscript-syntax-validator.py
*.cls, *.trigger sf-apex apex-lsp-validate.py + post-tool-validate.py
*.flow-meta.xml sf-flow post-tool-validate.py
/lwc/**/*.js sf-lwc lwc-lsp-validate.py + post-tool-validate.py
/lwc/**/*.html sf-lwc template_validator.py
*.object-meta.xml sf-metadata validate_metadata.py
*.field-meta.xml sf-metadata validate_metadata.py
*.permissionset-meta.xml sf-metadata validate_metadata.py
*.namedCredential-meta.xml sf-integration validate_integration.py
*.soql sf-soql post-tool-validate.py
SKILL.md (removed)
Code Analyzer V5 Integration

Hooks integrate Salesforce Code Analyzer V5 for OOTB linting alongside custom scoring:

Engine What It Checks Dependency
PMD 55 Apex rules (85% coverage) — security, bulkification, complexity, testing Java 11+
SFGE Data flow analysis, path-based security Java 11+
Regex Trailing whitespace, hardcoded patterns None
ESLint JavaScript/LWC linting Node.js
Flow Scanner Flow best practices Python 3.10+

Custom Validation Coverage:

Validator Total Checks Categories
Apex (150-pt) PMD 55 rules + Python 8 checks Security (100%), Bulkification, Testing, Architecture, Clean Code, Error Handling, Performance, Documentation
Flow (110-pt) 32+ checks (21/24 LFS rules) Design/Naming, Logic/Structure, Error Handling, Architecture, Security, Performance
LWC (140-pt) ESLint + retire-js + SLDS Linter SLDS 2 Compliance, Naming, Accessibility, Component Patterns, Lightning Message Service, Security

Graceful Degradation: If dependencies are missing, hooks run custom validation only and show which engines were skipped.

Live SOQL Query Plan Analysis

Skills integrate with Salesforce's REST API explain endpoint to provide real-time query plan analysis.

Sample Output:

🌐 Live Query Plan Analysis (Org: my-dev-org)
   L42: ✅ Cost 0.3 (Index)
   L78: ⚠️ Cost 2.1 (TableScan) ⚠️ IN LOOP
      📝 Field Status__c is not indexed
Metric Description Threshold
relativeCost Query selectivity score ≤1.0 = selective ✅, >1.0 = non-selective ⚠️
leadingOperationType How Salesforce executes the query Index, TableScan, Sharing
cardinality Estimated rows returned vs. total records in object
notes[] WHY optimizations aren't being used Index suggestions, filter issues

Skills with Live Query Plan: sf-soql (.soql files), sf-apex (.cls, .trigger — inline SOQL), sf-data (.soql for data operations).

Prerequisites: Connected Salesforce org (sf org login web). Falls back to static analysis if no org connected.

🔤 Language Server Protocol (LSP) Integration

Skills leverage official Salesforce LSP servers for real-time syntax validation with auto-fix loops:

Skill File Type LSP Server Runtime
🤖 sf-ai-agentscript *.agent Agent Script Language Server Node.js 18+
sf-apex *.cls, *.trigger apex-jorje-lsp.jar Java 11+
sf-lwc *.js, *.html @salesforce/lwc-language-server Node.js 18+

How Auto-Fix Loops Work:

  1. Claude writes/edits a file
  2. LSP hook validates syntax (~500ms)
  3. If errors found → Claude receives diagnostics and auto-fixes
  4. Repeat up to 3 attempts

Prerequisites: See LSP table in Prerequisites section. LWC uses standalone npm package; Apex and Agent Script require VS Code extensions.

Hooks provide advisory feedback — they inform but don't block operations.

🤖 Agent Team

Seven specialized Claude Code agents for Salesforce implementations, installed to ~/.claude/agents/.

FDE Team (Agent-Focused)

Agent Role Mode Key Skills
fde-strategist Orchestrator — plans, researches, delegates plan sf-ai-agentforce, sf-diagram-mermaid
fde-engineer Agent config, metadata, Apex, Agent Scripts acceptEdits sf-ai-agentforce, sf-ai-agentscript
fde-experience-specialist Conversation design, persona, UX, LWC acceptEdits sf-ai-agentforce-persona, sf-lwc

Cross-Cutting (Serve Both Teams)

Agent Role Mode Key Skills
fde-qa-engineer Testing (agent + platform), debug, observability acceptEdits sf-testing, sf-ai-agentforce-testing
fde-release-engineer Deployment, Connected Apps, CI/CD acceptEdits sf-deploy, sf-connected-apps

PS Team (Platform Infrastructure)

Agent Role Mode Key Skills
ps-technical-architect Apex, integrations, data, LWC, performance acceptEdits sf-apex, sf-integration, sf-lwc + 5 more
ps-solution-architect Metadata, Flows, permissions, diagrams acceptEdits sf-metadata, sf-flow, sf-permissions + 2 more

Hierarchy

fde-strategist (orchestrator — plans, researches, delegates)
├── FDE: fde-engineer, fde-experience-specialist
├── QA/Release: fde-qa-engineer, fde-release-engineer
└── PS: ps-technical-architect, ps-solution-architect

The strategist spawns up to 4 concurrent workers via Task(). PS agents have WebSearch and WebFetch for self-directed Salesforce docs lookup.

🔗 Skill Architecture

This is the working mental model for the ecosystem: foundation and integration skills support build work, quality skills reinforce delivery, AI skills cluster around Agentforce workflows, and sf-deploy carries finished assets across environments.

SF Skills capability map showing AI & Automation at the top, Development and Integration in the middle, Quality before delivery, separate DevOps and Diagrams sections, and Foundation at the base

  • AI & Automation sits at the top, centered on Agentforce workflows.
  • Development + Integration occupy the middle of the map where most implementation work happens.
  • Quality sits after build work and before delivery.
  • DevOps is separated for release and deployment automation.
  • Diagrams is separated for Mermaid and premium visual artifact generation.
  • Foundation anchors the base with metadata, data, and permissions context.

Why SVG instead of Mermaid here? GitHub renders larger Mermaid graphs very small. A custom SVG keeps labels crisp, gives us better spacing, and reads more like a clean capability map than a dense dependency graph.

Deployment path: use sf-deploy for Salesforce deployments across Apex, Flow, LWC, metadata, and Agentforce assets. For local browser viewing, a standalone companion lives at docs/assets/skill-ecosystem-overview.html and now uses the refreshed skill-capability-map-v3.svg asset.

🎬 Video Tutorials

Video Description
How to Add/Install Skills Install the sf-skills marketplace and add skills to Claude Code
Skills Demo & Walkthrough Live demo of Apex, Flow, Metadata, and Agentforce skills in action

🔧 Prerequisites

Cross-CLI minimum

  • Node.js 18+ — required for npx skills add

Claude Code full install

  • Claude Code (latest version)
  • Salesforce CLI v2.x (sf command) — npm install -g @salesforce/cli
  • Python 3.10+ — for hooks, validation, and installer tooling
  • Authenticated Salesforce Org — DevHub, Sandbox, or Scratch Org
  • sfdx-project.json — standard DX project structure

API Version Requirements

Skills Minimum API Notes
Most skills 62.0 (Winter '25) sf-apex, sf-flow, sf-lwc, sf-metadata
sf-connected-apps, sf-integration 61.0 External Client Apps
sf-ai-agentforce 66.0 (Spring '26) Full agent deployment, GenAiPlannerBundle

Optional dependencies (enable richer validation / LSP features)

Code Analyzer V5 engines:

  • Java 11+ — Enables PMD, CPD, SFGE engines (brew install openjdk@11)
  • Node.js 18+ — Enables ESLint, RetireJS for LWC (brew install node)
  • Code Analyzer pluginsf plugins install @salesforce/sfdx-code-analyzer

LWC Testing & Linting:

  • @salesforce/sfdx-lwc-jest — Jest testing for LWC (npm install @salesforce/sfdx-lwc-jest --save-dev)
  • @salesforce-ux/slds-linter — SLDS validation (npm install -g @salesforce-ux/slds-linter)

LSP real-time validation (auto-fix loops):

  • LWC Language Servernpm install -g @salesforce/lwc-language-server (standalone, no VS Code needed)
  • VS Code with Salesforce Extensions — Required for Apex and Agent Script only (no npm packages available)
    • Apex: Install "Salesforce Extension Pack" (Java JAR bundled in extension)
    • Agent Script: Install "Salesforce Agent Script" extension (server.js bundled in extension)
  • Java 11+ — Required for Apex LSP (same as Code Analyzer)
  • Node.js 18+ — Required for Agent Script and LWC LSP
LSP Standalone npm? VS Code Required?
LWC @salesforce/lwc-language-server ❌ No
Apex ❌ No (Java JAR) ✅ Yes
Agent Script ❌ No ✅ Yes

Apex Development:

  • Trigger Actions Framework (TAF) — Optional package for sf-apex trigger patterns

💬 Usage Examples

⚡ Apex Development

"Generate an Apex trigger for Account using Trigger Actions Framework"
"Review my AccountService class for best practices"
"Create a batch job to process millions of records"
"Generate a test class with 90%+ coverage"

🔄 Flow Development

"Create a screen flow for account creation with validation"
"Build a record-triggered flow for opportunity stage changes"
"Generate a scheduled flow for data cleanup"

📋 Metadata Management

"Create a custom object called Invoice with auto-number name field"
"Add a lookup field from Contact to Account"
"Generate a permission set for invoice managers with full CRUD"
"Create a validation rule to require close date when status is Closed"
"Describe the Account object in my org and list all custom fields"

💾 Data Operations

"Query all Accounts with related Contacts and Opportunities"
"Create 251 test Account records for trigger bulk testing"
"Insert 500 records from accounts.csv using Bulk API"
"Generate test data hierarchy: 10 Accounts with 3 Contacts each"
"Clean up all test records created today"

⚡ LWC Development

"Create a datatable component to display Accounts with sorting"
"Build a form component for creating new Contacts"
"Generate a Jest test for my accountCard component"
"Create an Apex controller with @AuraEnabled methods for my LWC"
"Set up Lightning Message Service for cross-component communication"

🔍 SOQL Queries

"Query all Accounts with more than 5 Contacts"
"Get Opportunities by Stage with total Amount per Stage"
"Find Contacts without Email addresses"
"Optimize this query: SELECT * FROM Account WHERE Name LIKE '%Corp%'"
"Generate a SOQL query to find duplicate Leads by Email"

🧪 Testing

"Run all Apex tests in my org and show coverage"
"Generate a test class for my AccountTriggerHandler"
"Create a bulk test with 251 records for trigger testing"
"Generate mock classes for HTTP callouts"
"Run tests for a specific class and show failures"

🐛 Debugging

"Analyze this debug log for performance issues"
"Find governor limit violations in my log"
"What's causing this SOQL in loop error?"
"Show me how to fix this null pointer exception"
"Optimize my Apex for CPU time limits"

🔐 Connected Apps & OAuth

"Create a Connected App for API integration with JWT Bearer flow"
"Generate an External Client App for our mobile application with PKCE"
"Review my Connected Apps for security best practices"
"Migrate MyConnectedApp to an External Client App"

🔗 Integration & Callouts

"Create a Named Credential for Stripe API with OAuth client credentials"
"Generate a REST callout service with retry and error handling"
"Create a Platform Event for order synchronization"
"Build a CDC subscriber trigger for Account changes"
"Set up an External Service from an OpenAPI spec"

🤖 Agentforce Agents & Actions

"Create an Agentforce agent for customer support triage"
"Build a FAQ agent with topic-based routing"
"Generate an agent that calls my Apex service via Flow wrapper"
"Create a GenAiFunction for my @InvocableMethod Apex class"
"Build an agent action that calls the Stripe API"
"Generate a PromptTemplate for case summaries"

📈 Agent Observability & Trace Analysis

"Capture Builder traces for this agent test run and summarize routing issues"
"Analyze this Agentforce session trace for topic/action drift"
"Run trace-test against my agent and suggest Agent Script fixes"

📊 Diagrams & Documentation

"Create a JWT Bearer OAuth flow diagram"
"Generate an ERD for Account, Contact, Opportunity, and Case"
"Diagram our Salesforce to SAP integration flow"
"Create a system landscape diagram for our Sales Cloud implementation"
"Generate a role hierarchy diagram for our sales org"

🚀 Deployment

"Deploy my Apex classes to sandbox with tests"
"Validate my metadata changes before deploying to production"

🤖 Supported Agentic Coding Tools

CLI Compatibility

All skills follow the Agent Skills open standard. Install with npx skills add for any supported agent:

npx skills add Jaganpro/sf-skills
Tool Status Install Method
Claude Code CLI ✅ Full Support npx skills add or bash installer Claude
OpenCode CLI ✅ Compatible npx skills add OpenCode
Codex CLI ✅ Compatible npx skills add OpenAI
Gemini CLI ✅ Compatible npx skills add Google
Amp CLI ✅ Compatible npx skills add or .claude/skills/ Amp
Droid CLI ✅ Compatible npx skills add Factory

🤝 Call for Volunteers! This repo is community-driven. We need testers on different CLIs — open an issue to get started.

🗺️ Roadmap

Naming Convention

sf-{capability}           # Cross-cutting (apex, flow, admin)
sf-ai-{name}              # AI features (agentforce, copilot)
sf-product-{name}         # Products (datacloud)
sf-cloud-{name}           # Clouds (sales, service)
sf-industry-{name}        # Industries (healthcare, finserv)
sf-industry-commoncore-{name}  # Industries Common Core (omnistudio)

🔧 Cross-Cutting Skills

Skill Description Status
🔐 sf-connected-apps Connected Apps, ECAs, OAuth configuration ✅ Live
🔗 sf-integration Named Credentials, External Services, REST/SOAP, Platform Events, CDC ✅ Live
📊 sf-diagram-mermaid Mermaid diagrams for OAuth, ERD, integrations, architecture ✅ Live
sf-lwc Lightning Web Components, Jest, LMS ✅ Live
🔍 sf-soql Natural language to SOQL, optimization ✅ Live
🧪 sf-testing Test execution, coverage, bulk testing ✅ Live
🐛 sf-debug Debug log analysis, governor fixes ✅ Live
📸 sf-diagram-nanobananapro Visual ERD, LWC mockups, Gemini sub-agent ✅ Live
📚 sf-docs Official Salesforce docs retrieval guidance for hard-to-fetch online Salesforce documentation ✅ Live
🔐 sf-permissions Permission Set analysis, hierarchy viewer, "Who has X?" ✅ Live
🔒 sf-security Sharing rules, org-wide defaults, encryption 📋 Planned
📦 sf-migration Org-to-org, metadata comparison 📋 Planned

🤖 AI & Automation

Skill Description Status
🤖 sf-ai-agentforce Agent Builder, PromptTemplate, Models API, GenAi metadata ✅ Live
🧪 sf-ai-agentforce-testing Agent test specs, agentic fix loops ✅ Live
📈 sf-ai-agentforce-observability STDM + Builder trace capture, trace-test, and execution analysis ✅ Live
📝 sf-ai-agentscript Agent Script DSL, FSM patterns, 100-pt scoring ✅ Live
💬 sf-ai-agentforce-persona Deep persona design, identity framework, Agent Builder encoding ✅ Live
🧠 sf-ai-copilot Einstein Copilot, Prompts 📋 Planned
🔮 sf-ai-einstein Prediction Builder, NBA 📋 Planned

📦 Products

Skill Description Status
☁️ sf-product-datacloud Unified profiles, segments 📋 Planned

☁️ Clouds

Skill Description Status
💰 sf-cloud-sales Opportunities, Quotes, Forecasting 📋 Planned
🎧 sf-cloud-service Cases, Omni-Channel, Knowledge 📋 Planned
🌐 sf-cloud-experience Communities, Portals 📋 Planned

🏢 Industries Common Core

Skill Description Status
🔍 sf-industry-commoncore-omnistudio-analyze Namespace detection, dependency mapping, impact analysis ✅ Live
📊 sf-industry-commoncore-datamapper Data Mapper (DataRaptor) creation, 100-pt scoring ✅ Live
🔗 sf-industry-commoncore-integration-procedure Integration Procedure orchestration, 110-pt scoring ✅ Live
📝 sf-industry-commoncore-omniscript OmniScript guided experiences, 120-pt scoring ✅ Live
🃏 sf-industry-commoncore-flexcard FlexCard UI components, 130-pt scoring ✅ Live

🏢 Industries

Skill Description Status
🏥 sf-industry-healthcare FHIR, Care Plans, Compliance 📋 Planned
🏦 sf-industry-finserv KYC, AML, Wealth Management 📋 Planned
💵 sf-industry-revenue CPQ, Billing, Revenue Lifecycle 📋 Planned

Total: 30 skills (25 skills ✅ live, 5 planned 📋)

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Test locally: python3 tools/install.py --dry-run
  5. Open a Pull Request

See CONTRIBUTING.md for detailed guidelines.

Contributors

Contributor Area Skills
David Ryan (weytani) Industries Common Core sf-industry-commoncore-omnistudio-analyze, sf-industry-commoncore-datamapper, sf-industry-commoncore-integration-procedure, sf-industry-commoncore-omniscript, sf-industry-commoncore-flexcard

Issues & Support

License

MIT License - Copyright (c) 2024-2026 Jag Valaiyapathy

About

Salesforce Skills for Agentic Coding Tools — AI-powered Apex, Flow, LWC, SOQL, Agentforce, and more for Claude Code. 14 skills, 420+ validation points, LSP integration.

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 66.5%
  • Apex 19.7%
  • Shell 5.8%
  • JavaScript 4.7%
  • HTML 2.0%
  • TypeScript 1.1%
  • CSS 0.2%