connecting-datacloud
forcedotcom/sf-skills
Manage Salesforce Data Cloud connections, connectors, and source system setup.
What is connecting-datacloud?
This skill handles the Connect phase of Data Cloud: discovering connector types, creating and testing connections, browsing source objects and schemas, and configuring external data sources like Snowflake, Redshift, and Ingestion APIs. Use it when setting up or managing Data Cloud connections and connectors.
- Discover and list available connector types and existing connections
- Create, test, update, and delete Data Cloud connections
- Browse source objects, fields, databases, and schemas from connected sources
- Inspect and manage connector metadata and credentials
- Set up external connector payloads for Snowflake, Redshift, SharePoint Unstructured, and Ingestion API sources
- Validate connection readiness and diagnose org configuration
How to install connecting-datacloud
npx skills add https://github.com/forcedotcom/sf-skills --skill connecting-datacloud- sf data360 CLI plugin installed
- Data Cloud-enabled Salesforce org
- Appropriate credentials for the target source system (database, API, or cloud storage)
How to use connecting-datacloud
- 1.Run the readiness classifier to verify org configuration for the connect phase
- 2.Discover available connector types using sf data360 connection connector-list
- 3.List existing connections filtered by connector type
- 4.Inspect a specific connection's objects and fields to understand the source schema
- 5.Test the connection to verify credentials and connectivity
- 6.Create a new connection using a curated example payload or custom JSON definition
- 7.For Ingestion API sources, upload the object schema after connection creation
Use cases
- Setting up a new Snowflake or Redshift connection to ingest data into Data Cloud
- Testing an existing connection to verify credentials and connectivity
- Browsing available objects and fields from a connected source system before creating data streams
- Configuring an Ingestion API connector and uploading its object schema
- Discovering which connector types are already in use across the org
- Data Cloud administrators
- Data integration engineers
- Salesforce architects managing external data sources
- Teams setting up new source system connections
connecting-datacloud FAQ
Use connecting-datacloud for connection and connector work. Use preparing-datacloud when creating data streams or DLOs (Data Lake Objects) after the connection is ready.
Use sf data360 connection list with --connector-type to filter by type. There is no true global list-all mode; query by specific connector types like SalesforceDotCom, SNOWFLAKE, or REDSHIFT.
Verify credentials are correct and configured outside the CLI if needed. Check that the target source system is accessible and permissions are granted. Inspect the connection details with sf data360 connection get to confirm the payload structure.
The skill supports curated examples for Heroku Postgres, Redshift, Snowflake, SharePoint Unstructured, and Ingestion API. For other connector types, create one in the UI first, then inspect it via REST API to understand the required payload structure.
Most external connectors can be created via CLI with properly formatted JSON payloads. However, some credential setup (especially for SharePoint and certain APIs) may still require UI-side configuration or external system permissions.
Full instructions (SKILL.md)
Source of truth, from forcedotcom/sf-skills.
name: connecting-datacloud description: "Salesforce Data Cloud Connect phase. Use this skill when the user manages Data Cloud connections, connectors, or sets up a new source system. TRIGGER when: user manages Data Cloud connections, connectors, connector metadata, tests a connection, browses source objects or databases, or sets up a new source system. DO NOT TRIGGER when: the task is about data streams or DLOs (use preparing-datacloud), DMOs or identity resolution (use harmonizing-datacloud), retrieval/search (use retrieving-datacloud), or STDM telemetry (use observing-agentforce)." compatibility: "Requires the sf data360 CLI plugin and a Data Cloud-enabled org" metadata: version: "1.0"
connecting-datacloud: Data Cloud Connect Phase
Use this skill when the user needs source connection work: connector discovery, connection metadata, connection testing, source-object browsing, connector schema inspection, or connector-specific setup payloads for external sources.
When This Skill Owns the Task
Use connecting-datacloud when the work involves:
sf data360 connection *- connector catalog inspection
- connection creation, update, test, or delete
- browsing source objects, fields, databases, or schemas
- identifying connector types already in use
- preparing connector definitions for Snowflake, SharePoint Unstructured, or Ingestion API sources
Delegate elsewhere when the user is:
- creating data streams or DLOs → preparing-datacloud
- creating DMOs, mappings, IR rulesets, or data graphs → harmonizing-datacloud
- writing Data Cloud SQL or search-index workflows → retrieving-datacloud
Required Context to Gather First
Ask for or infer:
- target org alias
- connector type or source system
- whether the user wants inspection only or live mutation
- connection name or ID if one already exists
- whether credentials are already configured outside the CLI
- whether the user also expects stream creation right after connection setup
- whether the source is a database, an unstructured document source, or an Ingestion API feed
Core Operating Rules
- Verify the plugin runtime first; see ../orchestrating-datacloud/references/plugin-setup.md.
- Run the shared readiness classifier before mutating connections:
node ../orchestrating-datacloud/scripts/diagnose-org.mjs -o <org> --phase connect --json. - Prefer read-only discovery before connection creation.
- Suppress linked-plugin warning noise with
2>/dev/nullfor standard usage. - Remember that
connection listrequires--connector-type. - For
connection test, pass--connector-typewhen resolving a non-Salesforce connection by name. - Discover existing connector types from streams first when the org is unfamiliar.
- Use curated example payloads before inventing connector-specific credentials or parameters.
- For connector types outside the curated examples, inspect a known-good UI-created connection via REST before building JSON.
- Do not promise API-based stream creation for every connector type just because connection creation succeeds.
Recommended Workflow
1. Classify readiness for connect work
node ../orchestrating-datacloud/scripts/diagnose-org.mjs -o <org> --phase connect --json
2. Discover connector types
sf data360 connection connector-list -o <org> 2>/dev/null
sf data360 data-stream list -o <org> 2>/dev/null
3. Inspect connections by type
sf data360 connection list -o <org> --connector-type SalesforceDotCom 2>/dev/null
sf data360 connection list -o <org> --connector-type REDSHIFT 2>/dev/null
sf data360 connection list -o <org> --connector-type SNOWFLAKE 2>/dev/null
4. Inspect a specific connection or uploaded schema
sf data360 connection get -o <org> --name <connection> 2>/dev/null
sf data360 connection objects -o <org> --name <connection> 2>/dev/null
sf data360 connection fields -o <org> --name <connection> 2>/dev/null
sf data360 connection schema-get -o <org> --name <connection-id> 2>/dev/null
5. Test or create only after discovery
sf data360 connection test -o <org> --name <connection> --connector-type <type> 2>/dev/null
sf data360 connection create -o <org> -f connection.json 2>/dev/null
6. Start from curated example payloads for external connectors
Use the phase-owned examples before inventing a payload from scratch:
examples/connections/heroku-postgres.jsonexamples/connections/redshift.jsonexamples/connections/sharepoint-unstructured.jsonexamples/connections/snowflake-connection.jsonexamples/connections/ingest-api-connection.jsonexamples/connections/ingest-api-schema.json
Typical Ingestion API setup flow:
sf data360 connection create -o <org> -f examples/connections/ingest-api-connection.json 2>/dev/null
sf data360 connection schema-upsert -o <org> --name <connector-id> -f examples/connections/ingest-api-schema.json 2>/dev/null
sf data360 connection schema-get -o <org> --name <connector-id> 2>/dev/null
7. Discover payload fields for unknown connector types
Create one in the UI, then inspect it directly:
sf api request rest "/services/data/v66.0/ssot/connections/<id>" -o <org>
High-Signal Gotchas
connection listhas no true global "list all" mode; query by connector type.- The connector catalog name and connection connector type are not always the same label.
connection testmay need--connector-typefor name resolution when the source is not a default Salesforce connector.- An empty connection list usually means "enabled but not configured yet", not "feature disabled".
- Heroku Postgres, Redshift, Snowflake, SharePoint Unstructured, and Ingestion API all use different credential and parameter shapes; reuse the curated examples instead of guessing.
- SharePoint Unstructured uses
clientId,clientSecret, andtokenEndpointin thecredentialsarray and does not require aparametersarray. - Snowflake uses key-pair auth and can often be created through the API, but downstream stream creation can still remain UI-only.
- Ingestion API connector setup is incomplete until
connection schema-upserthas uploaded the object schema. - Some external connector credential setup still depends on UI-side configuration or external-system permissions.
Output Format
Connect task: <inspect / create / test / update>
Connector type: <SalesforceDotCom / REDSHIFT / SNOWFLAKE / SPUnstructuredDocument / IngestApi / ...>
Target org: <alias>
Commands: <key commands run>
Verification: <passed / partial / blocked>
Next step: <prepare phase or connector follow-up>
References
- README.md
- examples/connections/heroku-postgres.json
- examples/connections/redshift.json
- examples/connections/sharepoint-unstructured.json
- examples/connections/snowflake-connection.json
- examples/connections/ingest-api-connection.json
- examples/connections/ingest-api-schema.json
- ../orchestrating-datacloud/references/plugin-setup.md
- ../orchestrating-datacloud/references/feature-readiness.md
- ../orchestrating-datacloud/UPSTREAM.md
Related skills
More from forcedotcom/sf-skills and the wider catalog.

creating-b2b-commerce-store
Create B2B Commerce stores and retrieve storefront metadata via interactive workflow.

debugging-apex-logs
Analyze Salesforce debug logs to diagnose governor limits, stack traces, and performance bottlenecks.

deploying-metadata
Salesforce DevOps automation: deploy metadata safely with sf CLI v2, validate first, orchestrate CI/CD.

deploying-omnistudio-datapacks
Automate Vlocity DataPack deployment, validation, and retry workflows for OmniStudio/Industries configurations.

deploying-ui-bundle
Deploy UI bundle apps to Salesforce orgs with full metadata, permissions, and schema setup.

developing-agentforce
Build, modify, debug, and deploy Salesforce Agentforce agents using Agent Script.