Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

lucia-auth露西娅·奥思

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

717

周安装

29

GitHub Stars

公开资料未说明

下载量

225
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:lucia-auth(露西娅·奥思)
来源仓库:https://github.com/ameistad/agent-skills
仓库路径:skills/lucia-auth
安装命令:
npx skills add https://github.com/ameistad/agent-skills --skill lucia-auth
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ameistad/agent-skills --skill lucia-auth

简介

lucia-auth 用于辅助安全审计、权限检查和认证流程分析,适合梳理敏感配置和鉴权逻辑。

  • 适用于需要检查凭据风险、依赖安全或生成安全复核清单的开发场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认最小权限和操作边界。
  • 使用时不能将输出直接当作最终结论,涉及密钥或生产系统时应先脱敏并验证操作合法性。
  • lucia-auth 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Lucia Auth

Implements secure, production-oriented authentication using the patterns from Lucia Auth and The Copenhagen Book.

Overview

For browser-based web apps, treat auth as a system instead of a pair of login routes. If a user asks to "add auth" and does not explicitly ask for a toy example, ship a production baseline by default.

Production Baseline For Web Apps

When the repo does not already provide equivalents, the default baseline is:

  1. Email/password sign up, sign in, and sign out
  2. Server-side sessions in HttpOnly, Secure, SameSite cookies
  3. Email verification plus resend flow
  4. Password reset flow
  5. Rate limiting on every auth and email-sending endpoint
  6. CSRF protection or strict Origin validation on every state-changing route
  7. Session invalidation on password change, email verification/change, and permission changes
  8. Re-authentication ("sudo mode") for sensitive actions such as changing password/email, deleting account, disabling MFA, or viewing API keys
  9. Safe post-auth redirects with open-redirect protection
  10. Optional OAuth, TOTP, or WebAuthn layered on top as requested

Do not default to JWTs in localStorage for a normal web app. Prefer server-side sessions unless the architecture clearly requires stateless tokens.

Required Reference Reads

For any browser-based web auth task, always read these first:

  • references/copenhagen-book/password-authentication.md
  • references/copenhagen-book/sessions.md
  • references/copenhagen-book/csrf.md
  • references/copenhagen-book/email-verification.md
  • references/copenhagen-book/password-reset.md
  • references/copenhagen-book/open-redirect.md
  • references/lucia/sessions-basic.md
  • references/lucia/sessions-inactivity-timeout.md
  • references/lucia/rate-limit-token-bucket.md

Read these when relevant:

  • OAuth: references/copenhagen-book/oauth.md, then references/lucia/tutorial-github-oauth.md or references/lucia/tutorial-google-oauth.md
  • MFA: references/copenhagen-book/mfa.md
  • WebAuthn / passkeys: references/copenhagen-book/webauthn.md, then references/lucia/example-email-password-2fa-webauthn.md
  • Session tradeoffs: references/lucia/sessions-overview.md, references/lucia/sessions-stateless-tokens.md

Implementation Workflow

  1. Inspect the repo for existing auth, user, email, session, middleware, and database patterns.
  2. Decide the auth surface area. For a standard web app, default to the production baseline above.
  3. Create or update the auth schema first. At minimum: user, session, email_verification, and password_reset. Add oauth_account, user_totp, user_recovery_code, or WebAuthn tables only when needed.
  4. Implement secure primitives next. Password hashing, session issuance/validation, CSRF/origin checks, rate limiting, token generation, and redirect validation.
  5. Wire complete user flows. Registration, login, logout, verify email, resend verification, forgot password, reset password, change password, and revoke sessions.
  6. Add sensitive-action re-auth. Changing email/password, account deletion, disabling MFA, or security settings should require a fresh session or a new credential challenge.
  7. Verify behavior. Confirm cookie flags, rate limits, invalidation behavior, expired-token handling, and unhappy paths.

Security Rules

Passwords

  • Hash passwords with Argon2id. Scrypt is an acceptable fallback, bcrypt only for legacy constraints.
  • Minimum length is 8 characters. Do not set a low maximum; 64-256 is a reasonable bound.
  • Do not silently trim, normalize, or truncate passwords.
  • Allow copy/paste and password managers.
  • Check leaked passwords with haveibeenpwned when practical.
  • Recommend MFA for security-sensitive apps and require it when the app meaningfully needs it.

Emails

  • Normalize emails to lowercase before storing or comparing.
  • Keep validation simple to avoid ReDoS.
  • Do not silently remove +tag segments.
  • If email is used for identity recovery, implement verification before treating it as trusted.

Sessions

  • Create a brand new session on login. Never reuse a pre-auth or anonymous session after authentication.
  • Store a hash of the session secret, not the raw secret.
  • Prefer idle expiration plus an absolute lifetime.
  • Track session freshness for re-auth flows.
  • Invalidate all sessions when credentials or privileges change.
  • Never accept session tokens through URLs.

Cookies

  • Use HttpOnly, Secure, Path=/, and SameSite=Lax by default.
  • Use SameSite=Strict only when the UX tradeoff is acceptable.
  • Refresh long-lived cookies when the server refreshes the session inactivity window.

CSRF

  • Do not mutate state with GET.
  • Check Origin on all non-GET browser requests and reject when missing or untrusted.
  • For form-heavy apps, add CSRF tokens as a second layer.
  • Keep CORS strict so CSRF tokens cannot be harvested cross-origin.

OAuth / OIDC

  • Use Authorization Code + PKCE.
  • Verify state and the code verifier on callback.
  • Prefer client_secret_basic when the provider supports it.
  • Link accounts by provider subject first, and only auto-link by email when the provider explicitly marks the email as verified.
  • Sanitize any post-login returnTo or redirect_to value to same-origin paths only.

Verification And Reset Tokens

  • Use high-entropy random tokens for links.
  • Hash link tokens before storage with SHA-256.
  • Keep tokens single-use and expire them automatically.
  • Put token-bearing pages behind Referrer-Policy: strict-origin.
  • Email-sending endpoints must be strictly rate limited.

Template Map

Use these assets as starting points and adapt them to the framework and ORM already in the repo:

  • Password hashing and password policy: assets/password-utils.ts
  • Session issuance, validation, inactivity timeout, and fresh-session helpers: assets/session-manager.ts
  • Core SQL schema: assets/session-schema.sql
  • Email verification links and codes: assets/email-verification.ts
  • Password reset flow: assets/password-reset.ts
  • OAuth + PKCE flow helpers: assets/oauth-handler.ts
  • CSRF and origin validation helpers: assets/csrf-protection.ts
  • Token bucket rate limiting: assets/rate-limit.ts
  • TOTP MFA and recovery codes: assets/totp-mfa.ts

When To Escalate Beyond The Baseline

Add WebAuthn or passkeys when:

  • The user explicitly asks for passkeys or WebAuthn
  • The product is security-sensitive
  • The app wants phishing-resistant MFA

Add OAuth when:

  • The product already uses external identity providers
  • The user explicitly asks for social login
  • The app benefits from lower signup friction

Use stateless tokens only when:

  • The app is an API-first system that cannot rely on same-origin cookies, or
  • There is a clear multi-service architecture reason

Output Expectations

When using this skill, the final answer should make it clear:

  1. Which auth flows were implemented
  2. Which security controls were included by default
  3. Any remaining assumptions or provider-specific configuration the user must supply
  4. What was verified locally and what still needs integration testing

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.94%
按下载量换算79

Claude

30.75%
按下载量换算69

Cursor

16.27%
按下载量换算37

Gemini CLI

8.78%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills