authos-service-api-integration

authos-service-api-integration is a skill for Codex from drmhse/authos_skill. It costs 50 tokens per session (760 once invoked), scanned A, original, MIT.

A guide for connecting a server application to AuthOS service API routes with an API key. AuthOS is a service for managing user access, subscriptions, and related account data.

In plain words
What is it for?
Use it to list or manage service users, subscriptions, service details, analytics, and provider-token requests from a backend.
Why use it?
It explains how server-to-server authentication works and helps keep service API keys out of browsers and user-installed apps.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to list or manage service users, subscriptions, service details, analytics…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/drmhse/authos_skill/authos-service-api-integration
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 drmhse/authos_skill --skill authos-service-api-integration
Clone the repo
git clone --depth 1 https://github.com/drmhse/authos_skill

Made for: 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-service-api-integration

README.md
[![agentmods](https://agentmods.dev/badge/skills/drmhse/authos_skill/authos-service-api-integration.svg)](https://agentmods.dev/skills/drmhse/authos_skill/authos-service-api-integration)
Your own site
<a href="https://agentmods.dev/skills/drmhse/authos_skill/authos-service-api-integration"><img src="https://agentmods.dev/badge/skills/drmhse/authos_skill/authos-service-api-integration.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 760 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.00050 $0.00760
Opus 5 $0.00025 $0.00380
Sonnet 5 $0.00010 $0.00152
Haiku 4.5 $0.00005 $0.00076

Measured 6d ago against content hash a5df52845d58, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

authos-service-api-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 6d 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-service-api-integration/SKILL.md · 98 lines

How it starts

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

AuthOS Service API Integration

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

Use this skill for service-to-service work with AuthOS API keys. Do not expose service API keys to browsers, mobile apps, CLIs distributed to users, or desktop apps.

Authentication

Service API routes are authenticated with an API key in the X-Api-Key header. In the SDK:

import { SsoClient } from '@drmhse/sso-sdk';

const authos = new SsoClient({
  baseURL: process.env.AUTHOS_BASE_URL!,
  apiKey: process.env.AUTHOS_SERVICE_API_KEY!
});

Create service API keys through the organization service management API:

  • POST /api/organizations/:org_slug/services/:service_slug/api-keys
  • GET /api/organizations/:org_slug/services/:service_slug/api-keys
  • DELETE /api/organizations/:org_slug/services/:service_slug/api-keys/:api_key_id

Service API Routes

  • GET/POST /api/service/users
  • GET/PATCH/DELETE /api/service/users/:user_id
  • GET/POST /api/service/subscriptions
  • GET/PATCH/DELETE /api/service/subscriptions/:user_id
  • GET /api/service/analytics
  • POST /api/service/provider-tokens
  • GET/PATCH /api/service/info

These routes are scoped by the API key's service. Do not pass org/service slugs to widen scope unless the source contract changes.

SDK Usage

List users:

const { users, total } = await authos.serviceApi.listUsers({ limit: 50, offset: 0 });

Create a user:

const user = await authos.serviceApi.createUser({ email: '[email protected]' });

Manage subscriptions:

await authos.serviceApi.createSubscription({
  user_id: user.id,
  plan_id: 'plan-id',
  status: 'active'
});

Read service analytics:

const analytics = await authos.serviceApi.getAnalytics();

Read the full file on GitHub · 98 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. 6d ago First seen · 98 lines · 50 tokens per session scan A a5df52845d58

Subscribe to this mod's changes

authos-service-api-integration is a skill published in the GitHub repository drmhse/authos_skill (1 stars, last pushed 3mo ago), licensed MIT. It adds 50 tokens to every session and 760 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

creating-springboot-projects

Use when starting a new Spring Boot 4 project — scaffolding a service, REST API, or modular backend; picking an architecture (layered, package-by-module, modular-monolith, tomato, DDD-hexagonal); selecting Spring Boot 4 features; or applying the bundled templates and references in this skill. Not for migrating…

a-pavithraa/springboot-skills-marketplace · 91 tokens

springboot-migration

Use when upgrading an existing Spring Boot application to Boot 4 — dependency transitions, starter renames, test-annotation migration (e.g. @MockBean → @MockitoBean), Jackson 3 issues, related Spring Modulith 2 or Testcontainers 2 upgrade work, or planning a phased migration. Not for greenfield project creation or…

a-pavithraa/springboot-skills-marketplace · 77 tokens

custom-post-type-architect

Use when the user asks to create a custom post type, build a portfolio, set up case studies, add team members, events, or podcast episodes, or says 'scaffold a CPT'. Creates the post type plus supporting taxonomies, an ACF field group, sample entries, and a builder-specific single template suggestion.

respira-press/agent-skills-wordpress · 71 tokens

asyncopenai-concurrency-httpx-pool

Raise real concurrency in asyncio LLM batch scorers built on the OpenAI SDK (AsyncOpenAI, including OpenAI-compatible providers like DeepSeek). Use when: (1) raising an asyncio.Semaphore above 100 produces no throughput gain, (2) a batch pipeline saturates near 100 in-flight requests despite a larger semaphore, (3)…

kennethkhoocy/applied-micro-skills · 161 tokens

architecture

Proactive architecture review — explore codebase structure, generate a self-contained HTML report with Mermaid diagrams and candidate improvements, then grill the findings. Use when planning a large refactor, onboarding to an unfamiliar codebase, or before a major architectural change.

datit309/supergraph · 52 tokens

backend-specialist

A guide for designing and building backend services, the parts of an application that handle data, business rules, and requests. It covers APIs, databases, authentication, and service performance.

huangwb8/skills · 62 tokens