skills$openclaw/okta
mrgoodb2.7k

by mrgoodb

okta – OpenClaw Skill

okta is an OpenClaw Skills integration for coding workflows. Manage users, groups, and applications via Okta API. Handle identity and access management.

2.7k stars6.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameokta
descriptionManage users, groups, and applications via Okta API. Handle identity and access management. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/okta
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/okta
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains okta in the OpenClaw Skills directory.

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

name: okta description: Manage users, groups, and applications via Okta API. Handle identity and access management. metadata: {"clawdbot":{"emoji":"🔑","requires":{"env":["OKTA_DOMAIN","OKTA_API_TOKEN"]}}}

Okta

Enterprise identity management.

Environment

export OKTA_DOMAIN="your-org.okta.com"
export OKTA_API_TOKEN="xxxxxxxxxx"

List Users

curl "https://$OKTA_DOMAIN/api/v1/users" \
  -H "Authorization: SSWS $OKTA_API_TOKEN"

Create User

curl -X POST "https://$OKTA_DOMAIN/api/v1/users?activate=true" \
  -H "Authorization: SSWS $OKTA_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"profile": {"firstName": "John", "lastName": "Doe", "email": "john@example.com", "login": "john@example.com"}}'

List Groups

curl "https://$OKTA_DOMAIN/api/v1/groups" -H "Authorization: SSWS $OKTA_API_TOKEN"
curl "https://$OKTA_DOMAIN/api/v1/apps" -H "Authorization: SSWS $OKTA_API_TOKEN"
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 okta?

Run openclaw add @mrgoodb/okta in your terminal. This installs okta 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/okta. Review commits and README documentation before installing.