Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:1
forks:0
updated:2026년 4월 8일 16:04
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: