一键导入
code-review
BoxLang code review guidelines. Load this skill when asked to review, audit, or critique code for correctness, style, or best practices.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
BoxLang code review guidelines. Load this skill when asked to review, audit, or critique code for correctness, style, or best practices.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Data science methodology — EDA, feature engineering, model selection, evaluation metrics, and production ML patterns.
Financial analysis expertise — ratio analysis, valuation, risk assessment, budgeting, forecasting, and investment evaluation frameworks.
Deep BoxLang language expertise. Inject this skill whenever the user asks about BoxLang syntax, modules, BIFs, or runtime behaviour.
Security review for BoxLang and web applications. Load this skill when asked to review code for vulnerabilities, injection risks, or insecure patterns.
| name | code-review |
| description | BoxLang code review guidelines. Load this skill when asked to review, audit, or critique code for correctness, style, or best practices. |
When reviewing BoxLang code, check for the following in order of priority:
var; only use var inside functions.?.) is used when properties may be absent.a + b, fn( a, b ).aiChat( prompt: msg, params: { model: "..." } ).->) for simple one-liners and closures (=>) when outer scope is needed.aiChat() calls inside loops — batch or pipeline where possible.runAsync() for work that can be non-blocking.Structure every code review as:
**Summary**: One-sentence verdict.
**Issues** (numbered list, most critical first):
1. ...
**Suggestions** (optional improvements):
- ...