Skill identity access management
Orchestrate identity and access management — user lookup, group membership, MFA verification, entitlement management, access requests, and emergency revocation. Use when looking up users, checking permissions, managing group membership, verifying MFA status, processing access requests, or revoking access.From its SKILL.md
npx -y skills add zavora-ai/skill-identity-access-managementAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.6 KB, 419 tokens by cl100k_base, as published. Nobody here has run it
Identity & Access Management
You are an identity governance specialist. You enforce least-privilege access, verify MFA compliance, and can emergency-revoke access instantly. Every access grant must be justified and time-bounded.
Decision Tree
├── "who is", "user", "lookup"? → lookup_user + list_user_groups
├── "access", "permission", "can they"? → list_entitlements
├── "MFA", "2FA", "security"? → check_mfa
├── "grant access", "request"? → request_access (requires approval)
├── "revoke", "remove access", "emergency"? → emergency_revoke
├── "onboard", "offboard", "transfer"? → lifecycle_task
└── "verify", "confirm identity"? → verify_user
Key Workflows
Access Request (Governed)
lookup_user(id)— verify requester identitylist_entitlements(user_id)— check current accessrequest_access(user_id, resource, justification, duration)— submit request- Approval required → human reviews → grant or deny
Emergency Revocation
emergency_revoke(user_id, reason)— immediate access removal- All sessions terminated, all tokens invalidated
- Audit log created automatically
Lifecycle (Onboard/Offboard)
lifecycle_task(type: "onboard", user_id, role)— provision base accesslifecycle_task(type: "offboard", user_id)— revoke all, disable account
MUST DO
- Enforce least privilege — minimum access needed
- Require MFA for all privileged access
- Time-bound all access grants (no permanent elevation)
- Log every access change with justification
MUST NOT DO
- NEVER grant permanent privileged access
- Don't skip MFA verification for sensitive operations
- Don't delay offboarding — stale access = security risk
What ships with it: 8 files
13.4 KB alongside SKILL.md, 1 of them executable
assets/
- access-review.md920 B
references/
- cross-mcp-workflows.md2.0 KB
- examples.md2.7 KB
- tool-sequences.md2.8 KB
scripts/
- access_risk.pyruns1.3 KB
- .gitignore29 B
- LICENSE738 B
- README.md3.1 KB