Development
Skill
/security-review
在添加身份验证、处理用户输入、操作机密信息、创建 API 接口或实现支付/敏感功能时使用此技能。提供全面的安全自查清单和模式。
Install
$ npx -y skills add xu-xiang/everything-claude-code-zh --skill security-review --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/security-review
Context preview
The summary Claude sees to decide when to auto-load this skill.
在添加身份验证、处理用户输入、操作机密信息、创建 API 接口或实现支付/敏感功能时使用此技能。提供全面的安全自查清单和模式。
SKILL.md
security-review.SKILL.mdname: security-review
description: 在添加身份验证、处理用户输入、操作机密信息、创建 API 接口或实现支付/敏感功能时使用此技能。提供全面的安全自查清单和模式。
origin: ECC
安全审查技能(Security Review Skill)
此技能(Skill)旨在确保所有代码遵循安全最佳实践,并识别潜在的漏洞。
何时启用
- 实现身份验证(Authentication)或授权(Authorization)时
- 处理用户输入或文件上传时
- 创建新的 API 接口(Endpoints)时
- 操作机密(Secrets)或凭据(Credentials)时
- 实现支付功能时
- 存储或传输敏感数据时
- 集成第三方 API 时
安全自查清单
1. 机密管理(Secrets Management)
❌ 严禁行为
const apiKey = "sk-proj-xxxxx" // 硬编码机密
const dbPassword = "password123" // 出现在源代码中
✅ 推荐做法
const apiKey = process.env.OPENAI_API_KEY
const dbUrl = process.env.DATABASE_URL
// 验证机密是否存在
if (!apiKey) {
throw new Error('未配置 OPENAI_API_KEY')
}验证步骤
- [ ] 无硬编码的 API 密钥、令牌(Tokens)或密码
- [ ] 所有机密均存储在环境变量中
- [ ] `.env.local` 已包含在 .gitignore 中
- [ ] Git 历史记录中不包含机密信息
- [ ] 生产环境机密配置在托管平台(如 Vercel, Railway)
2. 输入验证(Input Validation)
始终验证用户输入
import { z } from 'zod'
// 定义验证模式(Schema)
const CreateUserSchema = z.object({
email: z.string().email(),
name: z.string().min(1).max(100),
age: z.number().int().min(0).max(150)
})
// 在处理前进行验证
export async function createUser(input: unknown) {
try {
const validated = CreateUserSchema.parse(input)
return await db.users.create(validated)
} catch (error) {
if (error instanceof z.ZodError) {
return { success: false, errors: error.errors }
}
throw error
}
}文件上传验证
function validateFileUpload(file: File) {
// 大小检查(最大 5MB)
const maxSize = 5 * 1024 * 1024
if (file.size > maxSize) {
throw new Error('文件过大(最大 5MB)')
}
// 类型检查
const allowedTypes = ['image/jpeg', 'image/png', 'image/gif']
if (!allowedTypes.includes(file.type)) {
throw new Error('无效的文件类型')
}
// 扩展名检查
const allowedExtensions = ['.jpg', '.jpeg', '.png', '.gif']
const extension = file.name.toLowerCase().match(/\.[^.]+$/)?.[0]
if (!extension || !allowedExtensions.includes(extension)) {
throw new Error('无效的文件扩展名')
}
return true
}验证步骤
- [ ] 所有用户输入均通过模式(Schemas)验证
- [ ] 文件上传受到限制(大小、类型、扩展名)
- [ ] 查询中不直接使用用户输入
- [ ] 使用白名单验证(而非黑名单)
- [ ] 错误消息不泄露敏感信息
3. SQL 注入防护(SQL Injection Prevention)
❌ 严禁拼接 SQL
// 危险 - 存在 SQL 注入漏洞
const query = `SELECT * FROM users WHERE email = '${userEmail}'`
await db.query(query)✅ 始终使用参数化查询
// 安全 - 参数化查询
const { data } = await supabase
.from('users')
.select('*')
.eq('email', userEmail)
// 或使用原始 SQL
await db.query(
'SELECT * FROM users WHERE email = $1',
[userEmail]
)验证步骤
- [ ] 所有数据库查询均使用参数化查询
- [ ] SQL 中无字符串拼接
- [ ] 正确使用 ORM 或查询构建器(Query Builder)
- [ ] Supabase 查询已正确过滤
4. 身份验证与授权(Authentication & Authorization)
JWT 令牌处理
// ❌ 错误做法:存储在 localStorage 中(易受 XSS 攻击)
localStorage.setItem('token', token)
// ✅ 正确做法:使用 httpOnly cookies
res.setHeader('Set-Cookie',
`token=${token}; HttpOnly; Secure; SameSite=Strict; Max-Age=3600`)授权检查
export async function deleteUser(userId: string, requesterId: string) {
// 务必先验证授权
const requester = await db.users.findUnique({
where: { id: requesterId }
})
if (requester.role !== 'admin') {
return NextResponse.json(
{ error: 'Unauthorized' },
{ status: 403 }
)
}
// 执行删除操作
await db.users.delete({ where: { id: userId } })
}行级安全性(Supabase Row Level Security)
-- 在所有表上启用 RLS
ALTER TABLE users ENABLE ROW LEVEL SECURITY;
-- 用户只能查看自己的数据
CREATE POLICY "Users view own data"
ON users FOR SELECT
USING (auth.uid() = id);
-- 用户只能更新自己的数据
CREATE POLICY "Users update own data"
ON users FOR UPDATE
USING (auth.uid() = id);
验证步骤
- [ ] 令牌存储在 httpOnly cookies 中(而非 localStorage)
- [ ] 敏感操作前进行授权检查
- [ ] 在 Supabase 中启用了行级安全性(RLS)
- [ ] 实现了基于角色的访问控制(RBAC)
- [ ] 会话管理(Session Management)安全
5. XSS 防护(XSS Prevention)
清理 HTML
import DOMPurify from 'isomorphic-dompurify'
// 始终清理用户提供的 HTML
function renderUserContent(html: string) {
const clean = DOMPurify.sanitize(html, {
ALLOWED_TAGS: ['b', 'i', 'em', 'strong', 'p'],
ALLOWED_ATTR: []
})
return <div dangerouslySetInnerHTML={{ __html: clean }} />
}内容安全策略(Content Security Policy)
// next.config.js
const securityHeaders = [
{
key: 'Content-Security-Policy',
value: `
default-src 'self';
script-src 'self' 'unsafe-eval' 'unsafe-inline';
style-src 'self' 'unsafe-inline';
img-src 'self' data: https:;
font-src 'self';
connect-src 'self' https://api.example.com;
`.replace(/\s{2,}/g, ' ').trim()
}
]验证步骤
- [ ] 清理了用户提供的 HTML
- [ ] 配置了 CSP 响应头
- [ ] 无未经验证的动态内容渲染
- [ ] 使用了 React 内置的 XSS 防护机制
6. CSRF 防护(CSRF Protection)
CSRF 令牌(Tokens)
import { csrf } from '@/lib/csrf'
export async function POST(request: Request) {
const token = request.headers.get('X-CSRF-Token')
if (!csrf.verify(token)) {
return NextResponse.json(
{ error: 'Invalid CSRF token' },
{ status: 403 }
)
}
// 处理请求
}SameSite Cookies
res.setHeader('Set-Cookie',
`session=${sessionId}; HttpOnly; Secure; SameSite=Strict`)验证步骤
- [ ] 在状态变更操作中使用 CSRF 令牌
- [ ] 所有 Cookie 均设置 SameSite=Strict
- [ ] 实现了双重提交 Cookie 模式(Double-submit cookie pattern)
7. 速率限制(Rate Limiting)
API 速率限制
import rateLimit from 'express-rate-limit'
const limiter = rateLimit({
windowMs: 15 * 60 * 1000, // 15 分钟
max: 100, // 每个窗口期最大 100 次请求
message: '请求过于频繁'
})
// 应用于路由
app.use('/api/', limiter)高消耗操作
// 为搜索操作设置更严格的速率限制
const searchLimiter = rateLimit({
windowMs: 60 * 1000, // 1 分钟
max: 10, // 每分钟最大 10 次请求
message: '搜索请求过于频繁'
})
app.use('/api/search', searchLimiter)验证步骤
- [ ] 所有 API 接口均设置了速率限制
- [ ] 对高消耗操作设置了更严格的限制
- [ ] 基于 IP 的速率限制
- [ ] 基于用户的速率限制(已认证用户)
8. 敏感数据泄露(Sensitive Data Exposure)
日志记录
// ❌ 错误做法:记录敏感数据
console.log('User login:', { email, pRead more
name: security-review description: 在添加身份验证、处理用户输入、操作机密信息、创建 API 接口或实现支付/敏感功能时使用此技能。提供全面的安全自查清单和模式。 origin: ECC
安全审查技能(Security Review Skill)
此技能(Skill)旨在确保所有代码遵循安全最佳实践,并识别潜在的漏洞。
何时启用
- 实现身份验证(Authentication)或授权(Authorization)时
- 处理用户输入或文件上传时
- 创建新的 API 接口(Endpoints)时
- 操作机密(Secrets)或凭据(Credentials)时
- 实现支付功能时
- 存储或传输敏感数据时
- 集成第三方 API 时
安全自查清单
1. 机密管理(Secrets Management)
❌ 严禁行为
const apiKey = "sk-proj-xxxxx" // 硬编码机密 const dbPassword = "password123" // 出现在源代码中
✅ 推荐做法
const apiKey = process.env.OPENAI_API_KEY
const dbUrl = process.env.DATABASE_URL
// 验证机密是否存在
if (!apiKey) {
throw new Error('未配置 OPENAI_API_KEY')
}验证步骤
- [ ] 无硬编码的 API 密钥、令牌(Tokens)或密码
- [ ] 所有机密均存储在环境变量中
- [ ] `.env.local` 已包含在 .gitignore 中
- [ ] Git 历史记录中不包含机密信息
- [ ] 生产环境机密配置在托管平台(如 Vercel, Railway)
2. 输入验证(Input Validation)
始终验证用户输入
import { z } from 'zod'
// 定义验证模式(Schema)
const CreateUserSchema = z.object({
email: z.string().email(),
name: z.string().min(1).max(100),
age: z.number().int().min(0).max(150)
})
// 在处理前进行验证
export async function createUser(input: unknown) {
try {
const validated = CreateUserSchema.parse(input)
return await db.users.create(validated)
} catch (error) {
if (error instanceof z.ZodError) {
return { success: false, errors: error.errors }
}
throw error
}
}文件上传验证
function validateFileUpload(file: File) {
// 大小检查(最大 5MB)
const maxSize = 5 * 1024 * 1024
if (file.size > maxSize) {
throw new Error('文件过大(最大 5MB)')
}
// 类型检查
const allowedTypes = ['image/jpeg', 'image/png', 'image/gif']
if (!allowedTypes.includes(file.type)) {
throw new Error('无效的文件类型')
}
// 扩展名检查
const allowedExtensions = ['.jpg', '.jpeg', '.png', '.gif']
const extension = file.name.toLowerCase().match(/\.[^.]+$/)?.[0]
if (!extension || !allowedExtensions.includes(extension)) {
throw new Error('无效的文件扩展名')
}
return true
}验证步骤
- [ ] 所有用户输入均通过模式(Schemas)验证
- [ ] 文件上传受到限制(大小、类型、扩展名)
- [ ] 查询中不直接使用用户输入
- [ ] 使用白名单验证(而非黑名单)
- [ ] 错误消息不泄露敏感信息
3. SQL 注入防护(SQL Injection Prevention)
❌ 严禁拼接 SQL
// 危险 - 存在 SQL 注入漏洞
const query = `SELECT * FROM users WHERE email = '${userEmail}'`
await db.query(query)✅ 始终使用参数化查询
// 安全 - 参数化查询
const { data } = await supabase
.from('users')
.select('*')
.eq('email', userEmail)
// 或使用原始 SQL
await db.query(
'SELECT * FROM users WHERE email = $1',
[userEmail]
)验证步骤
- [ ] 所有数据库查询均使用参数化查询
- [ ] SQL 中无字符串拼接
- [ ] 正确使用 ORM 或查询构建器(Query Builder)
- [ ] Supabase 查询已正确过滤
4. 身份验证与授权(Authentication & Authorization)
JWT 令牌处理
// ❌ 错误做法:存储在 localStorage 中(易受 XSS 攻击)
localStorage.setItem('token', token)
// ✅ 正确做法:使用 httpOnly cookies
res.setHeader('Set-Cookie',
`token=${token}; HttpOnly; Secure; SameSite=Strict; Max-Age=3600`)授权检查
export async function deleteUser(userId: string, requesterId: string) {
// 务必先验证授权
const requester = await db.users.findUnique({
where: { id: requesterId }
})
if (requester.role !== 'admin') {
return NextResponse.json(
{ error: 'Unauthorized' },
{ status: 403 }
)
}
// 执行删除操作
await db.users.delete({ where: { id: userId } })
}行级安全性(Supabase Row Level Security)
-- 在所有表上启用 RLS ALTER TABLE users ENABLE ROW LEVEL SECURITY; -- 用户只能查看自己的数据 CREATE POLICY "Users view own data" ON users FOR SELECT USING (auth.uid() = id); -- 用户只能更新自己的数据 CREATE POLICY "Users update own data" ON users FOR UPDATE USING (auth.uid() = id);
验证步骤
- [ ] 令牌存储在 httpOnly cookies 中(而非 localStorage)
- [ ] 敏感操作前进行授权检查
- [ ] 在 Supabase 中启用了行级安全性(RLS)
- [ ] 实现了基于角色的访问控制(RBAC)
- [ ] 会话管理(Session Management)安全
5. XSS 防护(XSS Prevention)
清理 HTML
import DOMPurify from 'isomorphic-dompurify'
// 始终清理用户提供的 HTML
function renderUserContent(html: string) {
const clean = DOMPurify.sanitize(html, {
ALLOWED_TAGS: ['b', 'i', 'em', 'strong', 'p'],
ALLOWED_ATTR: []
})
return <div dangerouslySetInnerHTML={{ __html: clean }} />
}内容安全策略(Content Security Policy)
// next.config.js
const securityHeaders = [
{
key: 'Content-Security-Policy',
value: `
default-src 'self';
script-src 'self' 'unsafe-eval' 'unsafe-inline';
style-src 'self' 'unsafe-inline';
img-src 'self' data: https:;
font-src 'self';
connect-src 'self' https://api.example.com;
`.replace(/\s{2,}/g, ' ').trim()
}
]验证步骤
- [ ] 清理了用户提供的 HTML
- [ ] 配置了 CSP 响应头
- [ ] 无未经验证的动态内容渲染
- [ ] 使用了 React 内置的 XSS 防护机制
6. CSRF 防护(CSRF Protection)
CSRF 令牌(Tokens)
import { csrf } from '@/lib/csrf'
export async function POST(request: Request) {
const token = request.headers.get('X-CSRF-Token')
if (!csrf.verify(token)) {
return NextResponse.json(
{ error: 'Invalid CSRF token' },
{ status: 403 }
)
}
// 处理请求
}SameSite Cookies
res.setHeader('Set-Cookie',
`session=${sessionId}; HttpOnly; Secure; SameSite=Strict`)验证步骤
- [ ] 在状态变更操作中使用 CSRF 令牌
- [ ] 所有 Cookie 均设置 SameSite=Strict
- [ ] 实现了双重提交 Cookie 模式(Double-submit cookie pattern)
7. 速率限制(Rate Limiting)
API 速率限制
import rateLimit from 'express-rate-limit'
const limiter = rateLimit({
windowMs: 15 * 60 * 1000, // 15 分钟
max: 100, // 每个窗口期最大 100 次请求
message: '请求过于频繁'
})
// 应用于路由
app.use('/api/', limiter)高消耗操作
// 为搜索操作设置更严格的速率限制
const searchLimiter = rateLimit({
windowMs: 60 * 1000, // 1 分钟
max: 10, // 每分钟最大 10 次请求
message: '搜索请求过于频繁'
})
app.use('/api/search', searchLimiter)验证步骤
- [ ] 所有 API 接口均设置了速率限制
- [ ] 对高消耗操作设置了更严格的限制
- [ ] 基于 IP 的速率限制
- [ ] 基于用户的速率限制(已认证用户)
8. 敏感数据泄露(Sensitive Data Exposure)
日志记录
// ❌ 错误做法:记录敏感数据
console.log('User login:', { email, p Ships witheverything-claude-code
🌐 Language / 语言 / 語言 为 AI 智能体(Agent)框架打造的性能优化系统。源自 Anthropic 黑客松获胜作品。 这不仅仅是配置文件。它是一个完整的系统:包含技能(Skills)、本能(Instincts)、内存优化、持续学习、安全扫描以及研究优先的开发模式。这些生产级的智能体(Agents)、钩子(Hooks)、命令(Commands)、规则(Rules)以及 MCP 配置,是在构建真实产品的 10 个多月高强度日常使用中演化而来的。 适用于 Claude Code, Codex,
Get the whole plugin
Stats
1,945
Stars
317
Forks
Quiet
Maintenance
JavaScript
Language
MIT
License
6mo ago
Last commit
7mo ago
Created
Repo: xu-xiang/everything-claude-code-zh
Other skills on everything-claude-code.
Skill
Skill
Skill
article-writing
编写文章、指南、博客帖子、教程、新闻通讯(newsletter)以及其他长篇内容。这些内容具有从提供的示例或品牌指南中提取出的独特语气。当用户需要比段落更长的精美文案,且对语气一致性、结构和可信度有要求时,请使用此技能(Skill)。
Skill
Skill
backend-patterns
后端架构模式、API 设计、数据库优化以及针对 Node.js、Express 和 Next.js API 路由的服务端最佳实践。
Skill

