2.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
| name | okta |
| description | Manage users, groups, and applications via Okta API. Handle identity and access management. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/okta |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/okta |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
261 BSKILL.md
1.1 KBSKILL.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"
List Applications
curl "https://$OKTA_DOMAIN/api/v1/apps" -H "Authorization: SSWS $OKTA_API_TOKEN"
Links
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.
