salesforce-hello-world
Installation
SKILL.md
Salesforce Hello World
Overview
Minimal working example: connect to Salesforce, run a SOQL query, and perform basic CRUD on standard sObjects (Account, Contact, Lead).
Prerequisites
- Completed
salesforce-install-authsetup - jsforce installed (
npm install jsforce) - Valid credentials in environment variables
Instructions
Step 1: Connect and Query Accounts
import jsforce from 'jsforce';
const conn = new jsforce.Connection({
loginUrl: process.env.SF_LOGIN_URL || 'https://login.salesforce.com',
Related skills