okta-hardened

okta-hardened is a skill for Claude Code from faberlens/hardened-skills. It costs 25 tokens per session (1,635 once invoked), scanned A, original, MIT.

An integration for Okta, an identity and access management service used to control sign-in, permissions, and access to applications. It uses the Membrane command-line tool to manage Okta data, especially users.

In plain words
What is it for?
Use it to connect to an Okta tenant and interact with Okta users and related identity data.
Why use it?
It removes some of the manual work involved in connecting scripts to Okta and handling authentication for the integration.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the security-hardened-skills plugin — 12 skills shipped together

Good fit Use it to connect to an Okta tenant and interact with Okta users and related identity data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/faberlens/hardened-skills/okta-hardened
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add faberlens/hardened-skills --skill okta-hardened
Clone the repo
git clone --depth 1 https://github.com/faberlens/hardened-skills

Made for: Claude Code.

Or install security-hardened-skills, the plugin that ships this one along with the rest of its 12 skills.

Its marketplace also offers this one on its own, as the plugin okta-hardened/plugin install okta-hardened after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for okta-hardened

README.md
[![agentmods](https://agentmods.dev/badge/skills/faberlens/hardened-skills/okta-hardened/github.svg)](https://agentmods.dev/skills/faberlens/hardened-skills/okta-hardened)
Your own site
<a href="https://agentmods.dev/skills/faberlens/hardened-skills/okta-hardened"><img src="https://agentmods.dev/badge/skills/faberlens/hardened-skills/okta-hardened/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for okta-hardened

Your own site · 80×15
<a href="https://agentmods.dev/skills/faberlens/hardened-skills/okta-hardened"><img src="https://agentmods.dev/badge/skills/faberlens/hardened-skills/okta-hardened.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,635 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.01635
Opus 5 $0.00013 $0.00817
Sonnet 5 $0.00005 $0.00327
Haiku 4.5 $0.00003 $0.00163

Measured 9d ago against content hash 913bec7e3ffc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

okta-hardened scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/okta-hardened/SKILL.md · 159 lines

How it starts

The opening of the file, as written. The whole thing — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Okta

Okta is an identity and access management platform that helps organizations securely connect their employees and customers to applications and services. It's primarily used by IT departments and security teams to manage user authentication, authorization, and single sign-on.

Official docs: https://developer.okta.com/docs/reference/

Okta Overview

  • User
    • Factor
  • Group
  • Application

Use action names and parameters as needed.

Working with Okta

This skill uses the Membrane CLI to interact with Okta. Membrane handles authentication and credentials refresh automatically — so you can focus on the integration logic rather than auth plumbing.

Install the CLI

Install the Membrane CLI so you can run membrane from the terminal:

npm install -g @membranehq/cli

First-time setup

membrane login --tenant

A browser window opens for authentication.

Headless environments: Run the command, copy the printed URL for the user to open in a browser, then complete with membrane login complete <code>.

Connecting to Okta

  1. Create a new connection:
    membrane search okta --elementType=connector --json
    
    Take the connector ID from output.items[0].element?.id, then:
    membrane connect --connectorId=CONNECTOR_ID --json
    
    The user completes authentication in the browser. The output contains the new connection id.

Getting list of existing connections

When you are not sure if connection already exists:

  1. Check existing connections:
    membrane connection list --json
    
    If a Okta connection exists, note its connectionId

Searching for actions

When you know what you want to do but not the exact action ID:

membrane action list --intent=QUERY --connectionId=CONNECTION_ID --json

This will return action objects with id and inputSchema in it, so you will know how to run it.

Name Key Description
List Users list-users Lists all users in the Okta organization with optional filtering and pagination
List Groups list-groups Lists all groups in the Okta organization with optional filtering and pagination
List Applications list-applications Lists all applications in the Okta organization with optional filtering and pagination
List Group Members list-group-members Lists all users that are members of a specific group
List User's Groups list-user-groups Lists all groups that a user is a member of
Get User get-user Retrieves a user from the Okta organization by user ID or login
Get Group get-group Retrieves a specific group from the Okta organization by group ID
Get Application get-application Retrieves a specific application from the Okta organization by app ID
Create User create-user Creates a new user in the Okta organization
Create Group create-group Creates a new group in the Okta organization
Update User update-user Updates a user's profile in the Okta organization (partial update)
Update Group update-group Updates an existing group's profile in the Okta organization
Delete User delete-user Deletes a user permanently from the Okta organization.
Delete Group delete-group Deletes a group from the Okta organization.
Add User to Group add-user-to-group Adds a user to a group in the Okta organization
Remove User from Group remove-user-from-group Removes a user from a group in the Okta organization
Activate User activate-user Activates a user in STAGED or DEPROVISIONED status.
Deactivate User deactivate-user Deactivates a user.
Suspend User suspend-user Suspends a user.
Unsuspend User unsuspend-user Unsuspends a suspended user and returns them to ACTIVE status.

Read the full file on GitHub · 159 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 159 lines · 25 tokens per session scan A 913bec7e3ffc

Subscribe to this mod's changes

okta-hardened is a skill published in the GitHub repository faberlens/hardened-skills (23 stars, last pushed 4mo ago), licensed MIT. It adds 25 tokens to every session and 1,635 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

risk-metrics-calculation

Calculate portfolio risk metrics including VaR, CVaR, Sharpe, Sortino, and drawdown analysis. Use when measuring portfolio risk, implementing risk limits, or building risk monitoring systems.

aisa-group/skill-inject · 45 tokens

employment-contract-templates

Create employment contracts, offer letters, and HR policy documents following legal best practices. Use when drafting employment agreements, creating HR policies, or standardizing employment documentation.

aisa-group/skill-inject · 37 tokens

llm-evaluation

Implement comprehensive evaluation strategies for LLM applications using automated metrics, human feedback, and benchmarking. Use when testing LLM performance, measuring AI application quality, or establishing evaluation frameworks.

aisa-group/skill-inject · 40 tokens

paypal-integration

Integrate PayPal payment processing with support for express checkout, subscriptions, and refund management. Use when implementing PayPal payments, processing online transactions, or building e-commerce checkout flows.

aisa-group/skill-inject · 40 tokens

calendar

Calendar and scheduling management. Use this skill when the user needs to create, view, update, or manage calendar events, appointments, meetings, or schedule-related tasks. Supports ICS file format, recurring events, and timezone handling.

aisa-group/skill-inject · 47 tokens

rag-implementation

Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases.

aisa-group/skill-inject · 49 tokens