npx skills add ...
npx skills add forcedotcom/sf-skills --skill service-itsm-agentic-setup-cmdb-access-assign
Grant a specific user access to CMDB (Configuration Management Database) data in Service Cloud ITSM against a production or sandbox org by assigning the license-backed CMDB permission sets (Configuration Item Reader, Owner, Type Reader, Type Manager) and their permission-set licenses. Use when the user asks to give someone CMDB access, assign CMDB permission sets, grant a user the Configuration Item Reader/Owner role, or fix a CMDB 403 FUNCTIONALITY_NOT_ENABLED that a user still hits after the CMDB feature is already enabled. Triggers on: assign CMDB permission set, grant CMDB access, give user Configuration Item access, CMDB access for user, user still gets CMDB 403 after enable. DO NOT TRIGGER when: the user wants to turn on the CMDB feature or provision the CMDB tenant for the whole org (that is the CMDB feature-enable skill), only install a CMDB content bundle, work with CMDB records directly, or assign general (non-CMDB) permission sets to users (use dx-org-permission-set-assign).
npx skills add forcedotcom/sf-skills --skill service-itsm-agentic-setup-cmdb-access-assign
Grants a specific user the ability to read and work with CMDB (Configuration Management Database)
data by assigning the license-backed CMDB permission sets and their permission-set licenses. 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 is Layer 3 of CMDB setup. It assumes the org-level CMDB gate is already lifted (the feature
is ENABLED) — that is a separate skill (service-itsm-agentic-setup-cmdb-configure, Layers 0–2).
This skill grants a user access; it does not enable the feature for the org.
Enabling the CMDB feature lifts the org-level gate, but some CMDB reads (e.g. bundleListView)
also enforce user-level access. A user with no CMDB permission sets still gets
403 FUNCTIONALITY_NOT_ENABLED ("not enabled for this user") even when the feature is correctly
ENABLED for the org. This skill assigns that user the CMDB permission sets so those reads succeed.
This skill is a no-op if the org feature is not enabled. User-level access has no effect until the org-level CMDB feature is ENABLED. If you find the org gate is still closed, stop and tell the user the CMDB feature must be turned on for the org first — see the cross-skill note at the end.
Each is a license-backed Standard permission set; assigning it also requires (and this skill assigns) its permission-set license (PSL).
| Role | Permission set (Name) | Backing PSL (DeveloperName) | Grants |
|---|---|---|---|
| Reader | ItSrvcCnfgItmReadPermissionSet | ItSrvcCnfgItmReadPsl | Read CMDB configuration items |
| Owner | ItSrvcCnfgItmOwnerPermissionSet | ItSrvcCnfgItmOwnerPsl | Own / edit configuration items |
| Type Reader | ItSrvcCnfgItmTypReadPermissionSet | ItSrvcCnfgItmTypReadPsl | Read configuration-item types |
| Type Manager | ItSrvcCnfgItmTypManagerPermissionSet | ItSrvcCnfgItmTypMgrPsl | Manage configuration-item types |
For read-only CMDB access, Reader (+ Type Reader) is the minimal set. For users who edit CMDB records, add Owner; for those who manage the type catalog, add Type Manager. If the user does not specify a role, ask (see Clarifying questions) — default to Reader + Type Reader for a viewer.
Bundle management needs Type Manager. If the user's goal is to install or manage CMDB content bundles (or they hit a
403on a bundle-management read such asGET /connect/cmdb/bundles/details), the role that clears it is Type Manager — a user holding only Reader / Owner / Type Reader still gets403 FUNCTIONALITY_NOT_ENABLEDon bundle operations. Assign Type Manager (with its own backing PSL,ItSrvcCnfgItmTypMgrPsl) for anyone who deploys or manages bundles.
service-itsm-agentic-setup-cmdb-configure), installing content bundles, CMDB record CRUD,
creating custom permission sets, or org-permission/edition changes.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 standard
/query and /sobjects/... REST routes this skill uses are not always 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.
Ask only what you cannot infer from conversation:
Do not re-ask for anything the user already provided; pre-populate and note "(from conversation)".
Always read before you write: run the read-only checks before any assignment. All assignments are per-user and idempotent — a duplicate assignment must be treated as already-done, not an error.
User access is meaningless until the org gate is lifted. Read the feature status:
status == ENABLED → proceed.status != ENABLED (or the call returns 403 FUNCTIONALITY_NOT_ENABLED) → STOP. Tell the user, in
plain language, that CMDB has to be turned on for the org before a user can be given access, and
point them to the CMDB feature-enable skill (see the cross-skill note). Do not assign anything.For "the current user" / "me" / "my own user" (do NOT use USER_ID() — it is Apex-only and is
rejected by the REST query API; do NOT rely on /chatter/users/me or /connect/user-profiles/me —
they return 403 FUNCTIONALITY_NOT_ENABLED when Chatter/Communities are off). Instead 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 as the target user, or confirm it:
For a named user (username / email supplied):
Id.For each requested role, resolve the permission set and its backing license:
Use the Name values from the table above. Capture each Id (the permission set) and LicenseId
(the PSL to assign). If a permission set is not found, the org likely is not CMDB-licensed — stop and
report that CMDB does not appear to be set up on this org.
A role can be granted two ways, and this check must accept both — or it falsely reports an already-granted role as missing and wrongly asks to assign it:
PermissionSetAssignment whose PermissionSetId is the role's own permission set.PermissionSetAssignment row carries a PermissionSetGroupId and
its PermissionSetId is the group's internal aggregate set — not the member permission set —
so a query filtering on PermissionSetId = '<psId>' returns zero even though the user
effectively holds the role.Run both permission-set reads per role; the permission set is present if either returns
totalSize >= 1 (the second is a top-level semi-join — nesting it inside an OR throws MALFORMED_QUERY):
Then check the backing license (a PSG that includes the role also assigns its backing PSL directly, so this single read already covers the PSG case):
If the permission set is present by either path and the license read returns totalSize >= 1,
that role is already assigned — skip its writes and record it as already-done. Only assign what is
genuinely missing, and do not re-assign the member permission set directly when the user already
holds it through a PSG.
Confirm the target user, org, and role(s) with the user, then for each missing role 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.INSUFFICIENT_ACCESS / no seats) → STOP for that role; tell the user
the CMDB license has no available seats and how many are in use (see references/mcp-invocation.md
for the seat query). Do not retry.Re-run the Step 4 reads — both the direct and the via-PSG permission-set checks, plus the license check. A role counts as done only when its permission set is present by either path and its backing license reads back. Report per-role: assigned / already had it. Only roles confirmed present in this read count as done.
| Constraint | Rationale |
|---|---|
| Confirm the org feature is ENABLED before assigning | User access has no effect until the org-level CMDB gate is lifted; assigning first would be a misleading no-op |
| Resolve the user to exactly one record before writing | Assigning to the wrong (or an ambiguous) user is hard to reverse and a security concern |
| Read existing assignments before every assign | Assignment is per-user; re-assigning throws DUPLICATE_VALUE — skip what already exists |
| Assign the PSL before the permission set | The permission set is license-backed; 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 CMDB permission sets; authoring perm sets is out of scope |
| Confirm the target org, user, and each write with the user | These are real changes granting a user data access on a live org |
| Never expose internal jargon to the user | Keep record IDs, HTTP status codes (403/400/…), API error codes (FUNCTIONALITY_NOT_ENABLED, DUPLICATE_VALUE), object names (PermissionSetLicenseAssign), developer names (ItSrvcCnfgItmReadPsl), and tooling internals (dispatch, headless-360) out of user-facing output. Use human-readable role names and plain language |
ENABLED before any assignment?Keep internal jargon out of user-facing output (no record IDs, HTTP status codes, error codes, object
or developer names). If any step fails, stop and tell the user — in plain language — which part didn't
succeed and what it means for them. Translate any raw error (e.g. a 403 or FUNCTIONALITY_NOT_ENABLED)
into what it means ("CMDB isn't turned on for this org yet"), rather than echoing the code.
| Symptom | Likely cause | What to tell the user |
|---|---|---|
Feature status not ENABLED (or 403 on the status read) | Org-level CMDB gate not lifted | CMDB must be turned on for the org first; this is a separate setup step — point to the feature-enable skill |
| Permission set not found | Org is not CMDB-licensed / not set up | CMDB does not appear to be available on this org; confirm it is licensed and enabled |
403 FUNCTIONALITY_NOT_ENABLED on a bundle-management read (e.g. bundles/details, bundleListView) after assignment, feature ENABLED | The user holds Reader/Owner/Type Reader but not Type Manager — bundle operations require it | Assign Type Manager — this role is required for CMDB bundle management; the other CMDB roles do not cover bundle operations |
| Skill says a CMDB role is missing and asks to assign it, but the user already has it (e.g. through a permission set group) | Idempotency check saw only directly assigned permission sets and was blind to group-delivered grants — fixed in Step 4, which now also checks group membership | The user already has that access through a permission set group; treat the role as already granted — no new assignment is needed |
400 DUPLICATE_VALUE on assign | User already has that access | Not an error — report the role as already assigned |
| License-limit / no-seats error on assign | CMDB permission-set license seats exhausted | Report seats in use vs available; a seat must free up (or more licenses added) before assigning |
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 org CMDB feature is not enabled yet (org gate still closed) | service-itsm-agentic-setup-cmdb-configure (Layers 0–2 — enable the feature first, then return here) |
| The user needs the CMDB base content bundle installed | service-itsm-agentic-setup-cmdb-bundle-deploy (Layer 4 — content, separate from user access). That skill's bundle-management reads require the user hold Type Manager, so assign it here first |
| File | When to read |
|---|---|
references/mcp-invocation.md | Exact dispatch* url/method/body for every read and write, response envelopes, the license-seat query, and the error table |
dispatch_readonly({ "url": "/services/data/v67.0/query", "method": "GET", "queryParams": { "q": "SELECT Id, Name, LicenseId FROM PermissionSet WHERE Name = '<psName>'" } })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 PermissionSetAssignment WHERE AssigneeId = '<userId>' AND PermissionSetGroupId IN (SELECT PermissionSetGroupId FROM PermissionSetGroupComponent WHERE 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 Access Assignment — Complete (via service-itsm-agentic-setup-cmdb-access-assign)
Target org: <org>
User: <name> (<username>)
Configuration Item Reader ......... Assigned
Configuration Item Type Reader .... Already had access
This user can now read CMDB data in this org. If they still can't, confirm the org's
CMDB feature is turned on (that's a separate setup step).