تشغيل أي مهارة في Manus
بنقرة واحدة
بنقرة واحدة
تشغيل أي مهارة في Manus بنقرة واحدة
ابدأ الآن$pwd:
$ git log --oneline --stat
stars:1
forks:0
updated:٨ أبريل ٢٠٢٦ في ١٦:٠٤
SKILL.md
[HINT] تحميل مجلد المهارة الكامل بما في ذلك SKILL.md وجميع الملفات المرتبطة
| name | code-review |
| description | Code review guidelines and quality standards |
| tags | ["code-quality","review"] |
Standards for reviewing code across all projects.
| Issue | Example | Fix |
|---|---|---|
| Unclear names | x = y + z | totalPrice = itemCost + tax |
| Deep nesting | 5+ levels of if | Extract functions, use guards |
| Magic numbers | if (age > 18) | const ADULT_AGE = 18 |
| Long functions | 100+ line function | Break into smaller functions |
| Missing tests | Critical logic without tests | Add comprehensive tests |
Approve when:
Request changes when: