Help us improve
Share bugs, ideas, or general feedback.
From openevidence-pack
Defines RBAC for OpenEvidence Enterprise: Viewer (Read), Editor (Read/Write), Admin (Read/Write/Admin) permissions via TypeScript object and tool restrictions.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packHow this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-enterprise-rbacThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Role | Read | Write | Admin |
Guides designing role-based access control (RBAC) systems with permission modeling, role definitions, and resource-level checks to prevent authorization failures.
Guides selection and implementation of authorization models including RBAC, ABAC, ACL, ReBAC, and policy-as-code for permission systems and access control design.
Implements Clerk enterprise SSO (SAML/OIDC), custom RBAC roles/permissions, and organization management in Next.js apps.
Share bugs, ideas, or general feedback.
| Role | Read | Write | Admin |
|---|---|---|---|
| Viewer | Yes | No | No |
| Editor | Yes | Yes | No |
| Admin | Yes | Yes | Yes |
const PERMS = {
viewer: { read: true, write: false, admin: false },
editor: { read: true, write: true, admin: false },
admin: { read: true, write: true, admin: true },
};
See openevidence-migration-deep-dive.