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 agents/secondsky/claude-skills/better-auth-debuggergit clone --depth 1 https://github.com/secondsky/claude-skillsWrote 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/agents/secondsky/claude-skills/better-auth-debugger)<a href="https://agentmods.dev/agents/secondsky/claude-skills/better-auth-debugger"><img src="https://agentmods.dev/badge/agents/secondsky/claude-skills/better-auth-debugger.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.01728 |
| Opus 5 | $0.00016 | $0.00864 |
| Sonnet 5 | $0.00006 | $0.00346 |
| Haiku 4.5 | $0.00003 | $0.00173 |
Grade A, and why
better-auth-debugger scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://localhost:3000/api/auth/session | jq How it starts
The opening of the file, as written. The whole thing — 323 lines — stays where its author put it; the contents beside it link to each section on GitHub.
better-auth Debugger Agent
Autonomously diagnose and fix better-auth authentication issues.
Trigger Conditions
Use this agent when user reports:
- Authentication not working
- OAuth redirect issues
- Session problems
- Database connection errors
- CORS issues
- "Unauthorized" responses
- Configuration errors
Diagnostic Process
Phase 1: Locate Configuration
Search for auth configuration files:
Glob patterns:
- **/auth.ts
- **/auth.config.ts
- **/lib/auth.ts
- **/server/auth.ts
Search for client configuration:
Glob patterns:
- **/auth-client.ts
- **/lib/auth-client.ts
Phase 2: Configuration Analysis
Read the auth configuration and check for common issues:
Critical Issues
-
Missing or Invalid Secret
// BAD: Hardcoded or missing secret: "my-secret" secret: undefined // GOOD: From environment secret: process.env.BETTER_AUTH_SECRET! -
Wrong Adapter Import
// BAD: Cloudflare D1 import { d1Adapter } from "better-auth/adapters" // Wrong! // GOOD: Cloudflare D1 import { drizzleAdapter } from "better-auth/adapters/drizzle" -
Typos in Config
// BAD emailAndPassowrd: { enabled: true } // Typo! forgetPassword: { enabled: true } // Wrong name! // GOOD emailAndPassword: { enabled: true } -
Missing baseURL
// BAD: Not set or wrong baseURL: "localhost:3000" // Missing protocol // GOOD baseURL: process.env.APP_URL // e.g., "http://localhost:3000" -
CommonJS in ESM Project
// BAD const { betterAuth } = require("better-auth") // GOOD import { betterAuth } from "better-auth"
Phase 3: Database Validation
Cloudflare D1
Check wrangler.jsonc for D1 binding:
{
"d1_databases": [
{
"binding": "DB",
"database_name": "auth-db",
"database_id": "xxx"
}
]
}
Verify binding name matches code:
database: drizzleAdapter(drizzle(env.DB), { provider: "sqlite" })
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.
- 4d ago First seen · 323 lines · 32 tokens per session scan A ab59e0868cec
better-auth-debugger is an agent published in the GitHub repository secondsky/claude-skills (214 stars, last pushed today), licensed MIT. It adds 32 tokens to every session and 1,728 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
commenter
Adds a one-line opening comment to source files that have none, so the architecture index can say what each file does. Reads and edits only the files it is given. Dispatched by /chamnan:bootstrap when coverage is low.
librarian
Health-checks the .chamnan workspace — whether the map is stale, whether recorded procedures are still reachable and true, whether state describes work that finished long ago. Read-only; reports, never fixes.
design-reviewer
Use this agent to review a proposed feature or solution against design values before implementation. Evaluates sophistication (depth of understanding), empowerment (serves the user), robustness (handles failure gracefully), ethics (manipulation, accessibility, privacy, sustainability), and explainability (can you…
project-context-loader
Use this agent when switching between projects (Iris, Rhea, Theia, etc.) to quickly rebuild context. Synthesizes recent git history, architectural decisions, current work state, and key patterns to minimize context-switching friction. Invoke with "What's the state of this project?" or "Catch me up on [project]".
implementation-planner
Use this agent when you need to break down a development request into a detailed, actionable implementation plan. Examples: Context: User wants to add a new feature to their project. user: 'I want to add user authentication to my web app' assistant: 'I'll use the implementation-planner agent to create a detailed plan…
slash-command-architect
Use proactively for designing, creating, reviewing, and improving Claude Code slash commands. Specialist for developing and validating robust, reusable slash commands that extend Claude Code's capabilities.