Security Review Skill

SkillSecurity

Skill to perform a thorough security audit of the codebase

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Security Review Skill skill

What this skill tells your AI

The instructions your AI receives, as published by fdhhhdjd/class-ai-agent in .claude/skills/security-review/SKILL.md and read by ahel’s review.

Purpose

Systematically scan the codebase for security vulnerabilities and produce a prioritized report.

Checklist

🔴 Critical (Check First)

  • Hardcoded secrets, API keys, passwords in source files
    grep -r "password\s*=\s*['\"]" src/
    grep -r "api_key\s*=\s*['\"]" src/
    
  • .env files accidentally committed
    git log --all --full-history -- .env
    
  • SQL injection via string concatenation
  • eval() or new Function() with user input

🟡 High Priority

  • Missing authentication on protected routes
  • Missing authorization (privilege escalation)
  • Passwords stored in plain text
  • JWT secrets too short or exposed
  • No rate limiting on auth endpoints
  • Missing input validation

🟢 Medium Priority

  • Missing security headers (run Helmet scan)
  • CORS configured too broadly (origin: *)
  • Dependencies with known vulnerabilities
    npm audit
    
  • Sensitive data in logs
  • Missing HTTPS enforcement

ℹ️ Low / Informational

  • Error messages revealing stack traces to client
  • Missing CSP headers
  • Cookie security flags (HttpOnly, Secure, SameSite)

Output Format

# Security Review Report — [Date]

## Critical Issues
[List with file:line references]

## High Priority Issues
[List with file:line references]

## Recommendations
[Prioritized action items]

Commands

# Dependency audit
npm audit --audit-level=moderate

# Check for secret patterns
grep -rn --include="*.js" --include="*.ts" \
  -E "(password|secret|api_key|token)\s*=\s*['\"][^'\"]{8,}" src/

Signals

GitHub stars
264
Forks
166
Last commit
Apr 2026
Advanced
Catalog kind
skill
Gateway key
security-review-fdhhhdjd
Source
github.com/fdhhhdjd/class-ai-agent