maintainx-enterprise-rbac

Featured

Configure enterprise role-based access control for MaintainX integrations. Use when implementing SSO, managing organization-level permissions, or setting up enterprise access controls with MaintainX. Trigger with phrases like "maintainx rbac", "maintainx sso", "maintainx enterprise", "maintainx permissions", "maintainx roles".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# MaintainX Enterprise RBAC ## Overview Configure enterprise role-based access control for MaintainX integrations with role definitions, location-scoped permissions, and audit logging. ## Prerequisites - MaintainX Enterprise plan - Understanding of RBAC concepts - Node.js 18+ ## MaintainX Role Hierarchy ``` Organization Admin ├── can manage all locations, users, teams, and settings ├── Full API access │ Location Manager ├── can manage work orders, assets at assigned locations ├── API: filtered by locationId │ Technician ├── can view/update assigned work orders ├── API: filtered by assigneeId │ Viewer (Read-Only) └── can view work orders, assets, locations └── API: GET endpoints only ``` ## Instructions ### Step 1: Role Definitions ```typescript // src/rbac/roles.ts export type Role = 'admin' | 'manager' | 'technician' | 'viewer'; interface Permission { resource: string; actions: Array<'create' | 'read' | 'update' | 'delete'>; scope?: 'all' | 'location' | 'assigned'; } export const ROLE_PERMISSIONS: Record<Role, Permission[]> = { admin: [ { resource: 'workorders', actions: ['create', 'read', 'update', 'delete'], scope: 'all' }, { resource: 'assets', actions: ['create', 'read', 'update', 'delete'], scope: 'all' }, { resource: 'locations', actions: ['create', 'read', 'update', 'delete'], scope: 'all' }, { resource: 'users', actions: ['create', 'read', 'update', 'delete'], scope: 'all' }, { resource: 'teams', actions: ['create', 'read', '...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

apollo-enterprise-rbac

Enterprise role-based access control for Apollo.io. Use when implementing team permissions, restricting data access, or setting up enterprise security controls. Trigger with phrases like "apollo rbac", "apollo permissions", "apollo roles", "apollo team access", "apollo enterprise security".

2,266 Updated today
jeremylongshore
AI & Automation Solid

access-control-rbac

Role-based access control (RBAC) with permissions and policies. Use for admin dashboards, enterprise access, multi-tenant apps, fine-grained authorization, or encountering permission hierarchies, role inheritance, policy conflicts.

160 Updated 2 weeks ago
secondsky
AI & Automation Featured

linear-enterprise-rbac

Implement enterprise role-based access control with Linear. Use when setting up team permissions, OAuth scopes, SAML SSO, SCIM provisioning, or audit logging. Trigger: "linear RBAC", "linear permissions", "linear SSO", "linear enterprise access", "linear role management", "linear SCIM".

2,266 Updated today
jeremylongshore
AI & Automation Featured

deepgram-enterprise-rbac

Configure enterprise role-based access control for Deepgram integrations. Use when implementing team permissions, managing API key scopes, or setting up organization-level access controls. Trigger: "deepgram RBAC", "deepgram permissions", "deepgram access control", "deepgram team roles", "deepgram enterprise", "deepgram key scopes".

2,266 Updated today
jeremylongshore
AI & Automation Featured

canva-enterprise-rbac

Configure Canva Enterprise organization access control and scope management. Use when implementing per-user scope control, managing Canva Enterprise features, or setting up organization-level Canva integration governance. Trigger with phrases like "canva enterprise", "canva RBAC", "canva roles", "canva permissions", "canva organization", "canva team".

2,266 Updated today
jeremylongshore