Agent skill

lokalise-enterprise-rbac

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

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill lokalise-enterprise-rbac --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 11 KB
Bundled scripts: none
Version: 1.14.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(curl:*)Bash(jq:*)Bash(node:*)Bash(npm:*)Grep
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/lokalise-enterprise-rbac/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Lokalise Enterprise RBAC ## Overview Manage fine-grained access to Lokalise translation projects using its built-in role hierarchy, language-level scoping, contributor groups, and organization-level SSO enforcement. Lokalise has four core roles — owner, admin, manager-level (via admin_rights), and contributor (translator/reviewer) — each configurable per project and per language. ## Prerequisites - Lokalise Team or Enterprise plan (contributor groups and SSO require Team+) - Owner or Admin role in the Lokalise organization - `LOKALISE_API_TOKEN` environment variable set (admin-level token) - `@lokalise/node-api` SDK or `curl` + `jq` for REST API access ## Instructions ### Step 1: Understand the Role Hierarchy Lokalise uses a flat role model per project, controlled by three boolean flags on each contributor: | Role | `is_admin` | `is_reviewer` | Can translate | Can review | Can manage keys | Can manage contributors | |------|-----------|--------------|--------------|-----------|----------------|----------------------| | **Admin** | `true` | `true` | Yes | Yes | Yes | Yes | | **Manager** | `false` | `true` | Yes | Yes | Limited (via `admin_rights`) | No | | **Reviewer** | `false` |

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Understand the Role Hierarchy
  5. Step 2: Add Contributors with Language Scoping
  6. Step 3: Manage Team-Level Users and Roles
  7. Step 4: Create Contributor Groups for Bulk Management
  8. Step 5: Configure SSO (Enterprise Plan Only)
  9. Step 6: Audit Permissions Regularly
  10. Step 7: Set Up Webhook for Access Change Notifications
  11. Output
  12. Error Handling
  13. Examples
  14. List All Contributors Across All Projects
Commands it runs
set -euo pipefail
List all team members with their roles
curl -s -X GET "https://api.lokalise.com/api2/teams/${TEAM_ID}/users" \
Demote a user from admin to member
curl -s -X PUT "https://api.lokalise.com/api2/teams/${TEAM_ID}/users/USER_ID" \
Create a group for APAC translators
curl -s -X POST "https://api.lokalise.com/api2/teams/${TEAM_ID}/groups" \
Add a member to the group
curl -s -X PUT "https://api.lokalise.com/api2/teams/${TEAM_ID}/groups/${GROUP_ID}/members/add" \
Assign the group to specific projects
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the lokalise-enterprise-rbac skill do?

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

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill lokalise-enterprise-rbac --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going