# Send Salesforce API Integration to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "salesforce-api-integration",
    "name": "Salesforce API Integration",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/salesforce-api-integration",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/salesforce-api-integration",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/salesforce-api-integration",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=salesforce-api-integration",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "bulk.md",
      "composite.md",
      "errors.md",
      "memory-template.md",
      "metadata.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "salesforce-api-integration",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T10:54:09.390Z",
      "expiresAt": "2026-05-15T10:54:09.390Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=salesforce-api-integration",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=salesforce-api-integration",
        "contentDisposition": "attachment; filename=\"salesforce-api-integration-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "salesforce-api-integration"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/salesforce-api-integration"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/salesforce-api-integration",
    "downloadUrl": "https://openagent3.xyz/downloads/salesforce-api-integration",
    "agentUrl": "https://openagent3.xyz/skills/salesforce-api-integration/agent",
    "manifestUrl": "https://openagent3.xyz/skills/salesforce-api-integration/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/salesforce-api-integration/agent.md"
  }
}
```
## Documentation

### Salesforce API Integration

Complete Salesforce REST API reference. See auxiliary files for detailed operations.

### Quick Start

curl "$SF_INSTANCE_URL/services/data/v59.0/sobjects/" \\
  -H "Authorization: Bearer $SF_ACCESS_TOKEN"

### Setup

On first use, read setup.md. Preferences stored in ~/salesforce-api-integration/memory.md.

### When to Use

Any Salesforce operation: SOQL queries, record CRUD, bulk imports/exports, metadata, composite requests.

### Architecture

~/salesforce-api-integration/
├── memory.md      # Org context and object schemas
└── queries.md     # Saved SOQL queries

### Quick Reference

TopicFileSetup and authenticationsetup.md, memory-template.mdSOQL queries and searchsoql.mdRecords: create, read, update, deleterecords.mdStandard objects referenceobjects.mdBulk API 2.0 for large datasetsbulk.mdComposite and batch requestscomposite.mdMetadata and schemametadata.mdError handlingerrors.md

### Core Rules

Bearer token auth - Authorization: Bearer $SF_ACCESS_TOKEN
Instance URL required - Each org has unique URL like https://yourorg.my.salesforce.com
API version in path - Use /services/data/v59.0/ (or newer)
SOQL for queries - Salesforce Object Query Language for data retrieval
Object API names - Use API names: Account, Contact__c (custom objects end in __c)
Pagination for large results - Use nextRecordsUrl for results over 2000
Rate limits - Vary by edition, typically 100k+ calls/day

### Authentication

Required environment variables:

SF_ACCESS_TOKEN - OAuth access token for API calls
SF_INSTANCE_URL - Your Salesforce instance (e.g., https://yourorg.my.salesforce.com)

# All requests require these headers
curl "$SF_INSTANCE_URL/services/data/v59.0/..." \\
  -H "Authorization: Bearer $SF_ACCESS_TOKEN" \\
  -H "Content-Type: application/json"

### Common Traps

Wrong instance URL - 404 or DNS errors
Expired access token - 401 INVALID_SESSION_ID
Missing field permissions - Field appears null
SOQL syntax errors - MALFORMED_QUERY
Relationship name vs field name - Use Account.Name not AccountId.Name

### External Endpoints

EndpointPurposehttps://*.my.salesforce.com/services/data/*REST APIhttps://*.my.salesforce.com/services/async/*Bulk APIhttps://login.salesforce.com/services/oauth2/*OAuth (production)https://test.salesforce.com/services/oauth2/*OAuth (sandbox)

### Security & Privacy

Environment variables used:

SF_ACCESS_TOKEN - for API authentication
SF_INSTANCE_URL - for API endpoint routing

Sent to Salesforce: Queries, record data via your instance URL
Stays local: Access token (in environment variable only), ~/salesforce-api-integration/ preferences
Never: Store tokens in files, log sensitive data, bypass field-level security

### Scope

This skill ONLY:

Makes requests to Salesforce REST API endpoints
Stores preferences in ~/salesforce-api-integration/
Provides curl and code examples

This skill NEVER:

Accesses files outside ~/salesforce-api-integration/
Makes requests to non-Salesforce endpoints
Stores access tokens in files

### Trust

By using this skill, data is sent to Salesforce (salesforce.com).
Only install if you trust Salesforce with your CRM data.

### Related Skills

Install with clawhub install <slug> if user confirms:

api — REST API patterns
crm — CRM workflows
accounting — Financial operations

### Feedback

If useful: clawhub star salesforce-api-integration
Stay updated: clawhub sync
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T10:54:09.390Z
- Expires at: 2026-05-15T10:54:09.390Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/salesforce-api-integration)
- [Send to Agent page](https://openagent3.xyz/skills/salesforce-api-integration/agent)
- [JSON manifest](https://openagent3.xyz/skills/salesforce-api-integration/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/salesforce-api-integration/agent.md)
- [Download page](https://openagent3.xyz/downloads/salesforce-api-integration)