lokalise-install-auth

Featured

Install and configure Lokalise SDK/CLI authentication. Use when setting up a new Lokalise integration, configuring API tokens, or initializing Lokalise in your project. Trigger with phrases like "install lokalise", "setup lokalise", "lokalise auth", "configure lokalise API token".

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

# Lokalise Install & Auth ## Overview Set up Lokalise SDK/CLI and configure API token authentication for translation management. Covers the Node.js SDK (`@lokalise/node-api` v12+), the CLI (`lokalise2`), and OAuth2 for Lokalise apps. ## Prerequisites - Node.js 18+ (SDK v9+ is ESM-only) - Package manager (npm, pnpm, or yarn) - Lokalise account with project access - API token from Lokalise profile settings ## Instructions ### Step 1: Install Node.js SDK ```bash set -euo pipefail # SDK v9+ is ESM-only — requires "type": "module" in package.json or .mjs files npm install @lokalise/node-api # For CommonJS projects that cannot migrate to ESM, pin to v8 npm install @lokalise/node-api@8 ``` ### Step 2: Install CLI Tool ```bash set -euo pipefail # macOS via Homebrew brew tap lokalise/cli-2 brew install lokalise2 # Linux — download latest release binary LATEST_CLI=$(curl -s https://api.github.com/repos/lokalise/lokalise-cli-2-go/releases/latest \ | grep -oP '"tag_name": "\K[^"]+') curl -sL "https://github.com/lokalise/lokalise-cli-2-go/releases/download/${LATEST_CLI}/lokalise2_linux_x86_64.tar.gz" | tar xz sudo mv lokalise2 /usr/local/bin/ # Verify installation lokalise2 --version ``` ### Step 3: Generate API Token 1. Log into [Lokalise](https://app.lokalise.com) 2. Click profile avatar > **Profile Settings** 3. Go to **API tokens** tab 4. Click **Generate new token** 5. Choose **Read and write** for full access (or **Read only** for CI download pipelines) 6. Copy the token ...

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

lokalise-hello-world

Create a minimal working Lokalise example. Use when starting a new Lokalise integration, testing your setup, or learning basic Lokalise API patterns. Trigger with phrases like "lokalise hello world", "lokalise example", "lokalise quick start", "simple lokalise code".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lokalise-security-basics

Apply Lokalise security best practices for API tokens and access control. Use when securing API tokens, implementing least privilege access, or auditing Lokalise security configuration. Trigger with phrases like "lokalise security", "lokalise secrets", "secure lokalise", "lokalise API token security".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lokalise-common-errors

Diagnose and fix Lokalise common errors and exceptions. Use when encountering Lokalise errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "lokalise error", "fix lokalise", "lokalise not working", "debug lokalise", "lokalise 401", "lokalise 429".

2,266 Updated today
jeremylongshore
AI & Automation Featured

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

lokalise-local-dev-loop

Configure Lokalise local development with file sync and hot reload. Use when setting up a development environment, configuring translation sync, or establishing a fast iteration cycle with Lokalise. Trigger with phrases like "lokalise dev setup", "lokalise local development", "lokalise dev environment", "develop with lokalise", "lokalise sync".

2,266 Updated today
jeremylongshore