npx skills add ...
npx skills add forcedotcom/sf-skills --skill service-itsm-agentic-setup-cmdb-discovery-configure
Enable CMDB Asset Discovery in Service Cloud ITSM against a production or sandbox org by turning on the service-cloud-itsm-discovery-integration feature, then grant a user the Discovery page by assigning the IT Service Discovery Manager permission set and its license — the final CMDB setup layer, run after the CMDB feature, user access, and content bundle are in place. Use when the user asks to enable CMDB discovery, turn on asset discovery, enable service-cloud-itsm-discovery-integration, grant Discovery page access, or assign the Discovery Manager permission set. Triggers on: enable CMDB discovery, turn on asset discovery, service-cloud-itsm-discovery-integration, assign Discovery Manager access, CMDB discovery not enabled. DO NOT TRIGGER when: the user wants to enable the base CMDB feature, provision the ITOM tenant, assign the four CMDB Configuration-Item permission sets, install a CMDB content bundle, or work with CMDB records directly — those are earlier CMDB layers.
npx skills add forcedotcom/sf-skills --skill service-itsm-agentic-setup-cmdb-discovery-configure
Turns on Asset Discovery for CMDB by enabling the service-cloud-itsm-discovery-integration
feature, then grants a user access to the Discovery page by assigning the IT Service Discovery
Manager permission set (and its permission-set license). This is the final layer of CMDB setup —
it runs only after the base CMDB feature is enabled, users have CMDB access, and the CMDB Foundation
content bundle is installed. Every call runs through the Salesforce-hosted Headless-360 MCP server
(server key headless-360) via its four meta-tools (discover, describe, dispatch_readonly,
dispatch). The org is derived from the OAuth JWT bound to the current MCP session — the skill never
handles an org id, alias, or credentials — so this works identically against production and sandbox
with no per-user MCP install.
This skill covers the Discovery layer only — enabling the feature and granting Discovery page access to a user. The earlier CMDB layers are separate skills — see the end of this file.
CMDB is enabled in ordered layers, each gated on the prior one:
Discovery is enabled last: it builds on the base CMDB feature and depends on the earlier layers
being complete. The pre-check step below (enableBlockedReasons) is the authoritative signal that
the prerequisites are met — if the base CMDB feature is not yet enabled, discovery cannot be enabled
and the org reports a blocking reason rather than turning it on.
Enabling the feature lifts the org-level gate; the Discovery permission set gives a user the Discovery page. This skill does both: it turns Discovery on for the org (Step 2) and then assigns the target user the license-backed
ItSrvcDscvrMgrPermissionSet("IT Service Discovery Manager", backed by PSLItSrvcDscvrMgrPsl) so they can actually open and use the Discovery page (Steps 4–7). That permission set is distinct from the four Configuration-Item permission sets (Reader / Owner / Type Reader / Type Manager) thatservice-itsm-agentic-setup-cmdb-access-assignassigns for CMDB data — a user holding only those will not have Discovery page access. The assignment step is idempotent: if the user already holds the Discovery permission set and its license, it is skipped and reported as already-done.
service-cloud-itsm-discovery-integration
feature; and — as a follow-up — assigning the IT Service Discovery Manager permission set (and its
permission-set license) to the target user so they can access the Discovery page.service-itsm-agentic-setup-cmdb-configure), assigning the four Configuration-Item permission sets
for CMDB data access (Layer 3 — service-itsm-agentic-setup-cmdb-access-assign), bundle
installation (Layer 4 — service-itsm-agentic-setup-cmdb-bundle-deploy), CMDB record CRUD, Service
Graph Connector configuration, identification rules, creating or editing permission sets.All operations dispatch through headless-360 MCP tools. Reads go through
mcp__headless-360__dispatch_readonly, writes through mcp__headless-360__dispatch — both take raw
HTTP: {"url": "<path>", "method": "GET|POST", "body"?: {...}, "queryParams"?: {...}} — not
{operation_id, arguments}. See references/mcp-invocation.md for the exact url / method /
body of every call. The four tools:
mcp__headless-360__discover — semantic search over the indexed operation catalog. The Setup/Connect
routes and the /query / /sobjects/... REST routes this skill uses are not always ranked first (or
indexed), so a miss does not mean the route is absent — dispatch the exact path directly (see
references/mcp-invocation.md).mcp__headless-360__describe — pull the full input schema and canonical route before any POST.mcp__headless-360__dispatch_readonly — the dispatcher for every read (GET).mcp__headless-360__dispatch — the dispatcher for every write (POST/PATCH).The skill never handles credentials — the org is bound to the current OAuth session. If a dispatch*
call returns an auth error, tell the user to re-authenticate the headless-360 MCP connection (and
confirm the session points at the intended org), then stop.
| Role | Permission set (Name) | Backing PSL (DeveloperName) | Grants |
|---|---|---|---|
| Discovery Manager | ItSrvcDscvrMgrPermissionSet | ItSrvcDscvrMgrPsl | Open and use the Discovery page |
Resolve the permission set's Id and its LicenseId at runtime (Step 5) rather than hardcoding IDs —
IDs differ per org.
Ask only what you cannot infer from conversation:
Do not re-ask for anything the user already provided; pre-populate and note "(from conversation)".
All steps are sequential and gated — do not advance past a failed check. Always read before you write: run the read-only pre-check before the enable, and the assignment checks before the assign.
The feature api name is service-cloud-itsm-discovery-integration.
status == ENABLED → feature already on; skip to verification (Step 3), then proceed to the access
follow-up (Steps 4–7).status == NOT_ENABLED with enableBlockedReasons: [] → clear to enable (Step 2).enableBlockedReasons non-empty → STOP and relay each reason to the user in plain language.
These are prerequisites the org still needs — most commonly the base CMDB feature is not yet
enabled. Point the user to the earlier CMDB setup skills (see "Common failures") and do not
attempt the enable.403 FUNCTIONALITY_NOT_ENABLED on this GET → the base CMDB gate itself is still closed; the org
needs service-itsm-agentic-setup-cmdb-configure first. Stop and route the user there.Skip this step if Step 1 already reported ENABLED.
status == ENABLED is the definitive confirmation that the feature is on. Once confirmed, continue
to the access follow-up below — the feature being on does not by itself give any user the Discovery page.
For "the current user" / "me" / "set up discovery" (do NOT use USER_ID() — Apex-only, rejected by
the REST query API; do NOT rely on /chatter/users/me or /connect/user-profiles/me — they 403 when
Chatter/Communities are off). Read the API root and parse the identity URL:
The response identity field is a URL ending in /<orgId>/<userId> (the user Id is the last path
segment and starts with 005). Use that Id directly, or confirm it with a User query.
For a named user (username / email supplied):
Id.Resolve the permission set and its backing license:
Capture Id (the permission set) and LicenseId (the PSL to assign). totalSize == 0 means the org
is not licensed for Discovery — stop and report. Then check whether the user already has both:
If both already exist, the role is already assigned — skip Step 6 and record it as already-done.
Skip whatever Step 5 shows already assigned. Assign the PSL first, then the permission set:
201 → assigned.400 DUPLICATE_VALUE → the user already had it; treat as success (idempotent), not a failure.references/mcp-invocation.md for the seat query). Do not retry.Re-run the two Step 5 assignment queries. The user has Discovery page access only when both the
PermissionSetAssignment and the PermissionSetLicenseAssign return totalSize == 1.
| Constraint | Rationale |
|---|---|
| Run only after the base CMDB feature is enabled | Discovery is the final layer and depends on Layers 0–4; the pre-check enableBlockedReasons enforces this |
| Read the pre-check before enabling; verify with a read after enabling | The feature is stateful; the POST response can lag the real state |
Do not attempt the enable when enableBlockedReasons is non-empty | Those are unmet prerequisites — relay them and route the user to the earlier CMDB skills |
| Always follow the enable with the Discovery-Manager assignment | The feature being on does not give any user the Discovery page; the permission set is what grants page access |
| Resolve the user to exactly one record before assigning | Assigning to the wrong (or an ambiguous) user is hard to reverse and a security concern |
| Read existing assignments before assigning; assign the PSL before the permission set | The permission set is license-backed and per-user — re-assigning throws DUPLICATE_VALUE; the license seat must be held for the assignment to stick |
Treat DUPLICATE_VALUE as success | It means the user already has that access — idempotent, not an error |
| Never create or edit permission sets | This skill only assigns the standard Discovery permission set |
| Confirm the target org, user, and each write with the user | These are real, hard-to-reverse changes on a live org |
| Never expose internal jargon to the user | Keep record IDs, org IDs, HTTP status codes (403/500/…), API error codes (FUNCTIONALITY_NOT_ENABLED, DUPLICATE_VALUE, …), object names (PermissionSetLicenseAssign), endpoint names, feature api names (service-cloud-itsm-discovery-integration), developer names (ItSrvcsCnfgMgmnt, ItSrvcDscvrMgrPsl, …), and tooling internals (dispatch, headless-360) out of user-facing output. Translate to plain language; use human-readable names and statuses |
enableBlockedReasons: [] before enabling (or status == ENABLED already)?success: true (or skipped because already enabled)?status == ENABLED?Keep internal jargon out of user-facing output (no record IDs, HTTP status codes, error codes, object,
endpoint or developer names) — say "IT Service Discovery Manager access", not the developer name. If any
step fails, stop and tell the user — in plain language — which part didn't succeed and what it means for
them, then point to the relevant fix. Translate any raw error (e.g. a 403 or FUNCTIONALITY_NOT_ENABLED)
into what it means ("CMDB isn't fully set up yet"), rather than echoing the code.
| Symptom | Likely cause | What to tell the user |
|---|---|---|
Pre-check enableBlockedReasons non-empty | An earlier CMDB layer is incomplete (most often the base CMDB feature) | Relay each reason; finish CMDB setup first — run service-itsm-agentic-setup-cmdb-configure (base feature), then -access-assign (user access) and -bundle-deploy (content bundle), then retry discovery |
403 FUNCTIONALITY_NOT_ENABLED on the status GET | Base CMDB gate still closed (CMDB feature not enabled) | Not a discovery failure — enable the base CMDB feature first with service-itsm-agentic-setup-cmdb-configure, then retry |
Enable blocked (enableBlockedReasons non-empty) after a partial setup | Missing dependency the org still needs | Relay each reason; resolve those prerequisites, then retry |
Enable returned success but verification GET is not ENABLED | State lag or a downstream issue | Re-run the verification GET after a short wait; if it persists, treat it as not enabled and investigate |
PermissionSet query totalSize == 0 for ItSrvcDscvrMgrPermissionSet | Org not licensed for Discovery | Discovery access is not available on this org; confirm it is licensed |
400 DUPLICATE_VALUE on the assignment | User already has Discovery page access | Not an error — report the role as already assigned |
| License-limit / no-seats error on the assignment | Discovery permission-set license seats exhausted | Report seats in use vs available; a seat must free up (or more licenses added) before assigning |
Discovery is ENABLED and the feature turned on, but a user still can't open the Discovery page | The user was never assigned the Discovery permission set (ItSrvcDscvrMgrPermissionSet / PSL ItSrvcDscvrMgrPsl) | Re-run this skill for that user (Steps 4–7) to grant "IT Service Discovery Manager" access |
dispatch* auth error | headless-360 MCP session not authenticated / token expired | Re-authenticate the headless-360 MCP connection and confirm the session points at the intended org |
| When | Skill |
|---|---|
| The base CMDB feature is not enabled yet (Discovery pre-check is blocked) | service-itsm-agentic-setup-cmdb-configure (Layers 0–2 — enable the base feature first, then return here) |
| A user needs the underlying CMDB data roles (Configuration Item Reader / Owner / Type Reader / Type Manager) | service-itsm-agentic-setup-cmdb-access-assign (Layer 3 — CMDB data access, distinct from Discovery page access) |
| File | When to read |
|---|---|
references/mcp-invocation.md | Exact dispatch* url/method/body for the pre-check, enable, verify, user resolution, and Discovery-Manager assignment calls, response envelopes, the license-seat query, and error table |
dispatch_readonly({ "url": "/services/data/v67.0/connect/setup/discovery/feature/service-cloud-itsm-discovery-integration/status", "method": "GET" })dispatch({ "url": "/services/data/v67.0/connect/setup/discovery/feature/service-cloud-itsm-discovery-integration/enable", "method": "POST", "body": {} })
→ {"success": true}dispatch_readonly({ "url": "/services/data/v67.0/connect/setup/discovery/feature/service-cloud-itsm-discovery-integration/status", "method": "GET" })
→ expect status == ENABLEDdispatch_readonly({ "url": "/services/data/v67.0/", "method": "GET" })dispatch_readonly({ "url": "/services/data/v67.0/query", "method": "GET", "queryParams": { "q": "SELECT Id, Username, Name, IsActive FROM User WHERE Username = '<username>'" } })dispatch_readonly({ "url": "/services/data/v67.0/query", "method": "GET", "queryParams": { "q": "SELECT Id, Name, LicenseId FROM PermissionSet WHERE Name = 'ItSrvcDscvrMgrPermissionSet'" } })dispatch_readonly({ "url": "/services/data/v67.0/query", "method": "GET", "queryParams": { "q": "SELECT Id FROM PermissionSetAssignment WHERE AssigneeId = '<userId>' AND PermissionSetId = '<psId>'" } })
dispatch_readonly({ "url": "/services/data/v67.0/query", "method": "GET", "queryParams": { "q": "SELECT Id FROM PermissionSetLicenseAssign WHERE AssigneeId = '<userId>' AND PermissionSetLicenseId = '<pslId>'" } })dispatch({ "url": "/services/data/v67.0/sobjects/PermissionSetLicenseAssign", "method": "POST", "body": { "AssigneeId": "<userId>", "PermissionSetLicenseId": "<pslId>" } })
dispatch({ "url": "/services/data/v67.0/sobjects/PermissionSetAssignment", "method": "POST", "body": { "AssigneeId": "<userId>", "PermissionSetId": "<psId>" } })CMDB Asset Discovery — Complete (via service-itsm-agentic-setup-cmdb-discovery-configure)
Target org: <org>
User: <name> (<username>)
Asset Discovery ................... Enabled
IT Service Discovery Manager ...... Assigned (or: Already had access)
Asset Discovery is now enabled on this org and the user above can open and use the
Discovery page. This completes CMDB setup — the base feature, user access, content
bundle, and discovery are all in place.
To give additional users the Discovery page, re-run this and name each user (or use
service-itsm-agentic-setup-cmdb-access-assign for the underlying CMDB data roles).