Agent skill
full-review
Comprehensive code review using all available skills. Use before committing or when you want a thorough analysis of changes. Triggers on review code, check changes, full review, pre-commit review.
Install this agent skill to your Project
npx add-skill https://github.com/aiskillstore/marketplace/tree/main/skills/barissozen/full-review
SKILL.md
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
# 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-pitfalls |
client/src/hooks/* |
common-pitfalls (TanStack Query) |
rust-core/**/*.rs |
code-consistency-validator, latency-tracker |
*token*, *protocol*, *chain* |
defi-registry-manager |
*arbitrage*, *trade*, *swap* |
liquidity-depth-analyzer |
*logger*, *error* |
error-logger |
*websocket*, *ws* |
common-pitfalls (WebSocket) |
schema.ts, *.sql |
common-pitfalls (Drizzle) |
Step 3: Review Checklist
For EVERY review, check these critical items:
Security
- No SQL injection vulnerabilities
- No XSS in React components (dangerouslySetInnerHTML)
- No command injection in Bash calls
- No hardcoded secrets/credentials
- Proper input validation on all endpoints
- Rate limiting on sensitive routes
DeFi-Specific
- Token decimals correct (USDC/USDT=6, WBTC=8, ETH=18)
- Token addresses in checksum format
- BigInt handling (no precision loss with Number())
- Slippage protection on swaps
- Proper error handling for reverts
Type Safety
- No
as anytype assertions - Types match across TypeScript ↔ Rust ↔ PostgreSQL
- Zod schemas for all API inputs
- Proper null/undefined handling
Performance
- No N+1 queries
- Proper indexing on queried columns
- Timeouts on external calls
- Connection pooling configured
Code Quality
- Error messages don't leak internal details
- Consistent naming conventions
- No dead code or unused imports
- Proper async/await usage
TanStack Query (if applicable)
- QueryKeys use full URL paths
- Mutations invalidate relevant queries
- Using isPending (not isLoading) for mutations in v5
- Responses typed with schema types
Drizzle ORM (if applicable)
- No primary key type changes
- Array columns use
text().array()syntax - Insert/select types exported for models
- Using drizzle-zod for validation
React Components (if applicable)
- Loading/error states handled
- data-testid on interactive elements
- Using router Link, not window.location
- Helper functions defined before use
Blockchain/RPC (if applicable)
- All contract calls wrapped in try/catch
- Multicall uses
allowFailure: true - Prices validated against expected ranges
- Handling "execution reverted" gracefully
Step 4: Report Format
## Code Review Report
### Files Reviewed
- [list files]
### Skills Applied
- [list skills invoked]
### Critical Issues (MUST FIX)
🔴 [issue description]
File: path/to/file.ts:line
Fix: [how to fix]
### Warnings (SHOULD FIX)
🟡 [issue description]
File: path/to/file.ts:line
Suggestion: [recommendation]
### Suggestions (NICE TO HAVE)
🟢 [improvement idea]
### Summary
- Critical: X issues
- Warnings: X issues
- Suggestions: X items
- Ready to commit: Yes/No
Step 5: Auto-Fix
If critical issues found, offer to fix them:
- Show the issue
- Show the proposed fix
- Apply if approved
- Re-run validation
Quick Commands
/review- Full review of all changes/quick-review- Fast check of critical issues only- Invoke
full-reviewskill for this comprehensive process
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
perigon-backend
Perigon ASP.NET Core + EF Core + Aspire conventions
perigon-agent
Pointers for Copilot/agents to apply Perigon conventions
perigon-angular
Angular 21+ standalone/Material/signal conventions for Perigon WebApp
fastapi-mastery
Comprehensive FastAPI development skill covering REST API creation, routing, request/response handling, validation, authentication, database integration, middleware, and deployment. Use when working with FastAPI projects, building APIs, implementing CRUD operations, setting up authentication/authorization, integrating databases (SQL/NoSQL), adding middleware, handling WebSockets, or deploying FastAPI applications. Triggered by requests involving .py files with FastAPI code, API endpoint creation, Pydantic models, or FastAPI-specific features.
context7-efficient
Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for JavaScript, Python, Go, Rust, and other libraries. Use when users ask about library documentation, need code examples, want API usage patterns, are learning a new framework, need syntax reference, or troubleshooting with library-specific information. Triggers include questions like "Show me React hooks", "How do I use Prisma", "What's the Next.js routing syntax", or any request for library/framework documentation.
browser-use
Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction.
Didn't find tool you were looking for?