
from specialist-agent16
Use when code changes need review before merge - validates architecture, types, security, and test coverage.
Perform a full code review of changed files, validating against docs/ARCHITECTURE.md.
['Perform a full code review of changed files, validating against docs/ARCHITECTURE.md.', '', 'Scope: $ARGUMENTS (if empty, review files changed in git)', '', '## Steps', '', '1. Identify changed files:', 'bash', 'git diff --name-only HEAD~1 2>/dev/null || git diff --name-only --cached 2>/dev/null || echo "Please specify the files"', '', '', '2. Run automated checks:', 'bash', 'npx tsc --noEmit', 'ng lint', 'ng test --watch=false', '', '', '2b. Run /review-check-architecture $SCOPE for automated pattern validation.', '3. Check ARCHITECTURE.md patterns:']
Review Review is an Angular-focused code review skill that validates changed files against ARCHITECTURE.md patterns. It has well-structured steps, a clear classification system, and verdict output, but is narrowly scoped to Angular projects. No scripts were bundled or executed. The skill uses safe allowed-tools (Read, Bash, Glob, Grep) with no security concerns.
Clean skill with no security issues. Angular ecosystem specificity limits broad usefulness but makes it practical for that audience.
Test-Driven Development (TDD)
Run disciplined TDD cycles: write a failing test, implement the minimal fix, then refactor — for features and bugfixes where correctness matters.
/verify — Verification Before Completion
Run fresh verification commands (tests, build, lint, types) and require full output evidence before claiming work is complete or merging changes.
/learn — Interactive Learning Mode
Teaching-first implementation assistant: explains why decisions are made, walks through architecture, and produces incremental code with pedagogy for onboarding
Adaptive Planning (/plan)
Generate an implementation plan matched to task complexity — from quick mini-plans to full design documents — before writing code or making large changes.
Grill (Adversarial Code Challenge)
Performs adversarial stress-testing of code to find edge cases, race conditions, security holes, and logical flaws before deployment.
Smart Commit (conventional commit generator)
Generate and apply conventional commit messages with automatic type & scope detection plus pre-commit validation for secrets and debug artifacts.
Conversion Rate Optimization (CRO)
Audit landing pages and user flows to find conversion friction and deliver prioritized, testable A/B recommendations.
Migration: Migrate Module
Automates a multi-phase migration of an Angular module to a target architecture with approval gates and validation after each phase.
Next.js: Migration — Migrate Component
Convert a Next.js Pages Router component/page to the App Router pattern, updating routing, data fetching, and component boundaries for Next.js App Router.
Next.js React Query Hook Creator
Automates the creation of typed React Query hooks for server state management in Next.js.