# Send Batter Auth Complete Documentation to your agent
Use the source page and any available docs to guide the install because the item is currently unstable or timing out.
## Fast path
- Open the source page via Review source status.
- If you can obtain the package, extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the source page and extracted files.
## Suggested prompts
### New install

```text
I tried to install a skill package from Yavira, but the item is currently unstable or timing out. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.
```
### Upgrade existing

```text
I tried to upgrade a skill package from Yavira, but the item is currently unstable or timing out. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lb-better-auth-skill",
    "name": "Batter Auth Complete Documentation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/leonaaardob/lb-better-auth-skill",
    "canonicalUrl": "https://clawhub.ai/leonaaardob/lb-better-auth-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lb-better-auth-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lb-better-auth-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/comparison.mdx",
      "references/basic-usage.mdx",
      "references/introduction.mdx",
      "references/installation.mdx"
    ],
    "downloadMode": "manual_only",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lb-better-auth-skill",
      "status": "unstable",
      "reason": "timeout",
      "recommendedAction": "retry_later",
      "checkedAt": "2026-04-30T10:57:45.941Z",
      "expiresAt": "2026-04-30T22:57:45.941Z",
      "httpStatus": null,
      "finalUrl": null,
      "contentType": null,
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lb-better-auth-skill",
        "error": "Timed out after 5000ms",
        "slug": "lb-better-auth-skill"
      },
      "scope": "item",
      "summary": "Item is unstable.",
      "detail": "This item is timing out or returning errors right now. Review the source page and try again later.",
      "primaryActionLabel": "Review source status",
      "primaryActionHref": "https://clawhub.ai/leonaaardob/lb-better-auth-skill"
    },
    "validation": {
      "installChecklist": [
        "Wait for the source to recover or retry later.",
        "Review SKILL.md only after the download returns a real package.",
        "Treat this source as transient until the upstream errors clear."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lb-better-auth-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/lb-better-auth-skill",
    "agentUrl": "https://openagent3.xyz/skills/lb-better-auth-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lb-better-auth-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lb-better-auth-skill/agent.md"
  }
}
```
## Documentation

### Better Auth Documentation

Complete Better Auth documentation embedded in markdown. Read from references/ to answer questions about authentication implementation, OAuth setup, database configuration, and framework integration.

### Documentation Structure

All documentation is in references/ organized by topic:

### Core Documentation

Getting Started

references/introduction.mdx - What is Better Auth
references/installation.mdx - Setup guide
references/basic-usage.mdx - Authentication basics
references/comparison.mdx - vs other auth libraries

Authentication Methods (references/authentication/)

OAuth providers and authentication strategies:

google.mdx - Google OAuth
github.mdx - GitHub OAuth
microsoft.mdx - Microsoft/Azure AD
apple.mdx - Apple Sign In
discord.mdx, facebook.mdx, twitter.mdx, etc.
email-password.mdx - Email & password auth
magic-link.mdx - Passwordless magic links
passkey.mdx - WebAuthn passkeys

Database Adapters (references/adapters/)

prisma.mdx - Prisma ORM
drizzle.mdx - Drizzle ORM
kysely.mdx - Kysely
mongodb.mdx - MongoDB
pg.mdx - node-postgres

Concepts (references/concepts/)

Core authentication concepts:

session.mdx - Session management
oauth.mdx - OAuth flow
database.mdx - Database schema
rate-limit.mdx - Rate limiting
middleware.mdx - Auth middleware
cookies.mdx - Cookie handling

Plugins (references/plugins/)

Extension features:

two-factor.mdx - 2FA/TOTP
passkey.mdx - WebAuthn/passkeys
email-verification.mdx - Email verification
magic-link.mdx - Magic link auth
organization.mdx - Organizations & teams
multi-session.mdx - Multiple sessions
anonymous.mdx - Anonymous users

Integrations (references/integrations/)

Framework-specific guides:

next-js.mdx - Next.js integration
sveltekit.mdx - SvelteKit
astro.mdx - Astro
solid-start.mdx - SolidStart

Examples (references/examples/)

Working examples:

next-js.mdx - Complete Next.js example
sveltekit.mdx - SvelteKit example

Guides (references/guides/)

How-to guides:

custom-session.mdx - Custom session handling
testing.mdx - Testing auth flows
deployment.mdx - Production deployment

API Reference (references/reference/)

Complete API documentation.

### Common Tasks

TaskFile to ReadInitial setupreferences/installation.mdxEmail & password authreferences/authentication/email-password.mdxGoogle OAuthreferences/authentication/google.mdxGitHub OAuthreferences/authentication/github.mdxSetup with Prismareferences/adapters/prisma.mdxSetup with Drizzlereferences/adapters/drizzle.mdxSession managementreferences/concepts/session.mdxAdd 2FAreferences/plugins/two-factor.mdxAdd passkeysreferences/plugins/passkey.mdxNext.js integrationreferences/integrations/next-js.mdxOrganizations/teamsreferences/plugins/organization.mdxRate limitingreferences/concepts/rate-limit.mdx

### When to Use This Skill

Implementing authentication in a TypeScript project
Setting up OAuth providers (Google, GitHub, Microsoft, etc.)
Configuring database adapters (Prisma, Drizzle, etc.)
Adding 2FA, passkeys, or magic links
Managing sessions and cookies
Integrating with Next.js, SvelteKit, or other frameworks
Questions about auth patterns and best practices

### How to Navigate

Start with references/introduction.mdx for overview
For setup: Read references/installation.mdx
For auth methods: Browse references/authentication/
For database: Check references/adapters/
For advanced features: See references/plugins/
For framework integration: Use references/integrations/

All files are .mdx (Markdown + JSX) but readable as plain markdown.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: leonaaardob
- Version: 1.4.18
## Source health
- Status: unstable
- Item is unstable.
- This item is timing out or returning errors right now. Review the source page and try again later.
- Health scope: item
- Reason: timeout
- Checked at: 2026-04-30T10:57:45.941Z
- Expires at: 2026-04-30T22:57:45.941Z
- Recommended action: Review source status
## Links
- [Detail page](https://openagent3.xyz/skills/lb-better-auth-skill)
- [Send to Agent page](https://openagent3.xyz/skills/lb-better-auth-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/lb-better-auth-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lb-better-auth-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/lb-better-auth-skill)