一键导入
salesforce
Query and manage Salesforce CRM records using SOQL/SOSL. Use for querying any object, CRUD operations, and exploring object metadata.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Query and manage Salesforce CRM records using SOQL/SOSL. Use for querying any object, CRUD operations, and exploring object metadata.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guides agents through isolated Git worktree setup, lifecycle commands, process cleanup, and per-worktree local development state. Use when creating, starting, stopping, inspecting, cleaning up, or troubleshooting Git worktree development environments or when a repository includes a worktree lifecycle CLI.
Continuously watch and fix release main CI until the branch is fully green and verified working. Use when asked to babysit CI, babysit CI release, monitor release main, run /loop for CI, run /goal until checks pass, or keep iterating until release main is green.
Fix flaky tests by repeatedly running the suite, collecting intermittent failures, and proving stability. Use when asked to fix flaky tests or require repeated/consecutive green test runs.
Manage LinkedIn messaging, profiles, posts, connections, and company pages via Unipile. Use for networking, content publishing, and lead engagement.
Scoped commit workflow with a bundled committer script that prevents accidental broad staging. Use when the user asks to commit, commit all, create a git commit, or handle commit-time staging in this repository.
Systematically QA a web application like a real user, triage issues by severity, fix scoped bugs when asked, verify fixes with evidence, and report ship readiness. Use when asked to QA, test a site or app, find bugs, test and fix, or check whether a feature works.
| name | salesforce |
| description | Query and manage Salesforce CRM records using SOQL/SOSL. Use for querying any object, CRUD operations, and exploring object metadata. |
Salesforce CRM operations via the REST API -- SOQL queries, record CRUD, SOSL search, and object metadata.
SALESFORCE_ACCESS_TOKEN - Salesforce OAuth2 access tokenSALESFORCE_INSTANCE_URL - Salesforce instance URL (e.g. https://myorg.my.salesforce.com)# Run a SOQL query
salesforce query SELECT Id, Name, Email FROM Contact WHERE Email != null LIMIT 10
# Get a record by ID
salesforce get Contact 003xx000004TmiQAAS [Name,Email,Phone]
# Create a record
salesforce create Contact '{"FirstName":"John","LastName":"Doe","Email":"john@example.com"}'
# Update a record
salesforce update Contact 003xx000004TmiQAAS '{"Phone":"555-1234"}'
# Describe object schema (fields, types, picklists)
salesforce describe Opportunity
# List all available objects
salesforce objects
# Cross-object search (SOSL)
salesforce search FIND {John} IN ALL FIELDS RETURNING Contact(Name, Email), Lead(Name, Email)
JSON objects. Example for query:
{
"totalSize": 5,
"done": true,
"records": [
{ "Id": "003xx...", "Name": "John Doe", "Email": "john@example.com" }
]
}