full-reviewlisted
Install: claude install-skill aiskillstore/marketplace
# Full Code Review
Orchestrates all available review skills to provide comprehensive code analysis.
## When to Use
- Before committing code changes
- Performing pre-merge reviews
- Running comprehensive audits
- Checking code against all quality standards
- Validating changes across the full stack
## Workflow
### Step 1: Identify Changes
Get list of changed files using git diff.
### Step 2: Map Skills to Files
Invoke relevant skills based on file patterns.
### Step 3: Run Checklists
Apply security, DeFi, type safety, and performance checks.
### Step 4: Generate Report
Produce structured report with severity levels.
### Step 5: Auto-Fix (Optional)
Offer to fix critical issues automatically.
---
## Trigger Phrases
- "review code", "check changes", "full review"
- "pre-commit review", "review before commit"
- "run all skills", "comprehensive review"
## Review Process
### Step 1: Identify Changes
```bash
# Get changed files
git diff --name-only HEAD~1 2>/dev/null || git diff --name-only
git status --porcelain
```
### Step 2: Skill Mapping
Based on changed files, invoke these skills:
| Changed Files | Skills to Invoke |
|--------------|------------------|
| Any `.ts`, `.tsx` | code-review-expert, common-pitfalls |
| `server/src/routes/*` | system-integration-validator |
| `server/src/services/*` | defi-expert, hft-quant-expert |
| `server/src/db/*` | code-consistency-validator |
| `client/src/pages/*`, `client/src/components/*` | apple-ui-design, common-pitfal