From juicebox-pack
Configures Juicebox Enterprise RBAC roles and permissions for recruiting teams, including Recruiter, Sourcer, Manager, Viewer with search/enrich/contact/outreach access.
How this skill is triggered — by the user, by Claude, or both
Slash command
/juicebox-pack:juicebox-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 | Search | Enrich | Contact | Outreach |
| Role | Search | Enrich | Contact | Outreach |
|---|---|---|---|---|
| Recruiter | Yes | Yes | Yes | Yes |
| Sourcer | Yes | Yes | No | No |
| Manager | Yes | Yes | Yes | Yes |
| Viewer | Read | No | No | No |
const PERMS = {
recruiter: { search: true, enrich: true, contact: true, outreach: true },
sourcer: { search: true, enrich: true, contact: false, outreach: false },
viewer: { search: true, enrich: false, contact: false, outreach: false },
};
function check(role: string, action: string) { return PERMS[role]?.[action] ?? false; }
See juicebox-migration-deep-dive.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packDefines RBAC for OpenEvidence Enterprise: Viewer (Read), Editor (Read/Write), Admin (Read/Write/Admin) permissions via TypeScript object and tool restrictions.
Configures Clay workspace roles, team access to tables, per-user credit budgets, and API key isolation for enterprise permissions management.
Guides RBAC implementation, feature gating with hide/disable/reduce strategies, invitation flows, admin panels, settings pages, and account/workspace separation.