skills$openclaw/onelogin
mrgoodb9.6k

by mrgoodb

onelogin – OpenClaw Skill

onelogin is an OpenClaw Skills integration for security workflows. Manage users and apps via OneLogin API. Handle SSO and identity management.

9.6k stars5.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026security

Skill Snapshot

nameonelogin
descriptionManage users and apps via OneLogin API. Handle SSO and identity management. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/onelogin
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/onelogin
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains onelogin in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
269 B
SKILL.md
1.1 KB
SKILL.md

name: onelogin description: Manage users and apps via OneLogin API. Handle SSO and identity management. metadata: {"clawdbot":{"emoji":"1️⃣","requires":{"env":["ONELOGIN_CLIENT_ID","ONELOGIN_CLIENT_SECRET","ONELOGIN_REGION"]}}}

OneLogin

Identity and access management.

Environment

export ONELOGIN_CLIENT_ID="xxxxxxxxxx"
export ONELOGIN_CLIENT_SECRET="xxxxxxxxxx"
export ONELOGIN_REGION="us"  # or eu

Get Access Token

curl -X POST "https://api.$ONELOGIN_REGION.onelogin.com/auth/oauth2/v2/token" \
  -u "$ONELOGIN_CLIENT_ID:$ONELOGIN_CLIENT_SECRET" \
  -d "grant_type=client_credentials"

List Users

curl "https://api.$ONELOGIN_REGION.onelogin.com/api/2/users" \
  -H "Authorization: Bearer $ACCESS_TOKEN"
curl -X POST "https://api.$ONELOGIN_REGION.onelogin.com/api/2/users" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com", "firstname": "John", "lastname": "Doe"}'
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install onelogin?

Run openclaw add @mrgoodb/onelogin in your terminal. This installs onelogin into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/onelogin. Review commits and README documentation before installing.