architecture-review — community architecture-review, MeshIt, community, ide skills

v1.0.0

About this Skill

Ideal for Code Review Agents specializing in Next.js, Supabase, and SWR, seeking to enhance codebase health and detect issues. Scans Mesh codebase for duplicated code, bad patterns, complexity hotspots, and inconsistencies. Run periodically or before major releases. Produces actionable findings with severity and file location

AJB-ajb AJB-ajb
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 9/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
9/11
Quality Score
56
Canonical Locale
en
Detected Body Locale
en

Ideal for Code Review Agents specializing in Next.js, Supabase, and SWR, seeking to enhance codebase health and detect issues. Scans Mesh codebase for duplicated code, bad patterns, complexity hotspots, and inconsistencies. Run periodically or before major releases. Produces actionable findings with severity and file location

Core Value

Empowers agents to perform comprehensive codebase health checks, identifying duplicated code, anti-patterns, complexity, and inconsistencies across Next.js, Supabase, and SWR stacks, utilizing rules-based scanning for precise issue detection.

Ideal Agent Persona

Ideal for Code Review Agents specializing in Next.js, Supabase, and SWR, seeking to enhance codebase health and detect issues.

Capabilities Granted for architecture-review

Automating code reviews for major releases or deploys
Debugging unexplained bugs by scanning for code inconsistencies
Periodically analyzing codebases for duplicated code and anti-patterns
Optimizing code complexity after merging parallel branches

! Prerequisites & Limits

  • Requires access to relevant code files and directories
  • Specific to Next.js, Supabase, and SWR technologies
  • Needs periodic updates to rule sets for optimal issue detection

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is architecture-review?

Ideal for Code Review Agents specializing in Next.js, Supabase, and SWR, seeking to enhance codebase health and detect issues. Scans Mesh codebase for duplicated code, bad patterns, complexity hotspots, and inconsistencies. Run periodically or before major releases. Produces actionable findings with severity and file location

How do I install architecture-review?

Run the command: npx killer-skills add AJB-ajb/MeshIt/architecture-review. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for architecture-review?

Key use cases include: Automating code reviews for major releases or deploys, Debugging unexplained bugs by scanning for code inconsistencies, Periodically analyzing codebases for duplicated code and anti-patterns, Optimizing code complexity after merging parallel branches.

Which IDEs are compatible with architecture-review?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for architecture-review?

Requires access to relevant code files and directories. Specific to Next.js, Supabase, and SWR technologies. Needs periodic updates to rule sets for optimal issue detection.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add AJB-ajb/MeshIt/architecture-review. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use architecture-review immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

architecture-review

Install architecture-review, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Architecture Review

Codebase health check for Mesh. Detects duplicated code, anti-patterns, complexity, and inconsistencies across the Next.js + Supabase + SWR stack.

When to Run

  • Before major releases or deploys
  • After merging parallel branches
  • When debugging unexplained bugs
  • Periodically (weekly/biweekly)

How to Use

  1. Read this file for the checklist and categories
  2. For each category, scan the relevant files using the patterns described
  3. Check individual rules/ files for detailed detection guidance
  4. Report findings as: AREA > FILE(S) > SEVERITY > RECOMMENDATION

Review Checklist

1. Duplication (CRITICAL)

Scan for repeated code blocks that should be extracted to shared utilities.

PatternWhere to checkRule
JSON body parsing boilerplatesrc/app/api/**/route.tsdup-json-parsing
Provider identity checkinghooks + API routesdup-provider-check
Record transformation logicAPI routes returning DB rowsdup-record-transform

2. Error Handling (HIGH)

PatternWhere to checkRule
Fire-and-forget fetch callshooks, componentserr-fire-and-forget
Silent .catch(() => {})entire src/err-silent-catch
Unhandled promise rejectionscomponents with .then()err-unhandled-promise
Inconsistent error response formatAPI routeserr-response-format

3. Supabase Client (HIGH)

PatternWhere to checkRule
Multiple client instances in one componentcomponents with createClient()supa-client-instances
Server/browser client confusionhooks importing from wrong modulesupa-client-boundary
Missing null checks after type castingAPI routes with as Record<>supa-unsafe-cast

4. SWR & Data Fetching (MEDIUM)

PatternWhere to checkRule
Missing revalidation after mutationshooks with .update() or .insert()swr-missing-revalidate
N+1 query patternshooks fetching per-item in loopsswr-n-plus-one
select("*") instead of specific columnsAPI routes + hooksperf-select-star

5. Type Safety (MEDIUM)

PatternWhere to checkRule
Generic Json type for structured datasrc/lib/supabase/types.ts, hookstype-generic-json
Explicit : any usageentire src/type-any
Unsafe type assertions without validationAPI routes, componentstype-unsafe-assert

6. Component Structure (MEDIUM)

PatternWhere to checkRule
Components over 300 linessrc/components/comp-too-large
Missing error boundariesroute layouts, dashboardcomp-error-boundary
Mixed fetch patterns (hook vs direct)componentscomp-inconsistent-fetch

Severity Guide

  • CRITICAL: Causes bugs, data loss, or security issues. Fix immediately.
  • HIGH: Creates maintenance burden or silent failures. Fix this sprint.
  • MEDIUM: Inconsistency or code smell. Fix when touching the file.
  • LOW: Style/preference. Fix opportunistically.

Output Format

## Architecture Review - [date]

### Findings

1. **[SEVERITY] [AREA]**: [description]
   - Files: [file paths with line numbers]
   - Recommendation: [what to do]

### Summary
- Critical: N
- High: N
- Medium: N
- Quick wins: [list easy fixes]

Related Skills

Looking for an alternative to architecture-review or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer