dsc-endpoint-help

dsc-endpoint-help is a skill for Claude Code from j-256/agent-skills. It costs 66 tokens per session (7,313 once invoked), scanned A, original, MIT.

A reference and troubleshooting guide for Salesforce API endpoints. It explains documented authentication, permissions, inputs, outputs, and related request errors using Salesforce's public API specifications.

In plain words
What is it for?
Use it to check one named endpoint's scopes, parameters, limits, authentication, or response fields, and to compare a failed request with its specification.
Why use it?
It helps distinguish an invalid request or missing permission from a problem elsewhere, even when you only have an error response.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the dsc plugin — 3 skills shipped together

Good fit Use it to check one named endpoint's scopes, parameters, limits, authentication, or response fields, and to compare a failed request with its specification.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/j-256/agent-skills/dsc-endpoint-help
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add j-256/agent-skills --skill dsc-endpoint-help
Clone the repo
git clone --depth 1 https://github.com/j-256/agent-skills

Made for: Claude Code.

Or install dsc, the plugin that ships this one along with the rest of its 3 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dsc-endpoint-help

README.md
[![agentmods](https://agentmods.dev/badge/skills/j-256/agent-skills/dsc-endpoint-help/github.svg)](https://agentmods.dev/skills/j-256/agent-skills/dsc-endpoint-help)
Your own site
<a href="https://agentmods.dev/skills/j-256/agent-skills/dsc-endpoint-help"><img src="https://agentmods.dev/badge/skills/j-256/agent-skills/dsc-endpoint-help/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dsc-endpoint-help

Your own site · 80×15
<a href="https://agentmods.dev/skills/j-256/agent-skills/dsc-endpoint-help"><img src="https://agentmods.dev/badge/skills/j-256/agent-skills/dsc-endpoint-help.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,313 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.07313
Opus 5 $0.00033 $0.03657
Sonnet 5 $0.00013 $0.01463
Haiku 4.5 $0.00007 $0.00731

Measured 9d ago against content hash 3095c4c45d4e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

dsc-endpoint-help scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 52 executable files (scripts/classify.js, scripts/decode-token.js, scripts/diff.js, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

1. **Request artifact present.** A cURL command, a raw HTTP request line/block, or a `{method, url, body?}` shaped paste. Detection cues: `curl ` followed by a URL; HTTP request-line pattern (`<METHOD> <path> HTTP/`); an
plugins/dsc/skills/dsc-endpoint-help/SKILL.md · 325 lines

How it starts

The opening of the file, as written. The whole thing — 325 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DSC Endpoint Help

Answer one question about one endpoint in a Salesforce API reference on DSC – either by quoting the relevant spec field, or (when a failing request is attached) by diffing the request against the spec and naming the root cause. Every claim is backed by a public developer.salesforce.com URL the user can forward to a customer.

When to use

Lookup branch (no failing request attached):

  • A direct spec-field question about a named endpoint: "what scopes does shopper-products getProducts need", "which query params does searchOrders take", "what auth scheme guards createOrder".
  • A code-generation ask that references a named endpoint: "write me a node script that calls getProduct" – quote the spec the user can write the code against; don't write the code.
  • A how-to ask that's really a spec-field question in disguise: "how do I paginate search results", "what limit does X accept" – quote the relevant param.

Diff branch (a failing request is attached):

  • A cURL command + an error body: "why is this 403ing", "what's wrong with this request".
  • A request + an insufficient_scope / invalid_client / unauthorized_client envelope, optionally with a JWT to decode for the scope diff.
  • A content-type / body-shape failure: "diff this against the spec", "is this 415 because content-type is wrong".

Inputs from the user

The user's prompt usually contains some of:

  • A reference name ("shopper-products", "orders", "scapi shopper baskets") – maybe abbreviated, maybe product-branded ("SCAPI Shopper Products" → shopper-products).
  • An operation identifier ("getProducts", "createOrder", sometimes partial: "the products get endpoint", "that getCustomer call").
  • A concrete spec-field question (lookup branch): what scopes, what params, what body, what response, what method/path, what auth scheme.
  • A request artifact (diff branch): cURL, raw HTTP, or {method + URL}. Required for the diff branch.
  • An error response (diff branch): {status, body}. Required for the diff branch. Body can be JSON or prose.
  • An access token (JWT) (diff branch, optional): if provided (or embedded in the request's Authorization: Bearer header), the skill decodes the scp claim for a high-confidence scope diff.
  • Registered client scopes (diff branch, optional): if the user has the list from their SLAS/OAuth client config, pass it instead (confidence: medium, with a disclaimer).
  • Reference URL (diff branch): the developer.salesforce.com URL of the reference containing this endpoint. Usually inferrable from the request path (/checkout/shopper-baskets/...https://developer.salesforce.com/docs/commerce/commerce-api/references/shopper-baskets). If the path is ambiguous, ask.

Read the full file on GitHub · 325 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 325 lines · 66 tokens per session scan A 3095c4c45d4e

Subscribe to this mod's changes

dsc-endpoint-help is a skill published in the GitHub repository j-256/agent-skills (2 stars, last pushed 6d ago), licensed MIT. It adds 66 tokens to every session and 7,313 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

tidewave-integration

Tidewave MCP runtime tools — debugging, smoke testing, live state inspection, SQL queries, hex docs. Use when evaluating code in a running Phoenix app.

oliver-kriska/claude-elixir-phoenix · 38 tokens

perf

Analyze Elixir/Phoenix performance — N+1 queries, assign bloat, ecto optimization, genserver bottlenecks. Use when slowness, timeouts, or high memory reported.

oliver-kriska/claude-elixir-phoenix · 43 tokens

schema-validation

JSON/data schema validation for construction data exchange: API payloads, file imports, BIM exports. Ensure data structure compliance before processing.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 29 tokens

interoperability-analyzer

Analyze data interoperability issues in construction projects. Identify format incompatibilities and data loss points.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 23 tokens

deprecated-api-updater

Identify and replace deprecated API usage in source code with modern alternatives. Use when: (1) Modernizing legacy codebases, (2) Upgrading framework versions (React, Django, Spring, etc.), (3) Fixing deprecation warnings in build output, (4) Preparing for major version upgrades, (5) Ensuring code uses current best…

ArabelaTso/Skills-4-SE · 110 tokens

debug-fe-be-integration

Diagnose and fix frontend↔backend contract failures by tracing client requests, server logs, validation, auth, and responses on both sides. Use for API 4xx/5xx, mismatched payloads, validation failures, or "frontend and backend disagree". Single-layer errors → debug-error.

kensaurus/cursor-kenji · 66 tokens