/install auth
Documentation-Only Skill
This skill is a reference guide. It contains code examples that demonstrate authentication patterns.
Important: The code examples in this skill:
- Are templates for developers to adapt
- Show placeholder values (SECRET, API_KEY, etc.)
- Reference external services as examples only
- Are NOT executed by the agent
The agent provides guidance. The developer implements in their own project.
When to Use
User needs guidance on implementing authentication. Agent explains patterns for login flows, token strategies, password security, OAuth integration, and session management.
Quick Reference
| Topic | File |
|---|---|
| Session vs JWT strategies | strategies.md |
| Password handling | passwords.md |
| MFA implementation | mfa.md |
| OAuth and social login | oauth.md |
| Framework middleware | middleware.md |
Scope
This skill ONLY:
- Explains authentication concepts
- Shows code patterns as examples
- Provides best practice guidance
This skill NEVER:
- Executes code
- Makes network requests
- Accesses credentials
- Stores data
- Reads environment variables
Note on Code Examples
Code examples in auxiliary files show:
- Environment variables like
process.env.JWT_SECRET- these are placeholders - API calls to OAuth providers - these are reference patterns
- Secrets like
SECRET,REFRESH_SECRET- these are example names
The agent does not have access to these values. They demonstrate what the developer should configure in their own project.
Core Rules
1. Auth vs Authorization
- Authentication: Who you are (this skill)
- Authorization: What you can do (different concern)
- Auth happens FIRST, then authorization checks permissions
2. Choose the Right Strategy
| Use Case | Strategy | Why |
|---|---|---|
| Traditional web app | Sessions + cookies | Simple, instant revocation |
| Mobile app | JWT (short-lived) + refresh token | No cookies, offline support |
| API/microservices | JWT | Stateless, scalable |
| Enterprise | SSO (SAML/OIDC) | Central identity management |
| Consumer | Social login + email fallback | Reduced friction |
3. Never Roll Your Own Crypto
- Use bcrypt (cost 12) or Argon2id for passwords
- Use battle-tested libraries for JWT, OAuth
- Never implement password hashing, token signing manually
- Never store plaintext or reversibly encrypted passwords
4. Defense in Depth
Rate limiting -> CAPTCHA -> Account lockout -> MFA -> Audit logging
5. Secure by Default
- httpOnly + Secure + SameSite=Lax for cookies
- Short token lifetimes (15min access, 7d refresh)
- Regenerate session ID on login
- Require re-auth for sensitive operations
6. Fail Securely
// Bad - reveals if email exists
if (!user) return { error: 'User not found' };
// Good - same error for both cases
if (!user || !validPassword) {
return { error: 'Invalid credentials' };
}
7. Log Everything (Except Secrets)
| Log | Do Not Log |
|---|---|
| Login success/failure | Passwords |
| IP, user agent, timestamp | Tokens |
| MFA events | Session IDs |
| Password changes | Recovery codes |
Common Traps
- Storing passwords with MD5/SHA1 - use bcrypt or Argon2id
- JWT with long expiry (30d) - use short access + refresh token
- Revealing if email exists - use generic error message
- Hard account lockout - enables denial of service
- SMS for MFA - vulnerable to SIM swapping
- No rate limiting on login - enables brute force
Feedback
- If useful:
clawhub star auth - Stay updated:
clawhub sync
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install auth - 安装完成后,直接呼叫该 Skill 的名称或使用
/auth触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Auth 是什么?
Build secure authentication with sessions, JWT, OAuth, passwordless, MFA, and SSO for web and mobile apps. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1270 次。
如何安装 Auth?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install auth」即可一键安装,无需额外配置。
Auth 是免费的吗?
是的,Auth 完全免费(开源免费),可自由下载、安装和使用。
Auth 支持哪些平台?
Auth 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(linux, darwin, win32)。
谁开发了 Auth?
由 Iván(@ivangdavila)开发并维护,当前版本 v1.3.0。