← スキル一覧に戻る

security-review
by bselee
Basic MRP development
⭐ 0🍴 0📅 2026年1月23日
SKILL.md
name: security-review description: Security audit for vulnerabilities, compliance issues, and sensitive data exposure. Use before production deployments or when reviewing security-sensitive code. allowed-tools: Read, Grep, Glob, Bash
Security Review
Comprehensive security audit for the MuRP codebase.
Security Checklist
Authentication & Authorization
- No hardcoded credentials
- API keys only in environment variables
- Proper token handling
- RLS policies on Supabase tables
Data Protection
- No sensitive data in logs
- PII properly handled
- Encryption for sensitive fields
- Input sanitization
API Security
- SQL injection prevention (parameterized queries)
- XSS protection
- CSRF tokens where needed
- Rate limiting configured
Dependencies
- Run
npm audit - Check for known vulnerabilities
- Verify dependency integrity
Infrastructure
- Environment variables not exposed to frontend
- Edge functions use proper auth
- Webhook endpoints validated
Scan Commands
# Check for hardcoded secrets
grep -r "sk_" --include="*.ts" --include="*.tsx" .
grep -r "password.*=" --include="*.ts" --include="*.tsx" .
# Check npm vulnerabilities
npm audit
# Check for console.log with sensitive data
grep -r "console.log.*token\|password\|secret" --include="*.ts" .
Report Format
| Severity | File | Issue | Remediation |
|---|---|---|---|
| Critical | path | desc | fix |
Trigger Phrases
- "security review"
- "security audit"
- "check for vulnerabilities"
- "/security-review"
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です