在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用code-review
星标4
分支0
更新时间2026年1月21日 00:11
Security-focused code review before committing
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Security-focused code review before committing
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Apply security fixes based on scan findings
Run ASH (Automated Security Helper) security scan with delta detection
Pre-commit self-validation for code quality and security
| name | code-review |
| description | Security-focused code review before committing |
| allowed-tools | Read, Grep, Glob |
Review code changes for security issues before committing.
This skill performs a security-focused code review to catch common vulnerabilities before they make it into the codebase. Run this before committing to self-check your changes.
When reviewing code, check for:
/code-review
Run this skill before committing to perform a self-check on your changes.
The skill will:
git diff[HIGH] src/api.py:42 - Hardcoded API key detected
→ Move to environment variable: os.getenv('API_KEY')
[MEDIUM] src/db.py:15 - SQL query uses string formatting
→ Use parameterized query: cursor.execute("SELECT * FROM users WHERE id = ?", (user_id,))
[LOW] src/utils.py:8 - Debug print statement
→ Remove before committing