スキル一覧に戻る
rcmiller01

code-review

by rcmiller01

0🍴 0📅 2026年1月15日
GitHubで見るManusで実行

SKILL.md


name: code-review description: Review code for quality, security, and correctness with severity-based feedback

Code Review Skill

Review code and artifacts for quality, security, performance, and correctness.

When to Use

  • Reviewing code before merge
  • Security audit of implementation
  • Performance review
  • Checking code quality and best practices

Input Format

Review Type: [code | security | performance | general]
Code:
```[language]
[Your code here]

Context: [Optional - what this code does, requirements]


### Examples

**Code review:**

Review Type: code Code:

def process_payment(user_id, amount):
    user = db.query(f"SELECT * FROM users WHERE id = {user_id}")
    if user.balance >= amount:
        db.execute(f"UPDATE users SET balance = balance - {amount}")
        return True
    return False

Context: Payment processing function for e-commerce checkout


**Security review:**

Review Type: security Code: [paste code]


## Output Format

```markdown
## Review Summary
**Decision**: [APPROVED | CHANGES REQUESTED | BLOCKED]

### Issues Found

#### 🔴 Critical (X)
| Issue | Location | Fix |
|-------|----------|-----|
| SQL Injection | line 2 | Use parameterized queries |

#### 🟠 High (X)
...

#### 🟡 Medium (X)
...

#### 🔵 Low (X)
...

### Positive Notes
- Good use of...
- Clean separation of...

### Recommendations
1. First priority fix
2. Second priority fix

Issue Categories

CategoryDescription
securityVulnerabilities, injection, auth issues
performanceN+1 queries, memory leaks, inefficiency
correctnessBugs, logic errors, edge cases
styleNaming, formatting, conventions
documentationMissing docs, unclear comments

Severity Levels

LevelActionCriteria
🔴 CriticalMust fixSecurity vulnerabilities, data loss risk
🟠 HighShould fixBugs, significant issues
🟡 MediumRecommendedPerformance, maintainability
🔵 LowNice to haveStyle, minor improvements
ℹ️ InfoFYISuggestions, alternatives

Decision Criteria

  • APPROVED: No critical/high issues
  • CHANGES REQUESTED: Has medium+ issues that should be addressed
  • BLOCKED: Has critical security or correctness issues
  • coder - Generate fixes for identified issues
  • architect - Review architectural implications
  • pm-validator - Validate against requirements

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です