authos-webhook-integration

authos-webhook-integration is a skill for Claude Code, Codex from drmhse/authos_skill. It costs 51 tokens per session (994 once invoked), scanned A, original, MIT.

A guide for receiving event notifications from AuthOS and managing the subscriptions that send them. A webhook is an HTTP request that one service sends to another when something happens.

In plain words
What is it for?
Use it to configure webhook subscriptions, choose event types, verify delivery signatures, test deliveries, and review delivery history.
Why use it?
It explains how to subscribe to tenant events, verify that incoming requests are genuine, and investigate delivery problems.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/drmhse/authos_skill/authos-webhook-integration
Any agent
npx skills add drmhse/authos_skill --skill authos-webhook-integration
Clone the repo
git clone --depth 1 https://github.com/drmhse/authos_skill

Made for: Claude Code, Codex.

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 authos-webhook-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/drmhse/authos_skill/authos-webhook-integration.svg)](https://agentmods.dev/skills/drmhse/authos_skill/authos-webhook-integration)
Your own site
<a href="https://agentmods.dev/skills/drmhse/authos_skill/authos-webhook-integration"><img src="https://agentmods.dev/badge/skills/drmhse/authos_skill/authos-webhook-integration.svg" alt="Measured on agentmods" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 994 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00051 $0.00994
Opus 5 $0.00026 $0.00497
Sonnet 5 $0.00010 $0.00199
Haiku 4.5 $0.00005 $0.00099

Measured 4d ago against content hash e0fcf9120b79, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

authos-webhook-integration 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 4d 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.

authos-webhook-integration/SKILL.md · 137 lines

How it starts

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

AuthOS Webhook Integration

Use these public AuthOS links when producing user-facing setup or troubleshooting guidance:

Use this skill for webhooks emitted by AuthOS tenant events. Billing provider webhooks such as /webhooks/stripe and /webhooks/billing are inbound provider callbacks to AuthOS and are not tenant event webhooks.

Management APIs

  • POST/GET /api/organizations/:org_slug/webhooks
  • GET/PATCH/DELETE /api/organizations/:org_slug/webhooks/:webhook_id
  • GET /api/organizations/:org_slug/webhooks/:webhook_id/deliveries
  • POST /api/organizations/:org_slug/webhooks/:webhook_id/test
  • GET /api/organizations/:org_slug/webhooks/event-types

Create a webhook:

{
  "name": "Production sync",
  "url": "https://app.example.com/webhooks/authos",
  "events": ["user.signup.success", "user.login.success"]
}

AuthOS returns the signing secret on creation. Store it immediately.

Current Event Types

The current event allowlist includes:

user.signup.success
user.login.success
user.login.failed
user.logout
user.mfa.enabled
user.mfa.disabled
user.mfa.verify.success
user.mfa.verify.failed
user.invited
user.joined
user.removed
user.role_updated
service.created
service.updated
service.deleted
service.oauth_credentials.updated
organization.updated
organization.smtp.configured
organization.smtp.removed
plan.created
plan.updated
plan.deleted
subscription.created
subscription.updated
subscription.canceled
invitation.accepted
invitation.declined
invitation.expired
invitation.revoked
security.mfa.enabled
security.mfa.disabled
security.password.changed
api_key.created
api_key.deleted
domain.set
domain.verified
domain.deleted
branding.updated

Source also has internal event variants for siem_config.*, but the public webhook management allowlist currently omits them. Do not advertise them as subscribable unless the allowlist changes.

Read the full file on GitHub · 137 lines

Files

What ships with it

3 files 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. 4d ago First seen · 137 lines · 51 tokens per session scan A e0fcf9120b79

Subscribe to this mod's changes

authos-webhook-integration is a skill published in the GitHub repository drmhse/authos_skill (1 stars, last pushed 2mo ago), licensed MIT. It adds 51 tokens to every session and 994 once invoked, about $0.0003 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-08-31.

Related

Other skills, from other repositories

issue-authoring

Draft or refine IDD-ready GitHub issues, roadmap issues, and sub-issues before the normal IDD execution loop begins. Use when a request is too large or ambiguous for one reviewable change, when work needs decomposition or dependency encoding, or when the user asks for issue drafting, roadmap planning, or…

kurone-kito/idd-skill · 71 tokens

idd-spec-audit

Repo-local, dogfood-only semantic audit of the IDD instruction corpus for leaked session context, cross-file contradictions, fresh-memory completability gaps, automation blockers, and restatement-discipline drift. Use only in the kurone-kito/idd-skill source repository, on request, to audit .github/instructions…

kurone-kito/idd-skill · 100 tokens

unity-yaml-format

Inspect, explain, diff, and carefully edit Unity text-serialized files such as .unity, .prefab, .asset, and related YAML-based project files. Use when mapping class IDs and fileIDs, tracing object references, reviewing merge conflicts, or making minimal safe edits to existing UnityYAML documents.

sator-imaging/suggest-skills · 67 tokens

accessibility-inclusive-design

Design, audit, and improve accessibility and inclusive user experiences. Use when Codex is asked about WCAG, keyboard navigation, focus states, screen readers, ARIA, contrast, captions, reduced motion, forms, semantic HTML, accessible UI, game accessibility, inclusive design, accessibility QA, or compliance-sensitive…

jeremylongworth-source/AgentSkills · 69 tokens

agentskills-project-onboarding

Set up AgentSkills in a new or existing repository in a focused way. Use when Codex is asked to onboard AgentSkills, choose the right skillset or skills for a repo, create or update project agent instructions, decide project vs user scope, configure focused routing, recommend MCP presets, or verify that AgentSkills…

jeremylongworth-source/AgentSkills · 79 tokens

ai-media-prompt-brief

Prepare provider-neutral AI media prompt briefs for creator image, video, audio, voiceover, thumbnail, b-roll, and batch content workflows. Use when Codex is asked to turn a creator concept into AI media prompt packs with creative intent, format, source references, constraints, exclusions, rights/provenance notes…

jeremylongworth-source/AgentSkills · 86 tokens