shopify-enterprise-rbac

Featured

Implement Shopify Plus access control patterns with staff permissions, multi-location management, and Shopify Organization features. Trigger with phrases like "shopify permissions", "shopify staff", "shopify Plus organization", "shopify roles", "shopify multi-location".

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

# Shopify Enterprise RBAC ## Overview Implement role-based access control for Shopify Plus apps using Shopify's staff member permissions, multi-location features, and Organization-level access. ## Prerequisites - Shopify Plus store (for Organization features) - Understanding of Shopify's staff permission model - `read_users` scope for querying staff permissions ## Instructions ### Step 1: Query Staff Member Permissions ```typescript // Query staff members and their permissions via GraphQL const STAFF_QUERY = `{ staffMembers(first: 50) { edges { node { id email firstName lastName isShopOwner active locale permissions: accessScopes { handle description } } } } }`; // Staff permissions match app access scopes: // "read_products", "write_products", "read_orders", etc. // A staff member can only use app features matching their store permissions ``` ### Step 2: App-Level Role Mapping Map Shopify staff permissions to your app's roles: ```typescript type AppRole = "admin" | "manager" | "viewer" | "fulfillment"; interface RoleMapping { role: AppRole; requiredScopes: string[]; allowedActions: string[]; } const ROLE_MAPPINGS: RoleMapping[] = [ { role: "admin", requiredScopes: ["write_products", "write_orders", "write_customers"], allowedActions: ["*"], }, { role: "manager", requiredScopes: ["write_products", "read_orders"], ...

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

clerk-enterprise-rbac

Configure enterprise SSO, role-based access control, and organization management. Use when implementing SSO integration, configuring role-based permissions, or setting up organization-level controls. Trigger with phrases like "clerk SSO", "clerk RBAC", "clerk enterprise", "clerk roles", "clerk permissions", "clerk organizations".

2,266 Updated today
jeremylongshore
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 Featured

flexport-enterprise-rbac

Configure role-based access control for Flexport integrations with scoped API keys, multi-tenant patterns, and organization-level permission management. Trigger: "flexport RBAC", "flexport permissions", "flexport multi-tenant", "flexport access control".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-enterprise-rbac

Configure HubSpot enterprise access control with OAuth scopes and team permissions. Use when implementing role-based access, configuring per-team HubSpot scopes, or setting up multi-user access patterns for HubSpot integrations. Trigger with phrases like "hubspot RBAC", "hubspot roles", "hubspot enterprise", "hubspot permissions", "hubspot team access", "hubspot OAuth scopes".

2,266 Updated today
jeremylongshore
AI & Automation Featured

maintainx-enterprise-rbac

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".

2,266 Updated today
jeremylongshore