mx-review

Installation
SKILL.md

MX Space Code Review

Review code for project conventions. Target: $ARGUMENTS

Review Checklist

1. Controller Conventions

  • Uses @ApiController() instead of @Controller()
  • Paginated endpoints return PaginationResult<T> from repository (no special decorator needed)
  • Authenticated endpoints use @Auth() decorator
  • Uses correct HTTP methods (GET/POST/PUT/DELETE)
  • Parameter validation uses DTOs (e.g., EntityIdDto for path params)
  • Return values follow response conventions (arrays auto-wrapped, objects returned directly)

2. Service Conventions

Installs
3
Repository
mx-space/core
GitHub Stars
554
First Seen
Mar 29, 2026
mx-review — mx-space/core