AI Agent Skills

Source-verified Agent Skills for implementing, integrating, and operating AuthOS.

AI Agent Skills

AuthOS publishes source-verified Agent Skills for AI coding agents that need to work with AuthOS. The skills are maintained in a public GitHub repository and cover the same public package names and API surfaces used by the AuthOS codebase.

Canonical skills repository: github.com/drmhse/authos_skill

What the Skills Cover

The skill set is organized around the way developers and operators actually work with AuthOS:

  • Platform operation: deployment, maintenance, governance, health checks, metrics, token refresh, webhook delivery, and key rotation.
  • Tenant administration: identity configuration, services, RBAC, compliance automation, BYOO OAuth, enterprise providers, SAML, SCIM, custom domains, branding, MFA, and provider-token reauth.
  • Application integration: browser SDK usage, React, Vue, Node.js middleware, service APIs, device flow, and webhook verification.

Install from GitHub

Clone the skills repository:

git clone https://github.com/drmhse/authos_skill.git ~/authos_skill

Copy every authos-* skill directory into your agent’s skills directory.

Agent Personal install path
Codex ${CODEX_HOME:-~/.codex}/skills/<skill-name>/SKILL.md
Claude Code ~/.claude/skills/<skill-name>/SKILL.md
Cursor ~/.cursor/skills/<skill-name>/SKILL.md
Gemini CLI ~/.gemini/skills/<skill-name>/SKILL.md or ~/.agents/skills/<skill-name>/SKILL.md
GitHub Copilot ~/.copilot/skills/<skill-name>/SKILL.md or ~/.agents/skills/<skill-name>/SKILL.md

Example personal install commands:

# Codex
mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
cp -R ~/authos_skill/authos-* "${CODEX_HOME:-$HOME/.codex}/skills/"

# Claude Code
mkdir -p ~/.claude/skills
cp -R ~/authos_skill/authos-* ~/.claude/skills/

# Cursor
mkdir -p ~/.cursor/skills
cp -R ~/authos_skill/authos-* ~/.cursor/skills/

# Gemini CLI
mkdir -p ~/.gemini/skills
cp -R ~/authos_skill/authos-* ~/.gemini/skills/

# GitHub Copilot
mkdir -p ~/.copilot/skills
cp -R ~/authos_skill/authos-* ~/.copilot/skills/

Restart the agent session or run the agent’s skill reload command after installation.

Agent Skills Format

Each AuthOS skill is a portable Agent Skill directory:

skill-name/
├── SKILL.md
├── scripts/
├── references/
└── assets/

Only SKILL.md is required. Optional directories are used when a skill needs executable helpers, extra reference material, or static assets.

Use With AuthOS Packages

When an agent is adding AuthOS to an app, use the skill that matches the package or surface:

  • authos-web-integration for @drmhse/sso-sdk, @drmhse/authos-react, and @drmhse/authos-vue.
  • authos-backend-integration for @drmhse/authos-node and JWT verification.
  • authos-service-api-integration for backend-only service API routes that use X-Api-Key.
  • authos-platform-deployment when deploying AuthOS from the Docker image or API service.

The package README files and Docker Hub overview link back here so agent users can find the skills from npm and container distribution surfaces.

No content in this section yet.