[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-salesforce-api":3,"mdc-xdfe46-key":33,"related-repo-anthropic-salesforce-api":2254,"related-org-anthropic-salesforce-api":2372},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":31,"mdContent":32},"salesforce-api","manage Salesforce records via API","Query, read, create, update, and describe Salesforce records — Accounts, Contacts, Opportunities, Leads, Cases, and custom objects. Use this whenever the user wants to look up a Salesforce record, run a SOQL query, update an Opportunity, check an object's fields, or asks \"what's in Salesforce\" — even if they don't say \"API\". Also use it for any URL under *.salesforce.com \u002F *.lightning.force.com or a mention of a Salesforce record ID or SOQL. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20],{"name":14,"slug":15,"type":16},"REST API","rest-api","tag",{"name":18,"slug":19,"type":16},"CRM","crm",{"name":21,"slug":22,"type":16},"Sales","sales",30,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins","2026-06-25T07:41:38.9538",null,12,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":26},[],"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-tag-plugins\u002Ftree\u002FHEAD\u002Fsalesforce\u002Fskills\u002Fsalesforce-api","---\nname: salesforce-api\ndescription: Query, read, create, update, and describe Salesforce records — Accounts, Contacts, Opportunities, Leads, Cases, and custom objects. Use this whenever the user wants to look up a Salesforce record, run a SOQL query, update an Opportunity, check an object's fields, or asks \"what's in Salesforce\" — even if they don't say \"API\". Also use it for any URL under *.salesforce.com \u002F *.lightning.force.com or a mention of a Salesforce record ID or SOQL. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.\n---\n\nIn Salesforce, every org has its own **instance URL** (its My Domain), and the API is versioned in the path:\n\n```\nhttps:\u002F\u002F\u003Cyour-org>.my.salesforce.com\u002Fservices\u002Fdata\u002FvXX.0\u002F...\n```\n\n**Key facts that bite:**\n\n- **Errors return as a JSON array, success as an object.** Guard every jq projection with\n  `if type == \"array\" then . else \u003Cprojection> end` or the error body crashes the filter and you\n  never see `errorCode`.\n- Custom objects and fields end in `__c`; custom relationship names end in `__r` (use `__r` in SOQL\n  parent paths and child subqueries).\n- Record **IDs** are 15- or 18-char alphanumeric. The 18-char form is case-insensitive — prefer it.\n- SOQL has **no `SELECT *`**. `FIELDS(ALL)` \u002F `FIELDS(CUSTOM)` exist but require `LIMIT 200`.\n- **Describe is your schema** — field names, picklist values, relationship names, and\n  `createable`\u002F`updateable` flags. Read it before guessing field names.\n\n## Request setup\n\nAuthentication is handled by the runtime — credentials are injected into outbound requests to this\nAPI, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys.\nCredential variables exist only to keep requests well-formed; if one is unset, set it to any\nplaceholder value. A persistent `401`\u002F`403` means the credential isn't configured for this workspace\n— report that instead of debugging auth.\n\nThe **instance URL** must be real — every org has its own and it's part of every request path:\n\n```bash\nexport SALESFORCE_ACCESS_TOKEN=\"placeholder\"   # injected by the runtime; any value works\nexport SALESFORCE_INSTANCE_URL=\"https:\u002F\u002Fyourorg.my.salesforce.com\"\nexport SF_API=\"${SALESFORCE_INSTANCE_URL}\u002Fservices\u002Fdata\u002Fv66.0\"\n```\n\n**Sanity check** — confirm the instance URL is right and the workspace is wired up:\n\n```bash\ncurl -sS \"${SF_API}\u002F\" -H \"Authorization: Bearer ${SALESFORCE_ACCESS_TOKEN}\" | jq .\n# Returns a map of available API resources on success.\n```\n\nFor brevity the recipes below use a helper. Define it once, or copy the `-H` flag onto each `curl`:\n\n```bash\nsalesforce_api() { curl -sS \"$@\" -H \"Authorization: Bearer ${SALESFORCE_ACCESS_TOKEN}\" -H \"Content-Type: application\u002Fjson\"; }\n```\n\n## Core operations\n\n### 1. Run a SOQL query (`scripts\u002Fsf_query.sh`)\n\nRun SOQL through the bundled script (path is relative to this skill's directory): it submits the\nquery, follows `nextRecordsUrl` through every page, surfaces the array-shaped error body, strips the\nper-record `attributes` envelope every record carries, and flattens nested parent-relationship\nobjects to dotted-key columns (`Account.Name`).\n\n```bash\nscripts\u002Fsf_query.sh \\\n  \"SELECT Id, Name, Amount, StageName, Account.Name FROM Opportunity\n   WHERE CloseDate = THIS_QUARTER ORDER BY Amount DESC\" \\\n  --max-rows 0\n```\n\n- SOQL is one quoted argument or stdin. Instance specifics come from `SALESFORCE_INSTANCE_URL` \u002F\n  `SALESFORCE_ACCESS_TOKEN` above; `--instance-url` and `--api-version` override. Full SOQL syntax\n  (parent paths, child subqueries, date literals, escaping): `references\u002Fapi.md`, section SOQL.\n- `--all` switches to `\u002FqueryAll` (includes deleted\u002Farchived records).\n- `--max-rows N` caps fetched rows (default 10000, `0` = everything); `--batch-size N` (200–2000)\n  sets the `Sforce-Query-Options` page size; `--json` emits one JSON object per row instead of TSV\n  with a header. `totalSize` and row counts go to stderr.\n- Exit codes: `0` success; non-zero on failure (`1` = API\u002Fargument error with `errorCode` on stderr, other = curl transport error).\n\nIf the script errors, read it — it's plain `curl` + `jq` — and debug against `references\u002Fapi.md`.\nSOSL search, sObject writes, Describe, Composite, and Bulk API 2.0 are separate endpoints\n(operations below and `references\u002Fapi.md`).\n\n### 2. Full-text search (SOSL)\n\n`salesforce_api -G \"${SF_API}\u002Fsearch\" --data-urlencode \"q=FIND {Acme} IN NAME FIELDS RETURNING\nAccount(Id, Name), Contact(Id, Name, Email)\"` → results under `.searchRecords` (`-G` keeps\n`--data-urlencode` a GET; without it curl POSTs and `\u002Fsearch` rejects it). Or\n`GET \u002FparameterizedSearch?q=Acme&sobject=Account&Account.fields=Id,Name`.\n\n### 3. Read \u002F create \u002F update \u002F delete one record\n\n- **Read** — `GET ${SF_API}\u002Fsobjects\u002FAccount\u002FID?fields=Id,Name,Industry`. Omit `fields` for all. Parent fields need SOQL or `\u002Fsobjects\u002FAccount\u002FID\u002FOwner`. By external ID: `\u002Fsobjects\u002FAccount\u002FExt_Id__c\u002FVALUE`.\n- **Create** — `POST ${SF_API}\u002Fsobjects\u002FAccount` body `{\"Name\":\"Acme\",...}`. Returns `{\"id\",\"success\":true,\"errors\":[]}`. Lookups: `\"AccountId\":\"001...\"` or by external ID `\"Account\":{\"Ext_Id__c\":\"ACME-42\"}`.\n- **Update** — `PATCH ${SF_API}\u002Fsobjects\u002FOpportunity\u002FID` body `{\"StageName\":\"...\"}`. **Returns 204 No Content** (empty body) — pass `-w '\\n%{http_code}\\n'` to see it.\n- **Delete** — `DELETE ${SF_API}\u002Fsobjects\u002FAccount\u002FID`. 204 on success. Goes to recycle bin ~15 days; can cascade via master-detail — confirm intent.\n\n### 4. Upsert by external ID\n\n`PATCH` on the external-ID path creates or updates in one call — the safest way to sync from another\nsystem:\n\n```bash\nsalesforce_api -X PATCH \"${SF_API}\u002Fsobjects\u002FAccount\u002FExternal_Id__c\u002FACME-42\" \\\n  -d '{\"Name\": \"Acme Corporation\", \"Industry\": \"Manufacturing\"}' -w '\\n%{http_code}\\n'\n# 201 + {\"id\",...,\"created\":true}  → created\n# 200 + {\"created\":false}          → updated\n# 300                              → external ID matched MULTIPLE records; nothing written\n# Append ?updateOnly=true to update-or-fail instead of update-or-create.\n```\n\n### 5. Describe an sObject (schema)\n\nList all sObjects: `GET ${SF_API}\u002Fsobjects` → `.sobjects[] | {name, label, custom, queryable}`.\n\nOne sObject's full schema:\n\n```bash\nsalesforce_api \"${SF_API}\u002Fsobjects\u002FOpportunity\u002Fdescribe\" | \\\n  jq '{fields: [.fields[]? | {name, type, createable, updateable, picklistValues: [.picklistValues[]?.value]}], childRelationships: [.childRelationships[]? | {relationshipName, childSObject}]}'\n```\n\n### 6. Composite: several operations in one request\n\nChains up to 25 subrequests in one round trip. Later subrequests reference earlier results with\n`@{refName.field}`. Set `allOrNone: true` to roll back the whole batch on any failure. **Each\nsubrequest `url` is an absolute path that must repeat the same API version as the outer request** —\nif you change `v66.0` in `${SF_API}`, change it here too.\n\n```bash\nsalesforce_api -X POST \"${SF_API}\u002Fcomposite\" \\\n  -d '{\n    \"allOrNone\": true,\n    \"compositeRequest\": [\n      {\n        \"method\": \"POST\", \"url\": \"\u002Fservices\u002Fdata\u002Fv66.0\u002Fsobjects\u002FAccount\",\n        \"referenceId\": \"NewAccount\",\n        \"body\": {\"Name\": \"Acme Corporation\"}\n      },\n      {\n        \"method\": \"POST\", \"url\": \"\u002Fservices\u002Fdata\u002Fv66.0\u002Fsobjects\u002FContact\",\n        \"referenceId\": \"NewContact\",\n        \"body\": {\"LastName\": \"Nguyen\", \"AccountId\": \"@{NewAccount.id}\"}\n      },\n      {\n        \"method\": \"GET\", \"url\": \"\u002Fservices\u002Fdata\u002Fv66.0\u002Fsobjects\u002FAccount\u002F@{NewAccount.id}?fields=Id,Name\",\n        \"referenceId\": \"ReadBack\"\n      }\n    ]\n  }' | jq '.compositeResponse[]? | {ref: .referenceId, status: .httpStatusCode, body: .body}'\n```\n\n**The outer request returns `200` even when subrequests fail** — always check each subrequest's\n`httpStatusCode`. For bulk inserts\u002Fupdates without cross-references, use Composite Collections —\n`POST \u002Fcomposite\u002Fsobjects` with up to 200 records (see `references\u002Fapi.md`).\n\n### 7. Check limits\n\n`GET ${SF_API}\u002Flimits` → `.DailyApiRequests` shows `Max` and `Remaining`. Check before running a\nloop — orgs have per-24-hour caps.\n\n## Pagination\n\nSOQL responses cap at 2000 records\u002Fpage (configurable 200–2000 via header\n`Sforce-Query-Options: batchSize=N`). When more rows exist the response has `done: false` and\n`nextRecordsUrl` — an instance-relative path you `GET` against `${SALESFORCE_INSTANCE_URL}`;\n`scripts\u002Fsf_query.sh` follows it for you. `OFFSET` in SOQL is **hard-capped at 2000** — use\n`nextRecordsUrl` for deep pagination, or Bulk API 2.0 for very large exports (`references\u002Fapi.md`).\n\n## Rate limits\n\nSalesforce caps total API calls **per rolling 24 hours per org** (not per second). Every response\ncarries:\n\n```\nSforce-Limit-Info: api-usage=1234\u002F100000\n```\n\nHitting the cap → `403` with `errorCode: REQUEST_LIMIT_EXCEEDED`. **No `Retry-After`** — wait for\nusage to age out of the 24-hour window. Separately enforced: **max 25 concurrent long-running\nrequests** (≥20s; 5 in Developer Edition). That also surfaces as `REQUEST_LIMIT_EXCEEDED` (message\nnames `ConcurrentRequests`\u002F`ConcurrentPerOrgLongTxn`) and clears as soon as in-flight requests\nfinish — back off and retry. Be frugal: batch with Composite, select only the fields you need,\nprefer upsert over read-then-write.\n\n## Error handling\n\nErrors are a JSON **array**: `[{\"message\": \"...\", \"errorCode\": \"...\", \"fields\": [...]}]`. Surface\n`errorCode` — it's the most specific signal.\n\n- **`400` `MALFORMED_QUERY`** — SOQL syntax error. Message points at the offending token.\n- **`400` `INVALID_FIELD`, `INVALID_TYPE`** — Field\u002FsObject name wrong or not visible. Run describe. Custom names end in `__c`.\n- **`400` `REQUIRED_FIELD_MISSING`, `FIELD_CUSTOM_VALIDATION_EXCEPTION`** — Missing required field or a validation rule fired.\n- **`400` `STRING_TOO_LONG`, `INVALID_FIELD_FOR_INSERT_UPDATE`** — Value doesn't fit, or field isn't writable — check `createable`\u002F`updateable` in describe.\n- **`401` `INVALID_SESSION_ID`** — Wrong instance URL, or credential not configured. Check `SALESFORCE_INSTANCE_URL` first; if right, report it.\n- **`403` `INSUFFICIENT_ACCESS_OR_READONLY`, `API_DISABLED_FOR_ORG`** — Permission problem or API not enabled for this user\u002Forg.\n- **`403` `REQUEST_LIMIT_EXCEEDED`** — Daily cap (wait for 24h window) or concurrent long-running cap (back off, retry). Message says which.\n- **`404` `NOT_FOUND`, `ENTITY_IS_DELETED`** — Bad ID, or record deleted. Try `queryAll`.\n- **`409` `ENTITY_IS_LOCKED`** — Record locked by an approval process. Retry with backoff.\n- **`500` `UNKNOWN_EXCEPTION` (often a `DUPLICATE_VALUE` or trigger failure surfaced as 500)** — Read the message. Retry once; escalate if it persists.\n- **`503` `SERVER_UNAVAILABLE`** — Transient — overloaded or in maintenance. Retry with backoff.\n\n## Going deeper\n\n`references\u002Fapi.md` has the fuller endpoint catalog — the complete SOQL\u002FSOSL syntax reference,\nComposite Collections and Composite Tree, Bulk API 2.0 for large data loads, describe global, record\ncounts, recently viewed, picklist values by record type, and relationship traversal paths. Read it\nwhen you need an endpoint or SOQL feature not covered above.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,54,67,75,213,220,240,251,377,387,483,503,603,609,624,653,716,859,892,898,948,954,1101,1107,1118,1243,1249,1269,1274,1338,1344,1396,1639,1679,1685,1718,1724,1803,1809,1821,1830,1892,1898,1925,2232,2238,2248],{"type":39,"tag":40,"props":41,"children":42},"element","p",{},[43,46,52],{"type":44,"value":45},"text","In Salesforce, every org has its own ",{"type":39,"tag":47,"props":48,"children":49},"strong",{},[50],{"type":44,"value":51},"instance URL",{"type":44,"value":53}," (its My Domain), and the API is versioned in the path:",{"type":39,"tag":55,"props":56,"children":60},"pre",{"className":57,"code":59,"language":44},[58],"language-text","https:\u002F\u002F\u003Cyour-org>.my.salesforce.com\u002Fservices\u002Fdata\u002FvXX.0\u002F...\n",[61],{"type":39,"tag":62,"props":63,"children":65},"code",{"__ignoreMap":64},"",[66],{"type":44,"value":59},{"type":39,"tag":40,"props":68,"children":69},{},[70],{"type":39,"tag":47,"props":71,"children":72},{},[73],{"type":44,"value":74},"Key facts that bite:",{"type":39,"tag":76,"props":77,"children":78},"ul",{},[79,106,134,146,187],{"type":39,"tag":80,"props":81,"children":82},"li",{},[83,88,90,96,98,104],{"type":39,"tag":47,"props":84,"children":85},{},[86],{"type":44,"value":87},"Errors return as a JSON array, success as an object.",{"type":44,"value":89}," Guard every jq projection with\n",{"type":39,"tag":62,"props":91,"children":93},{"className":92},[],[94],{"type":44,"value":95},"if type == \"array\" then . else \u003Cprojection> end",{"type":44,"value":97}," or the error body crashes the filter and you\nnever see ",{"type":39,"tag":62,"props":99,"children":101},{"className":100},[],[102],{"type":44,"value":103},"errorCode",{"type":44,"value":105},".",{"type":39,"tag":80,"props":107,"children":108},{},[109,111,117,119,125,127,132],{"type":44,"value":110},"Custom objects and fields end in ",{"type":39,"tag":62,"props":112,"children":114},{"className":113},[],[115],{"type":44,"value":116},"__c",{"type":44,"value":118},"; custom relationship names end in ",{"type":39,"tag":62,"props":120,"children":122},{"className":121},[],[123],{"type":44,"value":124},"__r",{"type":44,"value":126}," (use ",{"type":39,"tag":62,"props":128,"children":130},{"className":129},[],[131],{"type":44,"value":124},{"type":44,"value":133}," in SOQL\nparent paths and child subqueries).",{"type":39,"tag":80,"props":135,"children":136},{},[137,139,144],{"type":44,"value":138},"Record ",{"type":39,"tag":47,"props":140,"children":141},{},[142],{"type":44,"value":143},"IDs",{"type":44,"value":145}," are 15- or 18-char alphanumeric. The 18-char form is case-insensitive — prefer it.",{"type":39,"tag":80,"props":147,"children":148},{},[149,151,162,164,170,172,178,180,186],{"type":44,"value":150},"SOQL has ",{"type":39,"tag":47,"props":152,"children":153},{},[154,156],{"type":44,"value":155},"no ",{"type":39,"tag":62,"props":157,"children":159},{"className":158},[],[160],{"type":44,"value":161},"SELECT *",{"type":44,"value":163},". ",{"type":39,"tag":62,"props":165,"children":167},{"className":166},[],[168],{"type":44,"value":169},"FIELDS(ALL)",{"type":44,"value":171}," \u002F ",{"type":39,"tag":62,"props":173,"children":175},{"className":174},[],[176],{"type":44,"value":177},"FIELDS(CUSTOM)",{"type":44,"value":179}," exist but require ",{"type":39,"tag":62,"props":181,"children":183},{"className":182},[],[184],{"type":44,"value":185},"LIMIT 200",{"type":44,"value":105},{"type":39,"tag":80,"props":188,"children":189},{},[190,195,197,203,205,211],{"type":39,"tag":47,"props":191,"children":192},{},[193],{"type":44,"value":194},"Describe is your schema",{"type":44,"value":196}," — field names, picklist values, relationship names, and\n",{"type":39,"tag":62,"props":198,"children":200},{"className":199},[],[201],{"type":44,"value":202},"createable",{"type":44,"value":204},"\u002F",{"type":39,"tag":62,"props":206,"children":208},{"className":207},[],[209],{"type":44,"value":210},"updateable",{"type":44,"value":212}," flags. Read it before guessing field names.",{"type":39,"tag":214,"props":215,"children":217},"h2",{"id":216},"request-setup",[218],{"type":44,"value":219},"Request setup",{"type":39,"tag":40,"props":221,"children":222},{},[223,225,231,232,238],{"type":44,"value":224},"Authentication is handled by the runtime — credentials are injected into outbound requests to this\nAPI, so there is nothing to set up. Do not try to create, mint, refresh, or validate tokens or keys.\nCredential variables exist only to keep requests well-formed; if one is unset, set it to any\nplaceholder value. A persistent ",{"type":39,"tag":62,"props":226,"children":228},{"className":227},[],[229],{"type":44,"value":230},"401",{"type":44,"value":204},{"type":39,"tag":62,"props":233,"children":235},{"className":234},[],[236],{"type":44,"value":237},"403",{"type":44,"value":239}," means the credential isn't configured for this workspace\n— report that instead of debugging auth.",{"type":39,"tag":40,"props":241,"children":242},{},[243,245,249],{"type":44,"value":244},"The ",{"type":39,"tag":47,"props":246,"children":247},{},[248],{"type":44,"value":51},{"type":44,"value":250}," must be real — every org has its own and it's part of every request path:",{"type":39,"tag":55,"props":252,"children":256},{"className":253,"code":254,"language":255,"meta":64,"style":64},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","export SALESFORCE_ACCESS_TOKEN=\"placeholder\"   # injected by the runtime; any value works\nexport SALESFORCE_INSTANCE_URL=\"https:\u002F\u002Fyourorg.my.salesforce.com\"\nexport SF_API=\"${SALESFORCE_INSTANCE_URL}\u002Fservices\u002Fdata\u002Fv66.0\"\n","bash",[257],{"type":39,"tag":62,"props":258,"children":259},{"__ignoreMap":64},[260,305,336],{"type":39,"tag":261,"props":262,"children":265},"span",{"class":263,"line":264},"line",1,[266,272,278,284,289,295,299],{"type":39,"tag":261,"props":267,"children":269},{"style":268},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[270],{"type":44,"value":271},"export",{"type":39,"tag":261,"props":273,"children":275},{"style":274},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[276],{"type":44,"value":277}," SALESFORCE_ACCESS_TOKEN",{"type":39,"tag":261,"props":279,"children":281},{"style":280},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[282],{"type":44,"value":283},"=",{"type":39,"tag":261,"props":285,"children":286},{"style":280},[287],{"type":44,"value":288},"\"",{"type":39,"tag":261,"props":290,"children":292},{"style":291},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[293],{"type":44,"value":294},"placeholder",{"type":39,"tag":261,"props":296,"children":297},{"style":280},[298],{"type":44,"value":288},{"type":39,"tag":261,"props":300,"children":302},{"style":301},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[303],{"type":44,"value":304},"   # injected by the runtime; any value works\n",{"type":39,"tag":261,"props":306,"children":308},{"class":263,"line":307},2,[309,313,318,322,326,331],{"type":39,"tag":261,"props":310,"children":311},{"style":268},[312],{"type":44,"value":271},{"type":39,"tag":261,"props":314,"children":315},{"style":274},[316],{"type":44,"value":317}," SALESFORCE_INSTANCE_URL",{"type":39,"tag":261,"props":319,"children":320},{"style":280},[321],{"type":44,"value":283},{"type":39,"tag":261,"props":323,"children":324},{"style":280},[325],{"type":44,"value":288},{"type":39,"tag":261,"props":327,"children":328},{"style":291},[329],{"type":44,"value":330},"https:\u002F\u002Fyourorg.my.salesforce.com",{"type":39,"tag":261,"props":332,"children":333},{"style":280},[334],{"type":44,"value":335},"\"\n",{"type":39,"tag":261,"props":337,"children":339},{"class":263,"line":338},3,[340,344,349,353,358,363,368,373],{"type":39,"tag":261,"props":341,"children":342},{"style":268},[343],{"type":44,"value":271},{"type":39,"tag":261,"props":345,"children":346},{"style":274},[347],{"type":44,"value":348}," SF_API",{"type":39,"tag":261,"props":350,"children":351},{"style":280},[352],{"type":44,"value":283},{"type":39,"tag":261,"props":354,"children":355},{"style":280},[356],{"type":44,"value":357},"\"${",{"type":39,"tag":261,"props":359,"children":360},{"style":274},[361],{"type":44,"value":362},"SALESFORCE_INSTANCE_URL",{"type":39,"tag":261,"props":364,"children":365},{"style":280},[366],{"type":44,"value":367},"}",{"type":39,"tag":261,"props":369,"children":370},{"style":291},[371],{"type":44,"value":372},"\u002Fservices\u002Fdata\u002Fv66.0",{"type":39,"tag":261,"props":374,"children":375},{"style":280},[376],{"type":44,"value":335},{"type":39,"tag":40,"props":378,"children":379},{},[380,385],{"type":39,"tag":47,"props":381,"children":382},{},[383],{"type":44,"value":384},"Sanity check",{"type":44,"value":386}," — confirm the instance URL is right and the workspace is wired up:",{"type":39,"tag":55,"props":388,"children":390},{"className":253,"code":389,"language":255,"meta":64,"style":64},"curl -sS \"${SF_API}\u002F\" -H \"Authorization: Bearer ${SALESFORCE_ACCESS_TOKEN}\" | jq .\n# Returns a map of available API resources on success.\n",[391],{"type":39,"tag":62,"props":392,"children":393},{"__ignoreMap":64},[394,475],{"type":39,"tag":261,"props":395,"children":396},{"class":263,"line":264},[397,403,408,413,418,422,426,430,435,440,445,450,455,460,465,470],{"type":39,"tag":261,"props":398,"children":400},{"style":399},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[401],{"type":44,"value":402},"curl",{"type":39,"tag":261,"props":404,"children":405},{"style":291},[406],{"type":44,"value":407}," -sS",{"type":39,"tag":261,"props":409,"children":410},{"style":280},[411],{"type":44,"value":412}," \"${",{"type":39,"tag":261,"props":414,"children":415},{"style":274},[416],{"type":44,"value":417},"SF_API",{"type":39,"tag":261,"props":419,"children":420},{"style":280},[421],{"type":44,"value":367},{"type":39,"tag":261,"props":423,"children":424},{"style":291},[425],{"type":44,"value":204},{"type":39,"tag":261,"props":427,"children":428},{"style":280},[429],{"type":44,"value":288},{"type":39,"tag":261,"props":431,"children":432},{"style":291},[433],{"type":44,"value":434}," -H",{"type":39,"tag":261,"props":436,"children":437},{"style":280},[438],{"type":44,"value":439}," \"",{"type":39,"tag":261,"props":441,"children":442},{"style":291},[443],{"type":44,"value":444},"Authorization: Bearer ",{"type":39,"tag":261,"props":446,"children":447},{"style":280},[448],{"type":44,"value":449},"${",{"type":39,"tag":261,"props":451,"children":452},{"style":274},[453],{"type":44,"value":454},"SALESFORCE_ACCESS_TOKEN",{"type":39,"tag":261,"props":456,"children":457},{"style":280},[458],{"type":44,"value":459},"}\"",{"type":39,"tag":261,"props":461,"children":462},{"style":280},[463],{"type":44,"value":464}," |",{"type":39,"tag":261,"props":466,"children":467},{"style":399},[468],{"type":44,"value":469}," jq",{"type":39,"tag":261,"props":471,"children":472},{"style":291},[473],{"type":44,"value":474}," .\n",{"type":39,"tag":261,"props":476,"children":477},{"class":263,"line":307},[478],{"type":39,"tag":261,"props":479,"children":480},{"style":301},[481],{"type":44,"value":482},"# Returns a map of available API resources on success.\n",{"type":39,"tag":40,"props":484,"children":485},{},[486,488,494,496,501],{"type":44,"value":487},"For brevity the recipes below use a helper. Define it once, or copy the ",{"type":39,"tag":62,"props":489,"children":491},{"className":490},[],[492],{"type":44,"value":493},"-H",{"type":44,"value":495}," flag onto each ",{"type":39,"tag":62,"props":497,"children":499},{"className":498},[],[500],{"type":44,"value":402},{"type":44,"value":502},":",{"type":39,"tag":55,"props":504,"children":506},{"className":253,"code":505,"language":255,"meta":64,"style":64},"salesforce_api() { curl -sS \"$@\" -H \"Authorization: Bearer ${SALESFORCE_ACCESS_TOKEN}\" -H \"Content-Type: application\u002Fjson\"; }\n",[507],{"type":39,"tag":62,"props":508,"children":509},{"__ignoreMap":64},[510],{"type":39,"tag":261,"props":511,"children":512},{"class":263,"line":264},[513,519,524,529,534,538,542,548,552,556,560,564,568,572,576,580,584,589,593,598],{"type":39,"tag":261,"props":514,"children":516},{"style":515},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[517],{"type":44,"value":518},"salesforce_api",{"type":39,"tag":261,"props":520,"children":521},{"style":280},[522],{"type":44,"value":523},"()",{"type":39,"tag":261,"props":525,"children":526},{"style":280},[527],{"type":44,"value":528}," {",{"type":39,"tag":261,"props":530,"children":531},{"style":399},[532],{"type":44,"value":533}," curl",{"type":39,"tag":261,"props":535,"children":536},{"style":291},[537],{"type":44,"value":407},{"type":39,"tag":261,"props":539,"children":540},{"style":280},[541],{"type":44,"value":439},{"type":39,"tag":261,"props":543,"children":545},{"style":544},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[546],{"type":44,"value":547},"$@",{"type":39,"tag":261,"props":549,"children":550},{"style":280},[551],{"type":44,"value":288},{"type":39,"tag":261,"props":553,"children":554},{"style":291},[555],{"type":44,"value":434},{"type":39,"tag":261,"props":557,"children":558},{"style":280},[559],{"type":44,"value":439},{"type":39,"tag":261,"props":561,"children":562},{"style":291},[563],{"type":44,"value":444},{"type":39,"tag":261,"props":565,"children":566},{"style":280},[567],{"type":44,"value":449},{"type":39,"tag":261,"props":569,"children":570},{"style":274},[571],{"type":44,"value":454},{"type":39,"tag":261,"props":573,"children":574},{"style":280},[575],{"type":44,"value":459},{"type":39,"tag":261,"props":577,"children":578},{"style":291},[579],{"type":44,"value":434},{"type":39,"tag":261,"props":581,"children":582},{"style":280},[583],{"type":44,"value":439},{"type":39,"tag":261,"props":585,"children":586},{"style":291},[587],{"type":44,"value":588},"Content-Type: application\u002Fjson",{"type":39,"tag":261,"props":590,"children":591},{"style":280},[592],{"type":44,"value":288},{"type":39,"tag":261,"props":594,"children":595},{"style":280},[596],{"type":44,"value":597},";",{"type":39,"tag":261,"props":599,"children":600},{"style":280},[601],{"type":44,"value":602}," }\n",{"type":39,"tag":214,"props":604,"children":606},{"id":605},"core-operations",[607],{"type":44,"value":608},"Core operations",{"type":39,"tag":610,"props":611,"children":613},"h3",{"id":612},"_1-run-a-soql-query-scriptssf_querysh",[614,616,622],{"type":44,"value":615},"1. Run a SOQL query (",{"type":39,"tag":62,"props":617,"children":619},{"className":618},[],[620],{"type":44,"value":621},"scripts\u002Fsf_query.sh",{"type":44,"value":623},")",{"type":39,"tag":40,"props":625,"children":626},{},[627,629,635,637,643,645,651],{"type":44,"value":628},"Run SOQL through the bundled script (path is relative to this skill's directory): it submits the\nquery, follows ",{"type":39,"tag":62,"props":630,"children":632},{"className":631},[],[633],{"type":44,"value":634},"nextRecordsUrl",{"type":44,"value":636}," through every page, surfaces the array-shaped error body, strips the\nper-record ",{"type":39,"tag":62,"props":638,"children":640},{"className":639},[],[641],{"type":44,"value":642},"attributes",{"type":44,"value":644}," envelope every record carries, and flattens nested parent-relationship\nobjects to dotted-key columns (",{"type":39,"tag":62,"props":646,"children":648},{"className":647},[],[649],{"type":44,"value":650},"Account.Name",{"type":44,"value":652},").",{"type":39,"tag":55,"props":654,"children":656},{"className":253,"code":655,"language":255,"meta":64,"style":64},"scripts\u002Fsf_query.sh \\\n  \"SELECT Id, Name, Amount, StageName, Account.Name FROM Opportunity\n   WHERE CloseDate = THIS_QUARTER ORDER BY Amount DESC\" \\\n  --max-rows 0\n",[657],{"type":39,"tag":62,"props":658,"children":659},{"__ignoreMap":64},[660,672,685,701],{"type":39,"tag":261,"props":661,"children":662},{"class":263,"line":264},[663,667],{"type":39,"tag":261,"props":664,"children":665},{"style":399},[666],{"type":44,"value":621},{"type":39,"tag":261,"props":668,"children":669},{"style":274},[670],{"type":44,"value":671}," \\\n",{"type":39,"tag":261,"props":673,"children":674},{"class":263,"line":307},[675,680],{"type":39,"tag":261,"props":676,"children":677},{"style":280},[678],{"type":44,"value":679},"  \"",{"type":39,"tag":261,"props":681,"children":682},{"style":291},[683],{"type":44,"value":684},"SELECT Id, Name, Amount, StageName, Account.Name FROM Opportunity\n",{"type":39,"tag":261,"props":686,"children":687},{"class":263,"line":338},[688,693,697],{"type":39,"tag":261,"props":689,"children":690},{"style":291},[691],{"type":44,"value":692},"   WHERE CloseDate = THIS_QUARTER ORDER BY Amount DESC",{"type":39,"tag":261,"props":694,"children":695},{"style":280},[696],{"type":44,"value":288},{"type":39,"tag":261,"props":698,"children":699},{"style":274},[700],{"type":44,"value":671},{"type":39,"tag":261,"props":702,"children":704},{"class":263,"line":703},4,[705,710],{"type":39,"tag":261,"props":706,"children":707},{"style":291},[708],{"type":44,"value":709},"  --max-rows",{"type":39,"tag":261,"props":711,"children":713},{"style":712},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[714],{"type":44,"value":715}," 0\n",{"type":39,"tag":76,"props":717,"children":718},{},[719,762,781,832],{"type":39,"tag":80,"props":720,"children":721},{},[722,724,729,731,736,738,744,746,752,754,760],{"type":44,"value":723},"SOQL is one quoted argument or stdin. Instance specifics come from ",{"type":39,"tag":62,"props":725,"children":727},{"className":726},[],[728],{"type":44,"value":362},{"type":44,"value":730}," \u002F\n",{"type":39,"tag":62,"props":732,"children":734},{"className":733},[],[735],{"type":44,"value":454},{"type":44,"value":737}," above; ",{"type":39,"tag":62,"props":739,"children":741},{"className":740},[],[742],{"type":44,"value":743},"--instance-url",{"type":44,"value":745}," and ",{"type":39,"tag":62,"props":747,"children":749},{"className":748},[],[750],{"type":44,"value":751},"--api-version",{"type":44,"value":753}," override. Full SOQL syntax\n(parent paths, child subqueries, date literals, escaping): ",{"type":39,"tag":62,"props":755,"children":757},{"className":756},[],[758],{"type":44,"value":759},"references\u002Fapi.md",{"type":44,"value":761},", section SOQL.",{"type":39,"tag":80,"props":763,"children":764},{},[765,771,773,779],{"type":39,"tag":62,"props":766,"children":768},{"className":767},[],[769],{"type":44,"value":770},"--all",{"type":44,"value":772}," switches to ",{"type":39,"tag":62,"props":774,"children":776},{"className":775},[],[777],{"type":44,"value":778},"\u002FqueryAll",{"type":44,"value":780}," (includes deleted\u002Farchived records).",{"type":39,"tag":80,"props":782,"children":783},{},[784,790,792,798,800,806,808,814,816,822,824,830],{"type":39,"tag":62,"props":785,"children":787},{"className":786},[],[788],{"type":44,"value":789},"--max-rows N",{"type":44,"value":791}," caps fetched rows (default 10000, ",{"type":39,"tag":62,"props":793,"children":795},{"className":794},[],[796],{"type":44,"value":797},"0",{"type":44,"value":799}," = everything); ",{"type":39,"tag":62,"props":801,"children":803},{"className":802},[],[804],{"type":44,"value":805},"--batch-size N",{"type":44,"value":807}," (200–2000)\nsets the ",{"type":39,"tag":62,"props":809,"children":811},{"className":810},[],[812],{"type":44,"value":813},"Sforce-Query-Options",{"type":44,"value":815}," page size; ",{"type":39,"tag":62,"props":817,"children":819},{"className":818},[],[820],{"type":44,"value":821},"--json",{"type":44,"value":823}," emits one JSON object per row instead of TSV\nwith a header. ",{"type":39,"tag":62,"props":825,"children":827},{"className":826},[],[828],{"type":44,"value":829},"totalSize",{"type":44,"value":831}," and row counts go to stderr.",{"type":39,"tag":80,"props":833,"children":834},{},[835,837,842,844,850,852,857],{"type":44,"value":836},"Exit codes: ",{"type":39,"tag":62,"props":838,"children":840},{"className":839},[],[841],{"type":44,"value":797},{"type":44,"value":843}," success; non-zero on failure (",{"type":39,"tag":62,"props":845,"children":847},{"className":846},[],[848],{"type":44,"value":849},"1",{"type":44,"value":851}," = API\u002Fargument error with ",{"type":39,"tag":62,"props":853,"children":855},{"className":854},[],[856],{"type":44,"value":103},{"type":44,"value":858}," on stderr, other = curl transport error).",{"type":39,"tag":40,"props":860,"children":861},{},[862,864,869,871,877,879,884,886,891],{"type":44,"value":863},"If the script errors, read it — it's plain ",{"type":39,"tag":62,"props":865,"children":867},{"className":866},[],[868],{"type":44,"value":402},{"type":44,"value":870}," + ",{"type":39,"tag":62,"props":872,"children":874},{"className":873},[],[875],{"type":44,"value":876},"jq",{"type":44,"value":878}," — and debug against ",{"type":39,"tag":62,"props":880,"children":882},{"className":881},[],[883],{"type":44,"value":759},{"type":44,"value":885},".\nSOSL search, sObject writes, Describe, Composite, and Bulk API 2.0 are separate endpoints\n(operations below and ",{"type":39,"tag":62,"props":887,"children":889},{"className":888},[],[890],{"type":44,"value":759},{"type":44,"value":652},{"type":39,"tag":610,"props":893,"children":895},{"id":894},"_2-full-text-search-sosl",[896],{"type":44,"value":897},"2. Full-text search (SOSL)",{"type":39,"tag":40,"props":899,"children":900},{},[901,907,909,915,917,923,925,931,933,939,941,947],{"type":39,"tag":62,"props":902,"children":904},{"className":903},[],[905],{"type":44,"value":906},"salesforce_api -G \"${SF_API}\u002Fsearch\" --data-urlencode \"q=FIND {Acme} IN NAME FIELDS RETURNING Account(Id, Name), Contact(Id, Name, Email)\"",{"type":44,"value":908}," → results under ",{"type":39,"tag":62,"props":910,"children":912},{"className":911},[],[913],{"type":44,"value":914},".searchRecords",{"type":44,"value":916}," (",{"type":39,"tag":62,"props":918,"children":920},{"className":919},[],[921],{"type":44,"value":922},"-G",{"type":44,"value":924}," keeps\n",{"type":39,"tag":62,"props":926,"children":928},{"className":927},[],[929],{"type":44,"value":930},"--data-urlencode",{"type":44,"value":932}," a GET; without it curl POSTs and ",{"type":39,"tag":62,"props":934,"children":936},{"className":935},[],[937],{"type":44,"value":938},"\u002Fsearch",{"type":44,"value":940}," rejects it). Or\n",{"type":39,"tag":62,"props":942,"children":944},{"className":943},[],[945],{"type":44,"value":946},"GET \u002FparameterizedSearch?q=Acme&sobject=Account&Account.fields=Id,Name",{"type":44,"value":105},{"type":39,"tag":610,"props":949,"children":951},{"id":950},"_3-read-create-update-delete-one-record",[952],{"type":44,"value":953},"3. Read \u002F create \u002F update \u002F delete one record",{"type":39,"tag":76,"props":955,"children":956},{},[957,998,1046,1084],{"type":39,"tag":80,"props":958,"children":959},{},[960,965,967,973,975,981,983,989,991,997],{"type":39,"tag":47,"props":961,"children":962},{},[963],{"type":44,"value":964},"Read",{"type":44,"value":966}," — ",{"type":39,"tag":62,"props":968,"children":970},{"className":969},[],[971],{"type":44,"value":972},"GET ${SF_API}\u002Fsobjects\u002FAccount\u002FID?fields=Id,Name,Industry",{"type":44,"value":974},". Omit ",{"type":39,"tag":62,"props":976,"children":978},{"className":977},[],[979],{"type":44,"value":980},"fields",{"type":44,"value":982}," for all. Parent fields need SOQL or ",{"type":39,"tag":62,"props":984,"children":986},{"className":985},[],[987],{"type":44,"value":988},"\u002Fsobjects\u002FAccount\u002FID\u002FOwner",{"type":44,"value":990},". By external ID: ",{"type":39,"tag":62,"props":992,"children":994},{"className":993},[],[995],{"type":44,"value":996},"\u002Fsobjects\u002FAccount\u002FExt_Id__c\u002FVALUE",{"type":44,"value":105},{"type":39,"tag":80,"props":999,"children":1000},{},[1001,1006,1007,1013,1015,1021,1023,1029,1031,1037,1039,1045],{"type":39,"tag":47,"props":1002,"children":1003},{},[1004],{"type":44,"value":1005},"Create",{"type":44,"value":966},{"type":39,"tag":62,"props":1008,"children":1010},{"className":1009},[],[1011],{"type":44,"value":1012},"POST ${SF_API}\u002Fsobjects\u002FAccount",{"type":44,"value":1014}," body ",{"type":39,"tag":62,"props":1016,"children":1018},{"className":1017},[],[1019],{"type":44,"value":1020},"{\"Name\":\"Acme\",...}",{"type":44,"value":1022},". Returns ",{"type":39,"tag":62,"props":1024,"children":1026},{"className":1025},[],[1027],{"type":44,"value":1028},"{\"id\",\"success\":true,\"errors\":[]}",{"type":44,"value":1030},". Lookups: ",{"type":39,"tag":62,"props":1032,"children":1034},{"className":1033},[],[1035],{"type":44,"value":1036},"\"AccountId\":\"001...\"",{"type":44,"value":1038}," or by external ID ",{"type":39,"tag":62,"props":1040,"children":1042},{"className":1041},[],[1043],{"type":44,"value":1044},"\"Account\":{\"Ext_Id__c\":\"ACME-42\"}",{"type":44,"value":105},{"type":39,"tag":80,"props":1047,"children":1048},{},[1049,1054,1055,1061,1062,1068,1069,1074,1076,1082],{"type":39,"tag":47,"props":1050,"children":1051},{},[1052],{"type":44,"value":1053},"Update",{"type":44,"value":966},{"type":39,"tag":62,"props":1056,"children":1058},{"className":1057},[],[1059],{"type":44,"value":1060},"PATCH ${SF_API}\u002Fsobjects\u002FOpportunity\u002FID",{"type":44,"value":1014},{"type":39,"tag":62,"props":1063,"children":1065},{"className":1064},[],[1066],{"type":44,"value":1067},"{\"StageName\":\"...\"}",{"type":44,"value":163},{"type":39,"tag":47,"props":1070,"children":1071},{},[1072],{"type":44,"value":1073},"Returns 204 No Content",{"type":44,"value":1075}," (empty body) — pass ",{"type":39,"tag":62,"props":1077,"children":1079},{"className":1078},[],[1080],{"type":44,"value":1081},"-w '\\n%{http_code}\\n'",{"type":44,"value":1083}," to see it.",{"type":39,"tag":80,"props":1085,"children":1086},{},[1087,1092,1093,1099],{"type":39,"tag":47,"props":1088,"children":1089},{},[1090],{"type":44,"value":1091},"Delete",{"type":44,"value":966},{"type":39,"tag":62,"props":1094,"children":1096},{"className":1095},[],[1097],{"type":44,"value":1098},"DELETE ${SF_API}\u002Fsobjects\u002FAccount\u002FID",{"type":44,"value":1100},". 204 on success. Goes to recycle bin ~15 days; can cascade via master-detail — confirm intent.",{"type":39,"tag":610,"props":1102,"children":1104},{"id":1103},"_4-upsert-by-external-id",[1105],{"type":44,"value":1106},"4. Upsert by external ID",{"type":39,"tag":40,"props":1108,"children":1109},{},[1110,1116],{"type":39,"tag":62,"props":1111,"children":1113},{"className":1112},[],[1114],{"type":44,"value":1115},"PATCH",{"type":44,"value":1117}," on the external-ID path creates or updates in one call — the safest way to sync from another\nsystem:",{"type":39,"tag":55,"props":1119,"children":1121},{"className":253,"code":1120,"language":255,"meta":64,"style":64},"salesforce_api -X PATCH \"${SF_API}\u002Fsobjects\u002FAccount\u002FExternal_Id__c\u002FACME-42\" \\\n  -d '{\"Name\": \"Acme Corporation\", \"Industry\": \"Manufacturing\"}' -w '\\n%{http_code}\\n'\n# 201 + {\"id\",...,\"created\":true}  → created\n# 200 + {\"created\":false}          → updated\n# 300                              → external ID matched MULTIPLE records; nothing written\n# Append ?updateOnly=true to update-or-fail instead of update-or-create.\n",[1122],{"type":39,"tag":62,"props":1123,"children":1124},{"__ignoreMap":64},[1125,1167,1209,1217,1225,1234],{"type":39,"tag":261,"props":1126,"children":1127},{"class":263,"line":264},[1128,1132,1137,1142,1146,1150,1154,1159,1163],{"type":39,"tag":261,"props":1129,"children":1130},{"style":399},[1131],{"type":44,"value":518},{"type":39,"tag":261,"props":1133,"children":1134},{"style":291},[1135],{"type":44,"value":1136}," -X",{"type":39,"tag":261,"props":1138,"children":1139},{"style":291},[1140],{"type":44,"value":1141}," PATCH",{"type":39,"tag":261,"props":1143,"children":1144},{"style":280},[1145],{"type":44,"value":412},{"type":39,"tag":261,"props":1147,"children":1148},{"style":274},[1149],{"type":44,"value":417},{"type":39,"tag":261,"props":1151,"children":1152},{"style":280},[1153],{"type":44,"value":367},{"type":39,"tag":261,"props":1155,"children":1156},{"style":291},[1157],{"type":44,"value":1158},"\u002Fsobjects\u002FAccount\u002FExternal_Id__c\u002FACME-42",{"type":39,"tag":261,"props":1160,"children":1161},{"style":280},[1162],{"type":44,"value":288},{"type":39,"tag":261,"props":1164,"children":1165},{"style":274},[1166],{"type":44,"value":671},{"type":39,"tag":261,"props":1168,"children":1169},{"class":263,"line":307},[1170,1175,1180,1185,1190,1195,1199,1204],{"type":39,"tag":261,"props":1171,"children":1172},{"style":291},[1173],{"type":44,"value":1174},"  -d",{"type":39,"tag":261,"props":1176,"children":1177},{"style":280},[1178],{"type":44,"value":1179}," '",{"type":39,"tag":261,"props":1181,"children":1182},{"style":291},[1183],{"type":44,"value":1184},"{\"Name\": \"Acme Corporation\", \"Industry\": \"Manufacturing\"}",{"type":39,"tag":261,"props":1186,"children":1187},{"style":280},[1188],{"type":44,"value":1189},"'",{"type":39,"tag":261,"props":1191,"children":1192},{"style":291},[1193],{"type":44,"value":1194}," -w",{"type":39,"tag":261,"props":1196,"children":1197},{"style":280},[1198],{"type":44,"value":1179},{"type":39,"tag":261,"props":1200,"children":1201},{"style":291},[1202],{"type":44,"value":1203},"\\n%{http_code}\\n",{"type":39,"tag":261,"props":1205,"children":1206},{"style":280},[1207],{"type":44,"value":1208},"'\n",{"type":39,"tag":261,"props":1210,"children":1211},{"class":263,"line":338},[1212],{"type":39,"tag":261,"props":1213,"children":1214},{"style":301},[1215],{"type":44,"value":1216},"# 201 + {\"id\",...,\"created\":true}  → created\n",{"type":39,"tag":261,"props":1218,"children":1219},{"class":263,"line":703},[1220],{"type":39,"tag":261,"props":1221,"children":1222},{"style":301},[1223],{"type":44,"value":1224},"# 200 + {\"created\":false}          → updated\n",{"type":39,"tag":261,"props":1226,"children":1228},{"class":263,"line":1227},5,[1229],{"type":39,"tag":261,"props":1230,"children":1231},{"style":301},[1232],{"type":44,"value":1233},"# 300                              → external ID matched MULTIPLE records; nothing written\n",{"type":39,"tag":261,"props":1235,"children":1237},{"class":263,"line":1236},6,[1238],{"type":39,"tag":261,"props":1239,"children":1240},{"style":301},[1241],{"type":44,"value":1242},"# Append ?updateOnly=true to update-or-fail instead of update-or-create.\n",{"type":39,"tag":610,"props":1244,"children":1246},{"id":1245},"_5-describe-an-sobject-schema",[1247],{"type":44,"value":1248},"5. Describe an sObject (schema)",{"type":39,"tag":40,"props":1250,"children":1251},{},[1252,1254,1260,1262,1268],{"type":44,"value":1253},"List all sObjects: ",{"type":39,"tag":62,"props":1255,"children":1257},{"className":1256},[],[1258],{"type":44,"value":1259},"GET ${SF_API}\u002Fsobjects",{"type":44,"value":1261}," → ",{"type":39,"tag":62,"props":1263,"children":1265},{"className":1264},[],[1266],{"type":44,"value":1267},".sobjects[] | {name, label, custom, queryable}",{"type":44,"value":105},{"type":39,"tag":40,"props":1270,"children":1271},{},[1272],{"type":44,"value":1273},"One sObject's full schema:",{"type":39,"tag":55,"props":1275,"children":1277},{"className":253,"code":1276,"language":255,"meta":64,"style":64},"salesforce_api \"${SF_API}\u002Fsobjects\u002FOpportunity\u002Fdescribe\" | \\\n  jq '{fields: [.fields[]? | {name, type, createable, updateable, picklistValues: [.picklistValues[]?.value]}], childRelationships: [.childRelationships[]? | {relationshipName, childSObject}]}'\n",[1278],{"type":39,"tag":62,"props":1279,"children":1280},{"__ignoreMap":64},[1281,1317],{"type":39,"tag":261,"props":1282,"children":1283},{"class":263,"line":264},[1284,1288,1292,1296,1300,1305,1309,1313],{"type":39,"tag":261,"props":1285,"children":1286},{"style":399},[1287],{"type":44,"value":518},{"type":39,"tag":261,"props":1289,"children":1290},{"style":280},[1291],{"type":44,"value":412},{"type":39,"tag":261,"props":1293,"children":1294},{"style":274},[1295],{"type":44,"value":417},{"type":39,"tag":261,"props":1297,"children":1298},{"style":280},[1299],{"type":44,"value":367},{"type":39,"tag":261,"props":1301,"children":1302},{"style":291},[1303],{"type":44,"value":1304},"\u002Fsobjects\u002FOpportunity\u002Fdescribe",{"type":39,"tag":261,"props":1306,"children":1307},{"style":280},[1308],{"type":44,"value":288},{"type":39,"tag":261,"props":1310,"children":1311},{"style":280},[1312],{"type":44,"value":464},{"type":39,"tag":261,"props":1314,"children":1315},{"style":274},[1316],{"type":44,"value":671},{"type":39,"tag":261,"props":1318,"children":1319},{"class":263,"line":307},[1320,1325,1329,1334],{"type":39,"tag":261,"props":1321,"children":1322},{"style":399},[1323],{"type":44,"value":1324},"  jq",{"type":39,"tag":261,"props":1326,"children":1327},{"style":280},[1328],{"type":44,"value":1179},{"type":39,"tag":261,"props":1330,"children":1331},{"style":291},[1332],{"type":44,"value":1333},"{fields: [.fields[]? | {name, type, createable, updateable, picklistValues: [.picklistValues[]?.value]}], childRelationships: [.childRelationships[]? | {relationshipName, childSObject}]}",{"type":39,"tag":261,"props":1335,"children":1336},{"style":280},[1337],{"type":44,"value":1208},{"type":39,"tag":610,"props":1339,"children":1341},{"id":1340},"_6-composite-several-operations-in-one-request",[1342],{"type":44,"value":1343},"6. Composite: several operations in one request",{"type":39,"tag":40,"props":1345,"children":1346},{},[1347,1349,1355,1357,1363,1365,1378,1380,1386,1388,1394],{"type":44,"value":1348},"Chains up to 25 subrequests in one round trip. Later subrequests reference earlier results with\n",{"type":39,"tag":62,"props":1350,"children":1352},{"className":1351},[],[1353],{"type":44,"value":1354},"@{refName.field}",{"type":44,"value":1356},". Set ",{"type":39,"tag":62,"props":1358,"children":1360},{"className":1359},[],[1361],{"type":44,"value":1362},"allOrNone: true",{"type":44,"value":1364}," to roll back the whole batch on any failure. ",{"type":39,"tag":47,"props":1366,"children":1367},{},[1368,1370,1376],{"type":44,"value":1369},"Each\nsubrequest ",{"type":39,"tag":62,"props":1371,"children":1373},{"className":1372},[],[1374],{"type":44,"value":1375},"url",{"type":44,"value":1377}," is an absolute path that must repeat the same API version as the outer request",{"type":44,"value":1379}," —\nif you change ",{"type":39,"tag":62,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":44,"value":1385},"v66.0",{"type":44,"value":1387}," in ",{"type":39,"tag":62,"props":1389,"children":1391},{"className":1390},[],[1392],{"type":44,"value":1393},"${SF_API}",{"type":44,"value":1395},", change it here too.",{"type":39,"tag":55,"props":1397,"children":1399},{"className":253,"code":1398,"language":255,"meta":64,"style":64},"salesforce_api -X POST \"${SF_API}\u002Fcomposite\" \\\n  -d '{\n    \"allOrNone\": true,\n    \"compositeRequest\": [\n      {\n        \"method\": \"POST\", \"url\": \"\u002Fservices\u002Fdata\u002Fv66.0\u002Fsobjects\u002FAccount\",\n        \"referenceId\": \"NewAccount\",\n        \"body\": {\"Name\": \"Acme Corporation\"}\n      },\n      {\n        \"method\": \"POST\", \"url\": \"\u002Fservices\u002Fdata\u002Fv66.0\u002Fsobjects\u002FContact\",\n        \"referenceId\": \"NewContact\",\n        \"body\": {\"LastName\": \"Nguyen\", \"AccountId\": \"@{NewAccount.id}\"}\n      },\n      {\n        \"method\": \"GET\", \"url\": \"\u002Fservices\u002Fdata\u002Fv66.0\u002Fsobjects\u002FAccount\u002F@{NewAccount.id}?fields=Id,Name\",\n        \"referenceId\": \"ReadBack\"\n      }\n    ]\n  }' | jq '.compositeResponse[]? | {ref: .referenceId, status: .httpStatusCode, body: .body}'\n",[1400],{"type":39,"tag":62,"props":1401,"children":1402},{"__ignoreMap":64},[1403,1444,1460,1468,1476,1484,1492,1501,1510,1519,1527,1536,1544,1553,1561,1569,1578,1587,1596,1605],{"type":39,"tag":261,"props":1404,"children":1405},{"class":263,"line":264},[1406,1410,1414,1419,1423,1427,1431,1436,1440],{"type":39,"tag":261,"props":1407,"children":1408},{"style":399},[1409],{"type":44,"value":518},{"type":39,"tag":261,"props":1411,"children":1412},{"style":291},[1413],{"type":44,"value":1136},{"type":39,"tag":261,"props":1415,"children":1416},{"style":291},[1417],{"type":44,"value":1418}," POST",{"type":39,"tag":261,"props":1420,"children":1421},{"style":280},[1422],{"type":44,"value":412},{"type":39,"tag":261,"props":1424,"children":1425},{"style":274},[1426],{"type":44,"value":417},{"type":39,"tag":261,"props":1428,"children":1429},{"style":280},[1430],{"type":44,"value":367},{"type":39,"tag":261,"props":1432,"children":1433},{"style":291},[1434],{"type":44,"value":1435},"\u002Fcomposite",{"type":39,"tag":261,"props":1437,"children":1438},{"style":280},[1439],{"type":44,"value":288},{"type":39,"tag":261,"props":1441,"children":1442},{"style":274},[1443],{"type":44,"value":671},{"type":39,"tag":261,"props":1445,"children":1446},{"class":263,"line":307},[1447,1451,1455],{"type":39,"tag":261,"props":1448,"children":1449},{"style":291},[1450],{"type":44,"value":1174},{"type":39,"tag":261,"props":1452,"children":1453},{"style":280},[1454],{"type":44,"value":1179},{"type":39,"tag":261,"props":1456,"children":1457},{"style":291},[1458],{"type":44,"value":1459},"{\n",{"type":39,"tag":261,"props":1461,"children":1462},{"class":263,"line":338},[1463],{"type":39,"tag":261,"props":1464,"children":1465},{"style":291},[1466],{"type":44,"value":1467},"    \"allOrNone\": true,\n",{"type":39,"tag":261,"props":1469,"children":1470},{"class":263,"line":703},[1471],{"type":39,"tag":261,"props":1472,"children":1473},{"style":291},[1474],{"type":44,"value":1475},"    \"compositeRequest\": [\n",{"type":39,"tag":261,"props":1477,"children":1478},{"class":263,"line":1227},[1479],{"type":39,"tag":261,"props":1480,"children":1481},{"style":291},[1482],{"type":44,"value":1483},"      {\n",{"type":39,"tag":261,"props":1485,"children":1486},{"class":263,"line":1236},[1487],{"type":39,"tag":261,"props":1488,"children":1489},{"style":291},[1490],{"type":44,"value":1491},"        \"method\": \"POST\", \"url\": \"\u002Fservices\u002Fdata\u002Fv66.0\u002Fsobjects\u002FAccount\",\n",{"type":39,"tag":261,"props":1493,"children":1495},{"class":263,"line":1494},7,[1496],{"type":39,"tag":261,"props":1497,"children":1498},{"style":291},[1499],{"type":44,"value":1500},"        \"referenceId\": \"NewAccount\",\n",{"type":39,"tag":261,"props":1502,"children":1504},{"class":263,"line":1503},8,[1505],{"type":39,"tag":261,"props":1506,"children":1507},{"style":291},[1508],{"type":44,"value":1509},"        \"body\": {\"Name\": \"Acme Corporation\"}\n",{"type":39,"tag":261,"props":1511,"children":1513},{"class":263,"line":1512},9,[1514],{"type":39,"tag":261,"props":1515,"children":1516},{"style":291},[1517],{"type":44,"value":1518},"      },\n",{"type":39,"tag":261,"props":1520,"children":1522},{"class":263,"line":1521},10,[1523],{"type":39,"tag":261,"props":1524,"children":1525},{"style":291},[1526],{"type":44,"value":1483},{"type":39,"tag":261,"props":1528,"children":1530},{"class":263,"line":1529},11,[1531],{"type":39,"tag":261,"props":1532,"children":1533},{"style":291},[1534],{"type":44,"value":1535},"        \"method\": \"POST\", \"url\": \"\u002Fservices\u002Fdata\u002Fv66.0\u002Fsobjects\u002FContact\",\n",{"type":39,"tag":261,"props":1537,"children":1538},{"class":263,"line":27},[1539],{"type":39,"tag":261,"props":1540,"children":1541},{"style":291},[1542],{"type":44,"value":1543},"        \"referenceId\": \"NewContact\",\n",{"type":39,"tag":261,"props":1545,"children":1547},{"class":263,"line":1546},13,[1548],{"type":39,"tag":261,"props":1549,"children":1550},{"style":291},[1551],{"type":44,"value":1552},"        \"body\": {\"LastName\": \"Nguyen\", \"AccountId\": \"@{NewAccount.id}\"}\n",{"type":39,"tag":261,"props":1554,"children":1556},{"class":263,"line":1555},14,[1557],{"type":39,"tag":261,"props":1558,"children":1559},{"style":291},[1560],{"type":44,"value":1518},{"type":39,"tag":261,"props":1562,"children":1564},{"class":263,"line":1563},15,[1565],{"type":39,"tag":261,"props":1566,"children":1567},{"style":291},[1568],{"type":44,"value":1483},{"type":39,"tag":261,"props":1570,"children":1572},{"class":263,"line":1571},16,[1573],{"type":39,"tag":261,"props":1574,"children":1575},{"style":291},[1576],{"type":44,"value":1577},"        \"method\": \"GET\", \"url\": \"\u002Fservices\u002Fdata\u002Fv66.0\u002Fsobjects\u002FAccount\u002F@{NewAccount.id}?fields=Id,Name\",\n",{"type":39,"tag":261,"props":1579,"children":1581},{"class":263,"line":1580},17,[1582],{"type":39,"tag":261,"props":1583,"children":1584},{"style":291},[1585],{"type":44,"value":1586},"        \"referenceId\": \"ReadBack\"\n",{"type":39,"tag":261,"props":1588,"children":1590},{"class":263,"line":1589},18,[1591],{"type":39,"tag":261,"props":1592,"children":1593},{"style":291},[1594],{"type":44,"value":1595},"      }\n",{"type":39,"tag":261,"props":1597,"children":1599},{"class":263,"line":1598},19,[1600],{"type":39,"tag":261,"props":1601,"children":1602},{"style":291},[1603],{"type":44,"value":1604},"    ]\n",{"type":39,"tag":261,"props":1606,"children":1608},{"class":263,"line":1607},20,[1609,1614,1618,1622,1626,1630,1635],{"type":39,"tag":261,"props":1610,"children":1611},{"style":291},[1612],{"type":44,"value":1613},"  }",{"type":39,"tag":261,"props":1615,"children":1616},{"style":280},[1617],{"type":44,"value":1189},{"type":39,"tag":261,"props":1619,"children":1620},{"style":280},[1621],{"type":44,"value":464},{"type":39,"tag":261,"props":1623,"children":1624},{"style":399},[1625],{"type":44,"value":469},{"type":39,"tag":261,"props":1627,"children":1628},{"style":280},[1629],{"type":44,"value":1179},{"type":39,"tag":261,"props":1631,"children":1632},{"style":291},[1633],{"type":44,"value":1634},".compositeResponse[]? | {ref: .referenceId, status: .httpStatusCode, body: .body}",{"type":39,"tag":261,"props":1636,"children":1637},{"style":280},[1638],{"type":44,"value":1208},{"type":39,"tag":40,"props":1640,"children":1641},{},[1642,1655,1657,1663,1665,1671,1673,1678],{"type":39,"tag":47,"props":1643,"children":1644},{},[1645,1647,1653],{"type":44,"value":1646},"The outer request returns ",{"type":39,"tag":62,"props":1648,"children":1650},{"className":1649},[],[1651],{"type":44,"value":1652},"200",{"type":44,"value":1654}," even when subrequests fail",{"type":44,"value":1656}," — always check each subrequest's\n",{"type":39,"tag":62,"props":1658,"children":1660},{"className":1659},[],[1661],{"type":44,"value":1662},"httpStatusCode",{"type":44,"value":1664},". For bulk inserts\u002Fupdates without cross-references, use Composite Collections —\n",{"type":39,"tag":62,"props":1666,"children":1668},{"className":1667},[],[1669],{"type":44,"value":1670},"POST \u002Fcomposite\u002Fsobjects",{"type":44,"value":1672}," with up to 200 records (see ",{"type":39,"tag":62,"props":1674,"children":1676},{"className":1675},[],[1677],{"type":44,"value":759},{"type":44,"value":652},{"type":39,"tag":610,"props":1680,"children":1682},{"id":1681},"_7-check-limits",[1683],{"type":44,"value":1684},"7. Check limits",{"type":39,"tag":40,"props":1686,"children":1687},{},[1688,1694,1695,1701,1703,1709,1710,1716],{"type":39,"tag":62,"props":1689,"children":1691},{"className":1690},[],[1692],{"type":44,"value":1693},"GET ${SF_API}\u002Flimits",{"type":44,"value":1261},{"type":39,"tag":62,"props":1696,"children":1698},{"className":1697},[],[1699],{"type":44,"value":1700},".DailyApiRequests",{"type":44,"value":1702}," shows ",{"type":39,"tag":62,"props":1704,"children":1706},{"className":1705},[],[1707],{"type":44,"value":1708},"Max",{"type":44,"value":745},{"type":39,"tag":62,"props":1711,"children":1713},{"className":1712},[],[1714],{"type":44,"value":1715},"Remaining",{"type":44,"value":1717},". Check before running a\nloop — orgs have per-24-hour caps.",{"type":39,"tag":214,"props":1719,"children":1721},{"id":1720},"pagination",[1722],{"type":44,"value":1723},"Pagination",{"type":39,"tag":40,"props":1725,"children":1726},{},[1727,1729,1735,1737,1743,1745,1750,1752,1758,1760,1766,1768,1773,1775,1781,1783,1788,1790,1795,1797,1802],{"type":44,"value":1728},"SOQL responses cap at 2000 records\u002Fpage (configurable 200–2000 via header\n",{"type":39,"tag":62,"props":1730,"children":1732},{"className":1731},[],[1733],{"type":44,"value":1734},"Sforce-Query-Options: batchSize=N",{"type":44,"value":1736},"). When more rows exist the response has ",{"type":39,"tag":62,"props":1738,"children":1740},{"className":1739},[],[1741],{"type":44,"value":1742},"done: false",{"type":44,"value":1744}," and\n",{"type":39,"tag":62,"props":1746,"children":1748},{"className":1747},[],[1749],{"type":44,"value":634},{"type":44,"value":1751}," — an instance-relative path you ",{"type":39,"tag":62,"props":1753,"children":1755},{"className":1754},[],[1756],{"type":44,"value":1757},"GET",{"type":44,"value":1759}," against ",{"type":39,"tag":62,"props":1761,"children":1763},{"className":1762},[],[1764],{"type":44,"value":1765},"${SALESFORCE_INSTANCE_URL}",{"type":44,"value":1767},";\n",{"type":39,"tag":62,"props":1769,"children":1771},{"className":1770},[],[1772],{"type":44,"value":621},{"type":44,"value":1774}," follows it for you. ",{"type":39,"tag":62,"props":1776,"children":1778},{"className":1777},[],[1779],{"type":44,"value":1780},"OFFSET",{"type":44,"value":1782}," in SOQL is ",{"type":39,"tag":47,"props":1784,"children":1785},{},[1786],{"type":44,"value":1787},"hard-capped at 2000",{"type":44,"value":1789}," — use\n",{"type":39,"tag":62,"props":1791,"children":1793},{"className":1792},[],[1794],{"type":44,"value":634},{"type":44,"value":1796}," for deep pagination, or Bulk API 2.0 for very large exports (",{"type":39,"tag":62,"props":1798,"children":1800},{"className":1799},[],[1801],{"type":44,"value":759},{"type":44,"value":652},{"type":39,"tag":214,"props":1804,"children":1806},{"id":1805},"rate-limits",[1807],{"type":44,"value":1808},"Rate limits",{"type":39,"tag":40,"props":1810,"children":1811},{},[1812,1814,1819],{"type":44,"value":1813},"Salesforce caps total API calls ",{"type":39,"tag":47,"props":1815,"children":1816},{},[1817],{"type":44,"value":1818},"per rolling 24 hours per org",{"type":44,"value":1820}," (not per second). Every response\ncarries:",{"type":39,"tag":55,"props":1822,"children":1825},{"className":1823,"code":1824,"language":44},[58],"Sforce-Limit-Info: api-usage=1234\u002F100000\n",[1826],{"type":39,"tag":62,"props":1827,"children":1828},{"__ignoreMap":64},[1829],{"type":44,"value":1824},{"type":39,"tag":40,"props":1831,"children":1832},{},[1833,1835,1840,1842,1848,1849,1860,1862,1867,1869,1875,1877,1883,1884,1890],{"type":44,"value":1834},"Hitting the cap → ",{"type":39,"tag":62,"props":1836,"children":1838},{"className":1837},[],[1839],{"type":44,"value":237},{"type":44,"value":1841}," with ",{"type":39,"tag":62,"props":1843,"children":1845},{"className":1844},[],[1846],{"type":44,"value":1847},"errorCode: REQUEST_LIMIT_EXCEEDED",{"type":44,"value":163},{"type":39,"tag":47,"props":1850,"children":1851},{},[1852,1854],{"type":44,"value":1853},"No ",{"type":39,"tag":62,"props":1855,"children":1857},{"className":1856},[],[1858],{"type":44,"value":1859},"Retry-After",{"type":44,"value":1861}," — wait for\nusage to age out of the 24-hour window. Separately enforced: ",{"type":39,"tag":47,"props":1863,"children":1864},{},[1865],{"type":44,"value":1866},"max 25 concurrent long-running\nrequests",{"type":44,"value":1868}," (≥20s; 5 in Developer Edition). That also surfaces as ",{"type":39,"tag":62,"props":1870,"children":1872},{"className":1871},[],[1873],{"type":44,"value":1874},"REQUEST_LIMIT_EXCEEDED",{"type":44,"value":1876}," (message\nnames ",{"type":39,"tag":62,"props":1878,"children":1880},{"className":1879},[],[1881],{"type":44,"value":1882},"ConcurrentRequests",{"type":44,"value":204},{"type":39,"tag":62,"props":1885,"children":1887},{"className":1886},[],[1888],{"type":44,"value":1889},"ConcurrentPerOrgLongTxn",{"type":44,"value":1891},") and clears as soon as in-flight requests\nfinish — back off and retry. Be frugal: batch with Composite, select only the fields you need,\nprefer upsert over read-then-write.",{"type":39,"tag":214,"props":1893,"children":1895},{"id":1894},"error-handling",[1896],{"type":44,"value":1897},"Error handling",{"type":39,"tag":40,"props":1899,"children":1900},{},[1901,1903,1908,1910,1916,1918,1923],{"type":44,"value":1902},"Errors are a JSON ",{"type":39,"tag":47,"props":1904,"children":1905},{},[1906],{"type":44,"value":1907},"array",{"type":44,"value":1909},": ",{"type":39,"tag":62,"props":1911,"children":1913},{"className":1912},[],[1914],{"type":44,"value":1915},"[{\"message\": \"...\", \"errorCode\": \"...\", \"fields\": [...]}]",{"type":44,"value":1917},". Surface\n",{"type":39,"tag":62,"props":1919,"children":1921},{"className":1920},[],[1922],{"type":44,"value":103},{"type":44,"value":1924}," — it's the most specific signal.",{"type":39,"tag":76,"props":1926,"children":1927},{},[1928,1950,1984,2011,2051,2078,2105,2124,2159,2180,2211],{"type":39,"tag":80,"props":1929,"children":1930},{},[1931,1948],{"type":39,"tag":47,"props":1932,"children":1933},{},[1934,1940,1942],{"type":39,"tag":62,"props":1935,"children":1937},{"className":1936},[],[1938],{"type":44,"value":1939},"400",{"type":44,"value":1941}," ",{"type":39,"tag":62,"props":1943,"children":1945},{"className":1944},[],[1946],{"type":44,"value":1947},"MALFORMED_QUERY",{"type":44,"value":1949}," — SOQL syntax error. Message points at the offending token.",{"type":39,"tag":80,"props":1951,"children":1952},{},[1953,1976,1978,1983],{"type":39,"tag":47,"props":1954,"children":1955},{},[1956,1961,1962,1968,1970],{"type":39,"tag":62,"props":1957,"children":1959},{"className":1958},[],[1960],{"type":44,"value":1939},{"type":44,"value":1941},{"type":39,"tag":62,"props":1963,"children":1965},{"className":1964},[],[1966],{"type":44,"value":1967},"INVALID_FIELD",{"type":44,"value":1969},", ",{"type":39,"tag":62,"props":1971,"children":1973},{"className":1972},[],[1974],{"type":44,"value":1975},"INVALID_TYPE",{"type":44,"value":1977}," — Field\u002FsObject name wrong or not visible. Run describe. Custom names end in ",{"type":39,"tag":62,"props":1979,"children":1981},{"className":1980},[],[1982],{"type":44,"value":116},{"type":44,"value":105},{"type":39,"tag":80,"props":1985,"children":1986},{},[1987,2009],{"type":39,"tag":47,"props":1988,"children":1989},{},[1990,1995,1996,2002,2003],{"type":39,"tag":62,"props":1991,"children":1993},{"className":1992},[],[1994],{"type":44,"value":1939},{"type":44,"value":1941},{"type":39,"tag":62,"props":1997,"children":1999},{"className":1998},[],[2000],{"type":44,"value":2001},"REQUIRED_FIELD_MISSING",{"type":44,"value":1969},{"type":39,"tag":62,"props":2004,"children":2006},{"className":2005},[],[2007],{"type":44,"value":2008},"FIELD_CUSTOM_VALIDATION_EXCEPTION",{"type":44,"value":2010}," — Missing required field or a validation rule fired.",{"type":39,"tag":80,"props":2012,"children":2013},{},[2014,2036,2038,2043,2044,2049],{"type":39,"tag":47,"props":2015,"children":2016},{},[2017,2022,2023,2029,2030],{"type":39,"tag":62,"props":2018,"children":2020},{"className":2019},[],[2021],{"type":44,"value":1939},{"type":44,"value":1941},{"type":39,"tag":62,"props":2024,"children":2026},{"className":2025},[],[2027],{"type":44,"value":2028},"STRING_TOO_LONG",{"type":44,"value":1969},{"type":39,"tag":62,"props":2031,"children":2033},{"className":2032},[],[2034],{"type":44,"value":2035},"INVALID_FIELD_FOR_INSERT_UPDATE",{"type":44,"value":2037}," — Value doesn't fit, or field isn't writable — check ",{"type":39,"tag":62,"props":2039,"children":2041},{"className":2040},[],[2042],{"type":44,"value":202},{"type":44,"value":204},{"type":39,"tag":62,"props":2045,"children":2047},{"className":2046},[],[2048],{"type":44,"value":210},{"type":44,"value":2050}," in describe.",{"type":39,"tag":80,"props":2052,"children":2053},{},[2054,2069,2071,2076],{"type":39,"tag":47,"props":2055,"children":2056},{},[2057,2062,2063],{"type":39,"tag":62,"props":2058,"children":2060},{"className":2059},[],[2061],{"type":44,"value":230},{"type":44,"value":1941},{"type":39,"tag":62,"props":2064,"children":2066},{"className":2065},[],[2067],{"type":44,"value":2068},"INVALID_SESSION_ID",{"type":44,"value":2070}," — Wrong instance URL, or credential not configured. Check ",{"type":39,"tag":62,"props":2072,"children":2074},{"className":2073},[],[2075],{"type":44,"value":362},{"type":44,"value":2077}," first; if right, report it.",{"type":39,"tag":80,"props":2079,"children":2080},{},[2081,2103],{"type":39,"tag":47,"props":2082,"children":2083},{},[2084,2089,2090,2096,2097],{"type":39,"tag":62,"props":2085,"children":2087},{"className":2086},[],[2088],{"type":44,"value":237},{"type":44,"value":1941},{"type":39,"tag":62,"props":2091,"children":2093},{"className":2092},[],[2094],{"type":44,"value":2095},"INSUFFICIENT_ACCESS_OR_READONLY",{"type":44,"value":1969},{"type":39,"tag":62,"props":2098,"children":2100},{"className":2099},[],[2101],{"type":44,"value":2102},"API_DISABLED_FOR_ORG",{"type":44,"value":2104}," — Permission problem or API not enabled for this user\u002Forg.",{"type":39,"tag":80,"props":2106,"children":2107},{},[2108,2122],{"type":39,"tag":47,"props":2109,"children":2110},{},[2111,2116,2117],{"type":39,"tag":62,"props":2112,"children":2114},{"className":2113},[],[2115],{"type":44,"value":237},{"type":44,"value":1941},{"type":39,"tag":62,"props":2118,"children":2120},{"className":2119},[],[2121],{"type":44,"value":1874},{"type":44,"value":2123}," — Daily cap (wait for 24h window) or concurrent long-running cap (back off, retry). Message says which.",{"type":39,"tag":80,"props":2125,"children":2126},{},[2127,2150,2152,2158],{"type":39,"tag":47,"props":2128,"children":2129},{},[2130,2136,2137,2143,2144],{"type":39,"tag":62,"props":2131,"children":2133},{"className":2132},[],[2134],{"type":44,"value":2135},"404",{"type":44,"value":1941},{"type":39,"tag":62,"props":2138,"children":2140},{"className":2139},[],[2141],{"type":44,"value":2142},"NOT_FOUND",{"type":44,"value":1969},{"type":39,"tag":62,"props":2145,"children":2147},{"className":2146},[],[2148],{"type":44,"value":2149},"ENTITY_IS_DELETED",{"type":44,"value":2151}," — Bad ID, or record deleted. Try ",{"type":39,"tag":62,"props":2153,"children":2155},{"className":2154},[],[2156],{"type":44,"value":2157},"queryAll",{"type":44,"value":105},{"type":39,"tag":80,"props":2160,"children":2161},{},[2162,2178],{"type":39,"tag":47,"props":2163,"children":2164},{},[2165,2171,2172],{"type":39,"tag":62,"props":2166,"children":2168},{"className":2167},[],[2169],{"type":44,"value":2170},"409",{"type":44,"value":1941},{"type":39,"tag":62,"props":2173,"children":2175},{"className":2174},[],[2176],{"type":44,"value":2177},"ENTITY_IS_LOCKED",{"type":44,"value":2179}," — Record locked by an approval process. Retry with backoff.",{"type":39,"tag":80,"props":2181,"children":2182},{},[2183,2209],{"type":39,"tag":47,"props":2184,"children":2185},{},[2186,2192,2193,2199,2201,2207],{"type":39,"tag":62,"props":2187,"children":2189},{"className":2188},[],[2190],{"type":44,"value":2191},"500",{"type":44,"value":1941},{"type":39,"tag":62,"props":2194,"children":2196},{"className":2195},[],[2197],{"type":44,"value":2198},"UNKNOWN_EXCEPTION",{"type":44,"value":2200}," (often a ",{"type":39,"tag":62,"props":2202,"children":2204},{"className":2203},[],[2205],{"type":44,"value":2206},"DUPLICATE_VALUE",{"type":44,"value":2208}," or trigger failure surfaced as 500)",{"type":44,"value":2210}," — Read the message. Retry once; escalate if it persists.",{"type":39,"tag":80,"props":2212,"children":2213},{},[2214,2230],{"type":39,"tag":47,"props":2215,"children":2216},{},[2217,2223,2224],{"type":39,"tag":62,"props":2218,"children":2220},{"className":2219},[],[2221],{"type":44,"value":2222},"503",{"type":44,"value":1941},{"type":39,"tag":62,"props":2225,"children":2227},{"className":2226},[],[2228],{"type":44,"value":2229},"SERVER_UNAVAILABLE",{"type":44,"value":2231}," — Transient — overloaded or in maintenance. Retry with backoff.",{"type":39,"tag":214,"props":2233,"children":2235},{"id":2234},"going-deeper",[2236],{"type":44,"value":2237},"Going deeper",{"type":39,"tag":40,"props":2239,"children":2240},{},[2241,2246],{"type":39,"tag":62,"props":2242,"children":2244},{"className":2243},[],[2245],{"type":44,"value":759},{"type":44,"value":2247}," has the fuller endpoint catalog — the complete SOQL\u002FSOSL syntax reference,\nComposite Collections and Composite Tree, Bulk API 2.0 for large data loads, describe global, record\ncounts, recently viewed, picklist values by record type, and relationship traversal paths. Read it\nwhen you need an endpoint or SOQL feature not covered above.",{"type":39,"tag":2249,"props":2250,"children":2251},"style",{},[2252],{"type":44,"value":2253},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2255,"total":1589},[2256,2272,2291,2310,2326,2345,2359],{"slug":2257,"name":2257,"fn":2258,"description":2259,"org":2260,"tags":2261,"stars":23,"repoUrl":24,"updatedAt":2271},"asana-api","manage Asana tasks and projects","Read and manage Asana tasks, projects, sections, comments, and workspaces. Use this whenever the user wants to list or search tasks, create or update a task, complete a task, comment on a task, move tasks between projects or sections, look up a project or workspace, or ask \"what's on my Asana list\" — even if they don't say \"API\". Also use it for any app.asana.com URL or an Asana task\u002Fproject gid. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2262,2265,2268],{"name":2263,"slug":2264,"type":16},"Productivity","productivity",{"name":2266,"slug":2267,"type":16},"Project Management","project-management",{"name":2269,"slug":2270,"type":16},"Task Management","task-management","2026-06-24T07:44:51.70496",{"slug":2273,"name":2273,"fn":2274,"description":2275,"org":2276,"tags":2277,"stars":23,"repoUrl":24,"updatedAt":2290},"bigquery-api","run SQL queries against BigQuery","Run SQL against Google BigQuery and browse its catalog — submit queries (sync or async), poll job status, page through results, list datasets\u002Ftables, and read table schemas. Use this whenever the user wants to query a BigQuery table, ask \"what's in this dataset\", check a BigQuery job's status, or mentions bigquery.googleapis.com or a `project.dataset.table` path. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2278,2281,2284,2287],{"name":2279,"slug":2280,"type":16},"Data Analysis","data-analysis",{"name":2282,"slug":2283,"type":16},"Database","database",{"name":2285,"slug":2286,"type":16},"Google Cloud","google-cloud",{"name":2288,"slug":2289,"type":16},"SQL","sql","2026-06-24T07:45:14.797877",{"slug":2292,"name":2292,"fn":2293,"description":2294,"org":2295,"tags":2296,"stars":23,"repoUrl":24,"updatedAt":2309},"config-guide","configure Claude agent settings and scopes","Reference guide for configuring @Claude agents — agents, agent scopes, identity profiles, presets, connections, rules, GitHub repositories, and custom instructions. Explains the inheritance model and configuration best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2297,2300,2303,2306],{"name":2298,"slug":2299,"type":16},"Agents","agents",{"name":2301,"slug":2302,"type":16},"Claude API","claude-api",{"name":2304,"slug":2305,"type":16},"Configuration","configuration",{"name":2307,"slug":2308,"type":16},"GitHub","github","2026-06-25T07:41:36.617524",{"slug":2311,"name":2311,"fn":2312,"description":2313,"org":2314,"tags":2315,"stars":23,"repoUrl":24,"updatedAt":2325},"confluence-api","manage Confluence Cloud content","Read, search, and manage Confluence Cloud pages, spaces, blog posts, comments, attachments, and labels. Use this whenever the user wants to find a page, read a doc, search the wiki with CQL, create or update a page, add a comment, list pages in a space, pull an attachment, or ask \"what does the wiki say about X\" — even if they don't say \"API\". Also use it for any *.atlassian.net\u002Fwiki URL, or a CQL string when the context is wiki content rather than tickets. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2316,2319,2322],{"name":2317,"slug":2318,"type":16},"Confluence","confluence",{"name":2320,"slug":2321,"type":16},"Documentation","documentation",{"name":2323,"slug":2324,"type":16},"Knowledge Management","knowledge-management","2026-06-25T07:41:43.531982",{"slug":2327,"name":2327,"fn":2328,"description":2329,"org":2330,"tags":2331,"stars":23,"repoUrl":24,"updatedAt":2344},"datadog-api","manage Datadog monitoring and telemetry","Query and manage Datadog monitoring data — logs, metrics, monitors, dashboards, events, SLOs, traces, and incidents. Use this whenever the user wants to search logs, look at a metric, check which monitors are alerting, investigate a trace, pull SLO status, mute an alert, or ask \"what's happening in Datadog\" — even if they don't say \"API\". Also use it for any URL under *.datadoghq.com. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2332,2335,2338,2341],{"name":2333,"slug":2334,"type":16},"API Development","api-development",{"name":2336,"slug":2337,"type":16},"Datadog","datadog",{"name":2339,"slug":2340,"type":16},"Monitoring","monitoring",{"name":2342,"slug":2343,"type":16},"Observability","observability","2026-06-24T07:46:42.266372",{"slug":2346,"name":2346,"fn":2347,"description":2348,"org":2349,"tags":2350,"stars":23,"repoUrl":24,"updatedAt":2358},"debug-plugins","diagnose Claude plugin loading failures","Diagnose why a plugin or skill configured in @Claude admin settings isn't loading. Checks mount directories, the Claude Code launch command, and startup logs from inside the running container, then explains what failed and how to fix it.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2351,2352,2355],{"name":2301,"slug":2302,"type":16},{"name":2353,"slug":2354,"type":16},"Debugging","debugging",{"name":2356,"slug":2357,"type":16},"Plugin Development","plugin-development","2026-06-24T07:46:32.792809",{"slug":2360,"name":2360,"fn":2361,"description":2362,"org":2363,"tags":2364,"stars":23,"repoUrl":24,"updatedAt":2371},"enterprise-search","search company enterprise knowledge index","Search the company's enterprise knowledge index. Use this FIRST when starting any task that touches company-specific context - projects, people, policies, internal docs, prior decisions - before searching individual sources like Drive, Slack, or Jira directly. Also use it when the user asks \"do we have a doc about X\", \"what's our policy on Y\", or references internal initiatives by name. Always start from this skill when interacting with this service — its bundled scripts and recipes are the fastest path.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2365,2367,2368],{"name":2366,"slug":2360,"type":16},"Enterprise Search",{"name":2323,"slug":2324,"type":16},{"name":2369,"slug":2370,"type":16},"Research","research","2026-06-24T07:46:40.641837",{"items":2373,"total":2552},[2374,2395,2409,2421,2436,2447,2468,2488,2502,2515,2523,2536],{"slug":2375,"name":2375,"fn":2376,"description":2377,"org":2378,"tags":2379,"stars":2392,"repoUrl":2393,"updatedAt":2394},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2380,2383,2386,2389],{"name":2381,"slug":2382,"type":16},"Creative","creative",{"name":2384,"slug":2385,"type":16},"Design","design",{"name":2387,"slug":2388,"type":16},"Generative Art","generative-art",{"name":2390,"slug":2391,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":2396,"name":2396,"fn":2397,"description":2398,"org":2399,"tags":2400,"stars":2392,"repoUrl":2393,"updatedAt":2408},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2401,2404,2405],{"name":2402,"slug":2403,"type":16},"Branding","branding",{"name":2384,"slug":2385,"type":16},{"name":2406,"slug":2407,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":2410,"name":2410,"fn":2411,"description":2412,"org":2413,"tags":2414,"stars":2392,"repoUrl":2393,"updatedAt":2420},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2415,2416,2417],{"name":2381,"slug":2382,"type":16},{"name":2384,"slug":2385,"type":16},{"name":2418,"slug":2419,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":2302,"name":2302,"fn":2422,"description":2423,"org":2424,"tags":2425,"stars":2392,"repoUrl":2393,"updatedAt":2435},"build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2426,2427,2428,2431,2432],{"name":2298,"slug":2299,"type":16},{"name":9,"slug":8,"type":16},{"name":2429,"slug":2430,"type":16},"Anthropic SDK","anthropic-sdk",{"name":2301,"slug":2302,"type":16},{"name":2433,"slug":2434,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":2437,"name":2437,"fn":2438,"description":2439,"org":2440,"tags":2441,"stars":2392,"repoUrl":2393,"updatedAt":2446},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2442,2443],{"name":2320,"slug":2321,"type":16},{"name":2444,"slug":2445,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":2448,"name":2448,"fn":2449,"description":2450,"org":2451,"tags":2452,"stars":2392,"repoUrl":2393,"updatedAt":2467},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2453,2456,2458,2461,2464],{"name":2454,"slug":2455,"type":16},"Documents","documents",{"name":2457,"slug":2448,"type":16},"DOCX",{"name":2459,"slug":2460,"type":16},"Office","office",{"name":2462,"slug":2463,"type":16},"Templates","templates",{"name":2465,"slug":2466,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":2469,"name":2469,"fn":2470,"description":2471,"org":2472,"tags":2473,"stars":2392,"repoUrl":2393,"updatedAt":2487},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2474,2475,2478,2481,2484],{"name":2384,"slug":2385,"type":16},{"name":2476,"slug":2477,"type":16},"Frontend","frontend",{"name":2479,"slug":2480,"type":16},"React","react",{"name":2482,"slug":2483,"type":16},"Tailwind CSS","tailwind-css",{"name":2485,"slug":2486,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":2489,"name":2489,"fn":2490,"description":2491,"org":2492,"tags":2493,"stars":2392,"repoUrl":2393,"updatedAt":2501},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2494,2497,2498],{"name":2495,"slug":2496,"type":16},"Communications","communications",{"name":2462,"slug":2463,"type":16},{"name":2499,"slug":2500,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":2503,"name":2503,"fn":2504,"description":2505,"org":2506,"tags":2507,"stars":2392,"repoUrl":2393,"updatedAt":2514},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2508,2509,2510,2511],{"name":2298,"slug":2299,"type":16},{"name":2333,"slug":2334,"type":16},{"name":2433,"slug":2434,"type":16},{"name":2512,"slug":2513,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":2419,"name":2419,"fn":2516,"description":2517,"org":2518,"tags":2519,"stars":2392,"repoUrl":2393,"updatedAt":2522},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2520,2521],{"name":2454,"slug":2455,"type":16},{"name":2418,"slug":2419,"type":16},"2026-04-06T17:56:02.483316",{"slug":2524,"name":2524,"fn":2525,"description":2526,"org":2527,"tags":2528,"stars":2392,"repoUrl":2393,"updatedAt":2535},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2529,2532],{"name":2530,"slug":2531,"type":16},"PowerPoint","powerpoint",{"name":2533,"slug":2534,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":2537,"name":2537,"fn":2538,"description":2539,"org":2540,"tags":2541,"stars":2392,"repoUrl":2393,"updatedAt":2551},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2542,2543,2544,2547,2550],{"name":2298,"slug":2299,"type":16},{"name":2320,"slug":2321,"type":16},{"name":2545,"slug":2546,"type":16},"Evals","evals",{"name":2548,"slug":2549,"type":16},"Performance","performance",{"name":2444,"slug":2445,"type":16},"2026-04-19T06:45:40.804",490]