بنقرة واحدة
code-review
Comprehensive code review focusing on quality, security, and best practices
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Comprehensive code review focusing on quality, security, and best practices
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Display interactive HTML content, visualizations, dashboards, or games on connected OpenClaw nodes (Mac, iOS, Android). Supports live reloading, remote navigation, JS execution, and canvas snapshots for development, testing, and presentation scenarios.
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.
Execute shell commands and scripts on the user's local machine.
多模态 AI 图片理解工具。将图片发送给支持 vision 的 LLM 模型,获取图片的语义理解和详细描述。可分析截图、设计稿、图表、报错信息等。
Unified memory search and management system for retrieving, storing, and organizing information across daily logs, persistent memory, SOPs, and execution traces. Use this skill to recall past events, manage knowledge bases, update important notes, or filter historical data by tags and time ranges.
智能 OCR 文字提取工具。从图片中识别文字,支持中英文混排、图像预处理(灰度化+二值化提升识别率)、表格结构还原为 Markdown 格式。
| name | code-review |
| description | Comprehensive code review focusing on quality, security, and best practices |
| version | 1.0.0 |
| author | DunCrew Team |
| metadata | {"openclaw":{"emoji":"🔧","primaryEnv":"shell"}} |
| tags | ["review","code","quality","security","best-practices"] |
| inputs | {"target":{"type":"string","required":false,"description":"File, directory, or git diff to review"},"focus":{"type":"array","required":false,"description":"Review focus areas (security, performance, style, logic)"},"strict":{"type":"boolean","required":false,"description":"Enable strict mode for more thorough review"}} |
Perform comprehensive code review focusing on correctness, security, performance, and adherence to best practices. Identify bugs, vulnerabilities, and improvement opportunities.
Identify Review Target
target is specified, focus on that file/directorygit diff HEAD~1Security Analysis Check for common vulnerabilities:
Search patterns:
- eval(, exec(, shell=True
- password, secret, api_key (hardcoded)
- innerHTML, dangerouslySetInnerHTML
- SQL string concatenation
Logic & Correctness
Performance Review
Code Style & Maintainability
Testing Impact
Generate Review Report Format findings as:
## Code Review Summary
### Critical Issues 🔴
- [File:Line] Issue description
### Warnings ⚠️
- [File:Line] Issue description
### Suggestions 💡
- [File:Line] Improvement suggestion
### Positive Notes ✅
- Good practices observed
Security Issue Found:
🔴 CRITICAL: SQL Injection vulnerability
File: src/api/users.js:45
Code: `SELECT * FROM users WHERE id = ${userId}`
Fix: Use parameterized queries
Performance Issue:
⚠️ WARNING: N+1 query pattern
File: src/services/orders.js:23
Issue: Fetching related items in a loop
Fix: Use batch query or eager loading