用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vulk-corp/production-audit --skill audit-secrets命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | audit-secrets |
| description | Audit for exposed secrets, open databases, and data over-exposure in client-side code. |
Audit this project for data leaks. Check the following in order of severity.
SECRETS IN CLIENT CODE Search every file served to the browser for hardcoded API keys, passwords, database URLs, or tokens. Look for: OpenAI keys (sk-...), Supabase keys, Stripe keys, Firebase credentials, .env values pasted directly into code. Check if secrets are loaded from env vars or hardcoded.
DATABASE SECURITY Check database configuration. If Supabase, check if Row Level Security (RLS) is enabled on every table. If RLS is off, anyone with the URL and anon key can read and write all data. If Firebase, check Firestore/RTDB security rules. Flag any table or collection where unauthenticated users can read or write.
DATA OVER-EXPOSURE Check every API call and database query that returns data to the browser:
For each finding, report:
Sort by severity, then by how fast it could hurt you.
IMPORTANT: This is an audit only. Do NOT modify any code. Report what you find and suggest fixes, but do not apply any changes until I explicitly ask you to.