Ejecuta cualquier Skill en Manus
con un clic
con un clic
Ejecuta cualquier Skill en Manus con un clic
Comenzar$pwd:
$ git log --oneline --stat
stars:254
forks:163
updated:28 de marzo de 2026, 03:22
SKILL.md
Five-axis code review for comprehensive quality assessment
Build features in thin vertical slices with continuous verification
Write tests before code using RED-GREEN-REFACTOR cycle
Skill to automate the full deployment process including build, test, and release steps
| name | security-review |
| description | Skill to perform a thorough security audit of the codebase |
Systematically scan the codebase for security vulnerabilities and produce a prioritized report.
grep -r "password\s*=\s*['\"]" src/
grep -r "api_key\s*=\s*['\"]" src/
.env files accidentally committed
git log --all --full-history -- .env
eval() or new Function() with user inputorigin: *)npm audit
# Security Review Report — [Date]
## Critical Issues
[List with file:line references]
## High Priority Issues
[List with file:line references]
## Recommendations
[Prioritized action items]
# 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/