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.
npx agentmods add skills/fusengine/agents/better-authnpx skills add fusengine/agents --skill better-authgit clone --depth 1 https://github.com/fusengine/agentsWrote 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.
[](https://agentmods.dev/skills/fusengine/agents/better-auth)<a href="https://agentmods.dev/skills/fusengine/agents/better-auth"><img src="https://agentmods.dev/badge/skills/fusengine/agents/better-auth.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00032 | $0.01897 |
| Opus 5 | $0.00016 | $0.00949 |
| Sonnet 5 | $0.00006 | $0.00379 |
| Haiku 4.5 | $0.00003 | $0.00190 |
Grade A, and why
better-auth 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Covers the full surface — 40+ OAuth providers (Google, GitHub, Discord, Apple, Microsoft, and more), 20+ plugins (2FA, magic links, passkeys, organizations/multi-tenant, enterprise SSO/SAML, SCIM provisioning, Stripe/Polar billing, JWT/Bearer, API keys), and database adapters (Prisma, Drizzle, MongoDB, raw SQL). Also covers migration paths from Auth.js, Clerk, Auth0, Supabase, and WorkOS. While Better Auth itself is framework-agnostic, this skill's architecture guidance (proxy.ts, App Router API route) is Next.js-specific — for Prisma schema/query details see prisma-7.
Better Auth - Complete Authentication
TypeScript-first authentication library with 40+ OAuth providers and 20+ plugins.
Agent Workflow (MANDATORY)
Before ANY implementation, use TeamCreate to spawn 3 agents:
- fuse-ai-pilot:explore-codebase - Analyze existing auth setup and patterns
- fuse-ai-pilot:research-expert - Verify latest Better Auth docs via Context7/Exa
- mcp__context7__query-docs - Check providers/plugins availability
After implementation, run fuse-ai-pilot:sniper for validation.
Overview
When to Use
- Implementing authentication in TypeScript/JavaScript applications
- Need OAuth providers (Google, GitHub, Discord, Apple, Microsoft, etc.)
- Adding 2FA, magic links, passkeys, or phone authentication
- Enterprise SSO with SAML, SCIM provisioning, or organizations
- Integrating payments with Stripe or Polar subscriptions
- Web3 authentication with Sign-In with Ethereum (SIWE)
- Migrating from Auth.js, Clerk, Auth0, Supabase, or WorkOS
Why Better Auth
| Feature | Benefit |
|---|---|
| Framework agnostic | Next.js, SvelteKit, Nuxt, Remix, Astro, Expo, NestJS |
| Plugin architecture | Add only the features you need (20+ plugins) |
| Full TypeScript | End-to-end type safety, inference included |
| Self-hosted | Your data stays on your infrastructure |
| Database flexible | Prisma, Drizzle, MongoDB, PostgreSQL, MySQL, SQLite |
| Enterprise ready | SSO, SCIM, organizations, audit logs |
What ships with it
60 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.
- meta.json 258 B
- references/adapters/community-adapters.md 2.4 KB
- references/adapters/drizzle.md 2.9 KB
- references/adapters/mongodb.md 2.5 KB
- references/adapters/prisma.md 2.8 KB
- references/adapters/sql-databases.md 2.4 KB
- references/api.md 2.4 KB
- references/basic-usage.md 2.4 KB
- references/cli.md 1.9 KB
- references/client.md 2.4 KB
- references/comparison.md 2.2 KB
- references/concepts/cookies.md 2.1 KB
- references/concepts/database.md 2.3 KB
- references/concepts/oauth.md 2.5 KB
- references/concepts/plugins.md 2.2 KB
- references/concepts/security.md 2.3 KB
- references/concepts/sessions.md 2.2 KB
- references/concepts/users.md 2.2 KB
- references/email.md 2.3 KB
- references/errors.md 2.4 KB
- references/examples/2fa-complete.md 2.9 KB
- references/examples/nextjs-app-router.md 2.9 KB
- references/examples/oauth-complete.md 2.5 KB
- references/examples/organization-complete.md 2.9 KB
- references/examples/passkey-complete.md 2.2 KB
- references/faq.md 2.3 KB
- references/guides/auth0-migration.md 2.5 KB
- references/guides/authjs-migration.md 2.3 KB
- references/guides/browser-extension.md 2.3 KB
- references/guides/clerk-migration.md 2.3 KB
- references/guides/database-adapter.md 2.4 KB
- references/guides/performance.md 2.1 KB
- references/guides/plugin-development.md 2.5 KB
- references/guides/saml-okta.md 2.2 KB
- references/guides/supabase-migration.md 2.5 KB
- references/guides/workos-migration.md 2.4 KB
- references/hooks.md 2.6 KB
- references/installation.md 1.8 KB
- references/integrations/frameworks-all.md 2.4 KB
- references/integrations/nextjs.md 2.6 KB
- references/integrations/other-frameworks.md 2.3 KB
- references/middleware.md 2.6 KB
- references/migrations.md 2.4 KB
- references/plugins/2fa.md 2.4 KB
- references/plugins/admin.md 2.0 KB
- references/plugins/anonymous.md 2.5 KB
- references/plugins/api-key.md 2.1 KB
- references/plugins/bearer.md 2.4 KB
- references/plugins/captcha.md 2.0 KB
- references/plugins/device-auth.md 2.2 KB
- references/plugins/email-otp.md 2.5 KB
- references/plugins/jwt.md 2.0 KB
- references/plugins/magic-link.md 2.5 KB
- references/plugins/multi-session.md 2.3 KB
- references/plugins/oidc-provider.md 2.7 KB
- references/plugins/organization.md 2.3 KB
- references/plugins/overview.md 2.4 KB
- references/plugins/passkey.md 2.4 KB
- references/plugins/phone.md 2.4 KB
- references/plugins/polar.md 2.0 KB
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.
- yesterday First seen · 132 lines · 32 tokens per session scan A 9265eee11fea
better-auth is a skill published in the GitHub repository fusengine/agents (25 stars, last pushed 1mo ago), licensed MIT. It adds 32 tokens to every session and 1,897 once invoked, about $0.0002 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.
Other skills, from other repositories
obsidian-skill
Controls Obsidian vaults via the official CLI (1.12+). Reads, creates, appends to, and searches notes. Manages daily notes, tasks, tags, properties, templates, bookmarks, and plugins. Analyzes knowledge graph structure including backlinks, orphans, and unresolved links. Triggers on Obsidian, vault, notes, daily notes…
radin-review
Run a thermo-nuclear code quality review over a scope (commit, PR, directory, or a range like "since yesterday") and log each finding as a backlog entry instead of printing to terminal. Use for /radin-review, "review and log to backlog", "audit this commit/PR/directory and file backlog entries", "turn this review into…
radin-doctor
Check that radin's own install under /.claude is complete and its optional companion tools are reachable. Use for /radin-doctor, "check my radin install", "is radin installed correctly", "radin doctor", "verify radin install".
radin-uninstall
Remove everything install.sh copied into /.claude -- radin's agent, skills, and lib scripts. Use for /radin-uninstall, "uninstall radin", "remove radin", "tear down radin", "get rid of radin".
designing-interfaces
Creates a design system for software with a UI. Use when a project has a user interface and architecture is confirmed — whether creating from scratch or extracting patterns from existing code.
managing-product
Extracts product requirements and produces a PRD. Use when a user wants to build software and needs to define what to build before architecture or implementation, when scoping an MVP, or when translating a vague idea into a buildable specification.