forcedotcom/sf-skills

service-itsm-agentic-setup-uel-user-create

Provision and enable a Unified Employee License (UEL) user in Salesforce with the full entity chain — User, Person Account, PersonContact, and Employee2 — through the Salesforce-hosted headless-360 MCP server.

ソースを見る
リポジトリの原文

見出し、例、コード、表、リンク、参照画像を含む原文を表示しています。

Create and Enable a Unified Employee (UEL) User

Provision an employee under the Unified Employee License (UEL) by creating and linking a User on the Unified Employee license/profile, a Person Account (with an auto-generated Contact), and an Employee2 record, then assigning the required permission sets. Every operation 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 the flow behaves identically against production and sandbox with no per-user MCP install.

Scope

  • In scope: Creating a new UEL User, Person Account, Employee2 record; assigning permission

sets; verifying the full chain.

  • Out of scope: Standard user creation (non-UEL); cloning existing users; managing existing

user permissions only; deactivating users; license assignment changes.


Routes at a glance

Reads dispatch through mcp__headless-360__dispatch_readonly; writes through mcp__headless-360__dispatch. Both take raw HTTP: {"url": "<path>", "method": "GET|POST", "body"?: {...}, "queryParams"?: {...}}. Full URL paths and request/response bodies for every row live in references/mcp-invocation.md; this table lists only the operation and HTTP method.

ConcernMethod + operationNotes
Unified Employee licenseGET /query (UserLicense)Zero rows → stop
Unified Employee profileGET /query (Profile)Zero rows → stop
Person Account record typeGET /query (RecordType, IsPersonType)Zero rows → stop
Employee Hub perm setGET /query (PermissionSet)Mandatory; zero rows → stop
Employee2 accessibleGET /sobjects/Employee2/describe200 = HR module enabled
Resolve managerGET /query (User by Username/Name)Active users only
Create userPOST /sobjects/UserProfile = Unified Employee
Assign Employee Hub setPOST /sobjects/PermissionSetAssignmentMandatory
Create Person AccountPOST /sobjects/AccountPersonEmail required
Read PersonContactGET /query (Account)Capture PersonContactId
Create Employee2POST /sobjects/Employee2Use UserId/ContactId field names
Verify chainGET /queryUser + Account + Employee2 + perm sets

Response envelope: describe, /query, and /sobjects/… are all standard REST — the dispatch* tool returns the HTTP status plus the parsed body: { "status_code": 200, "body": <REST response> }. Read body. A create returns body.id and body.success == true; a query returns body.records[]. Status codes: 200/201 success; 400 bad body (re-check schema via describe); 401/auth error the MCP session needs re-auth; 404 the endpoint/impl is not present on this org; 500 a downstream dependency issue.


Required Inputs

Collect from the user (ask only what is not already in conversation context):

Identity (required)

FieldDescription
FirstNameEmployee first name
LastNameEmployee last name
EmailEmployee email address

Credentials & Locale (required)

FieldDescriptionExample
UsernameEmail-formatted, globally uniquejane.doe@company.uel.com
AliasMax 8 charsjdoe
TimeZoneSidKeyTimezoneAmerica/Los_Angeles
LocaleSidKeyLocaleen_US
LanguageLocaleKeyLanguageen_US
EmailEncodingKeyEmail encodingUTF-8

Manager (optional)

FieldDescription
ManagerName or ManagerUsernameResolve to ManagerId via SOQL

HR Attributes for Employee2 (required)

FieldDescription
DepartmentEmployee department
LocationEmployee location
EmployeeNumberHR employee number
TitleJob title
HireDateDate format: YYYY-MM-DD

Permission Sets

Employee Hub Unified Employee User (EmployeeHubEmployeeUser) is always assigned — no other permission sets belong on a UEL user. If the caller asks for extras (Incident Fulfiller, Case Agent, or any other fulfiller/agent-role set), decline: those are for fulfillers on the Service Cloud side, not for requesters who log into the Employee Hub. Point the caller at the appropriate fulfiller user-create flow instead of extending this one.


Workflow

All steps are sequential. Always read before you write. Every call goes through mcp__headless-360__* tools. Stop and report if any step fails.

Phase 1 — Preflight & discovery

On any `401` / `403` / `404` from a `discover` / `describe` / `dispatch` / `dispatch_readonly` call below, halt and surface the raw error — the org or client is not configured correctly. 401 → headless-360 MCP client not authenticated to CORE_ORG_ALIAS (session expired). 403 → executing user is missing one of the required perms (ManageUsers, ManageProfilesPermissionsets, CustomizeApplication, AssignPermissionSets) OR the org lacks the Unified Employee License. 404 → the target sObject / route is not available (HR module / UEL not provisioned — surfaces separately as the five prerequisite checks in step 2).

  1. Discover the operationsmcp__headless-360__discover(query="create User Account Employee2 sObject")

and mcp__headless-360__describe(id=<operation_id>) for the POST /sobjects/User, POST /sobjects/Account, and POST /sobjects/Employee2 operations to confirm they are indexed and pull the input schema. A discover miss does not mean the route is absent — the /sobjects/… REST endpoints are core Data API paths and can be invoked directly with dispatch_readonly / dispatch against the exact URL (see references/mcp-invocation.md). If a direct dispatch_readonly probe at the documented path also fails (404), direct the user to the Setup UI.

  1. Verify all five UEL prerequisites (all read-only /query or describe). If any fails,

stop and report exactly which prerequisite is missing:

  • Unified Employee license exists → else "Unified Employee license not found in this org."
  • Unified Employee profile exists → else "Unified Employee profile not found. Ensure UEL license is provisioned."
  • Active Person Account record type exists → else "No active Person Account record type found. Enable Person Accounts in Setup."
  • Employee Hub permission set exists → else "Employee Hub Unified Employee User permission set not found. This is required for UEL provisioning."
  • Employee2 describe returns 200 → else "Employee2 sObject not accessible. Ensure the HR module is enabled."

Capture: UnifiedEmployeeProfileId, PersonAccountRecordTypeId, EmployeeHubPermSetId.

Phase 2 — Resolve references

  1. Resolve the manager — when the user supplied a manager, query by Username or Name (active

users only). On multiple matches, present options and ask the user to disambiguate. Capture ManagerId. When no manager was supplied, skip this step.

  1. Check username uniqueness — query User by Username; any record → stop, username taken.

Phase 3 — Confirm & create the chain

  1. Confirm the plan — present the full configuration (including HR attributes) and wait for

explicit confirmation before any mutation.

  1. Create the UserPOST /sobjects/User with identity, locale, ProfileId =

UnifiedEmployeeProfileId, and ManagerId (omit ManagerId when none). Capture NewUserId.

  1. Assign the Employee Hub permission set (mandatory)POST /sobjects/PermissionSetAssignment

with {AssigneeId: NewUserId, PermissionSetId: EmployeeHubPermSetId}. If this fails, stop and report the exact error — the set exists (verified) but may be incompatible with the license.

  1. Create the Person AccountPOST /sobjects/Account with FirstName, LastName,

PersonEmail (required), and RecordTypeId = PersonAccountRecordTypeId. Capture NewAccountId. PersonEmail must be set: the Employee2 validation hook rejects the record when the linked PersonContact is missing Email or LastName.

  1. Verify the PersonContact — query the Account for IsPersonAccount and PersonContactId.

Confirm IsPersonAccount = true and capture PersonContactId. If it is null, stop and report failure to generate the PersonContact.

  1. Create the Employee2 recordPOST /sobjects/Employee2 with UserId = NewUserId,

ContactId = PersonContactId, and the HR attributes. Use the foreign-key field names UserId/ContactId (not the relationship names User/Contact). Capture NewEmployee2Id.

Phase 4 — Verify & present

  1. Verify the full chain — query the Account (IsPersonAccount, PersonContactId), the User

(IsActive, ProfileId, ManagerId), the Employee2 (UserId, ContactId), and confirm the Employee Hub permission set is the only PermissionSetAssignment (beyond the profile).

  1. Report using the output format below.

Rules / Constraints

ConstraintRationale
Verify all five prerequisites before any mutationPrevents partial state when the org is not configured for UEL
Always describe before a POSTYou need the exact input schema for each sObject
Confirm the plan with the user before creating recordsPrevents unintended record creation
PersonEmail is required on Person Account createThe Employee2 validation hook rejects a PersonContact with no Email
Use UserId/ContactId field names on Employee2The API rejects bare IDs under the relationship names
Employee Hub Unified Employee User is the ONLY permset assignedUEL users are Employee Hub requesters, not fulfillers/agents — no other permsets are compatible
Omit null/empty foreign keys from create bodiesThe API rejects an explicit empty ManagerId
Display the exact error from dispatch* on failureHelps diagnose issues
Never show Salesforce record IDs to the userUse human-readable names only

Permissions Required

The executing admin user (the identity behind CORE_ORG_ALIAS) must have:

PermissionPurpose
Manage Internal UsersCreate User records
Manage Profiles and Permission SetsAssign permission sets
Customize ApplicationCreate Employee2 and Person Account records
Assign Permission SetsCreate PermissionSetAssignment records

Verification Checklist

  • [ ] Did discover + describe(id) (or, on a discover miss, a direct dispatch_readonly probe at the documented /sobjects/… path) confirm the User / Account / Employee2 create operations?
  • [ ] Did all five UEL prerequisites pass (license, profile, Person Account RT, Employee Hub set, Employee2)?
  • [ ] Did you confirm the username is unique and confirm the plan before any mutation?
  • [ ] Is Account.IsPersonAccount = true with a non-null PersonContactId?
  • [ ] Is User.IsActive = true on the Unified Employee profile (and manager, if provided)?
  • [ ] Does Employee2 link UserId and ContactId correctly?
  • [ ] Is Employee Hub Unified Employee User the only permission set assigned (no fulfiller-side extras)?

Output Format

On failure, display the error from dispatch* exactly as returned.

On success:

text
UEL User Provisioning Complete (via service-itsm-agentic-setup-uel-user-create)

User:
  Name:     <FirstName> <LastName>
  Username: <Username>
  Email:    <Email>
  Profile:  Unified Employee
  Manager:  <ManagerName> (or "not set")
  Status:   Active

Person Account:
  Account Name: <FirstName> <LastName>
  Person Contact: linked

Employee Record:
  Department:    <Department>
  Title:         <Title>
  Location:      <Location>
  Employee No:   <EmployeeNumber>
  Hire Date:     <HireDate>

Permission Set Assigned:
  - Employee Hub Unified Employee User

Chain: User > Person Account > PersonContact > Employee2 > Employee Hub permset

No record IDs in user-facing output — use human-readable names only.


Reference File Index

FileWhen to read
references/mcp-invocation.mdEvery phase — exact mcp__headless-360__* call shapes, the five prerequisite queries, the create bodies for the full chain, response envelope, discovery, and gotchas

Related Skills

This skill provisions a Unified Employee License (UEL) user with the full entity chain. Two adjacent flows are out of scope: creating a standard (non-UEL) user, and cloning an existing user's full access configuration. Handle those requests separately — this skill does not cover them.

同じリポジトリから

関連する Skills

すべての Skills
forcedotcom
コミュニティ

agentforce-d360-analyze

Data Cloud 360° view of a single Agentforce session. TRIGGER when user asks to trace, inspect, summarize, or describe a specific Agentforce session by session id (Agent Session UUID 019d… or MessagingSession id 0Mw…). Also triggers on session discovery — find/list/search sessions by time, agent, channel, outcome, or conversation text — when the user has no session id yet. DO NOT TRIGGER for design-time architecture questions (use agentforce-architecture-analyze instead) or for runtime perf/latency/SLO questions that require platform telemetry beyond Data Cloud.

導入数
1
GitHub Stars
972
更新日
9月7日
forcedotcom
コミュニティ

agentforce-generate

Build, modify, audit, repair, optimize, debug, and deploy agents with Agentforce Agent Script. TRIGGER when: user creates, reviews, or changes .agent files or aiAuthoringBundle metadata; asks to fix AgentScript, audit an existing agent, run an AgentScript health check, common-pitfall review, or baseline-versus-candidate repair loop; changes a response, action, subagent, route, state flow, or Agent Spec; previews, debugs, deploys, publishes, or tests agents; uses sf agent generate/preview/publish/test; or manages Agentforce MCP servers, tools, assets, or authentication. DO NOT TRIGGER when: Apex, Flow, Prompt Template, Experience Cloud, or general Salesforce CLI work is unrelated to Agent Script; or the primary input is a production session or trace ID rather than an agent artifact.

導入数
1
GitHub Stars
972
更新日
9月7日
forcedotcom
コミュニティ

platform-quick-deploy

Deploy validated metadata to a Production Salesforce org without re-running tests. TRIGGER when the user wants to deploy to production, says 'quick deploy', 'promote', 'ship to prod', or has just validated and wants to push the change live. REQUIRES a recent sf project deploy validate job ID (≤10 days old, ≤3 days for --use-most-recent). DO NOT TRIGGER for sandbox/scratch deploys (use platform-metadata-deploy) or unvalidated deploys (use platform-deploy-validate first).

導入数
1
GitHub Stars
972
更新日
9月7日
forcedotcom
コミュニティ

agentforce-test

Write, run, and analyze structured test suites for Agentforce agents — functional AND security. TRIGGER when: user writes or modifies test spec YAML (AiEvaluationDefinition); runs sf agent test create, run, run-eval, or results commands; asks about test coverage strategy, metric selection, or custom evaluations; interprets test results or diagnoses test failures; asks about batch testing, regression suites, or CI/CD test integration; requests security testing, OWASP LLM Top 10, red-teaming, penetration testing, prompt-injection tests, a security grade, or a vulnerability assessment of an agent. DO NOT TRIGGER when: user creates, modifies, previews, or debugs .agent files (use agentforce-generate); deploys or publishes agents; writes Agent Script code; uses sf agent preview for development iteration; analyzes production session traces (use agentforce-observe); performs a static safety review of .agent file content (use agentforce-generate Section 15).

導入数
3
GitHub Stars
972
更新日
9月7日