architecture-reviewer
Architecture specialist for code review. Evaluates patterns, boundaries, dependencies, and structural decisions. Use when reviewing config, routing, or schemas.
The intelligence layer of the Creator Engine. Researches a domain BEFORE any product is built. Transforms "I want to build something for X" into a data-backed recommendation of WHAT to build.
> /plugin marketplace add myclaude-sh/myclaude-creator-engineHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
The intelligence layer of the Creator Engine. Researches a domain BEFORE any product is built. Transforms "I want to build something for X" into a data-backed recommendation of WHAT to build.
> The intelligence layer of the Creator Engine. Researches a domain BEFORE any product is built. > Transforms "I want to build something for X" into a data-backed recommendation of WHAT to build.
---
---
**Purpose:** Establish the FREE alternative. What does any user get from Claude vanilla, without products?
**Method:** 1. Generate a comprehensive response AS IF you were Claude with no special products, answering: > "You are an expert in {domain}. Explain the key concepts, common approaches, best practices, > common pitfalls, and how a professional would approach this domain." 2. Write this response verbatim — this IS the baseline 3. Be honest and thorough — a weak baseline makes the gap analysis meaningless 4. Adapt depth to creator profile:
**Output section:** `## 1. Baseline — What Claude Knows`
**Quality gates:**
---
**Purpose:** Identify what's MISSING, SHALLOW, WRONG, or GENERIC in the baseline.
**Method:** Read the baseline critically through 4 lenses:
| Lens | Question | Example finding | |------|----------|----------------| | **Missing** | What topics weren't mentioned at all? | "No mention of supply chain attacks in k8s security" | | **Shallow** | What was mentioned but lacks depth? | "RBAC mentioned but no real-world role design patterns" | | **Wrong** | What common misconceptions appear? | "Implies network policies are enabled by default" | | **Generic** | What lacks real-world specificity? | "Best practices are textbook, no production war stories" |
**For each gap, rate severity:**
**Output section:** `## 2. Gap Analysis`
**Quality gates:**
**CRITICAL: After this step, RETURN CONTROL TO SKILL.MD for the mid-protocol gate.** The creator must see and approve the gaps before research begins.
---
**Purpose:** Know the competitive landscape before building.
**Method:** 1. Check if `myclaude` CLI is available:
myclaude --version 2>/dev/null
2. If available, run market queries:
myclaude search "{domain}" --json 2>/dev/null
myclaude search "{related-term-1}" --json 2>/dev/null
myclaude trending --json 2>/dev/null3. If CLI unavailable, note it and continue — market scan is valuable but not blocking.
**For each competing product found, capture:**
**If intent = "explore":** Lighter analysis — list products found, note obvious gaps, skip deep comparison.
**Output section:** `## 3. Market Landscape`
**Quality gate:** Even with no results, document the absence — "No existing products found for {domain}" is itself a valuable market signal (blue ocean or non-obvious niche).
---
**Purpose:** Transform identified gaps into actual knowledge using external research.
**Prerequisite:** WebSearch and WebFetch tools must be available. If not:
**Method:** 1. For each **Critical** gap from Step 2, run targeted research:
WebSearch: "{domain} {gap-topic} best practices 2025 2026"
WebSearch: "{domain} {gap-topic} common mistakes production"2. For each **Significant** gap, run focused research:
WebSearch: "{domain} {gap-topic} expert guide"3. For the most promising results (relevance + recency), fetch full content:
WebFetch: {url} — extract key patterns, heuristics, examples4. Synthesize findings per gap:
**Research budget:*
The creation pipeline for Claude Code products — research, create, validate, publish. 13 types, 20 quality patterns, zero coding required.
Repo: myclaude-sh/myclaude-creator-engine
Architecture specialist for code review. Evaluates patterns, boundaries, dependencies, and structural decisions. Use when reviewing config, routing, or schemas.
Performance specialist for code review. Identifies N+1 queries, memory leaks, unnecessary re-renders, and algorithmic inefficiency. Use for perf-sensitive code.
Security specialist for code review. Finds vulnerabilities, injection risks, auth gaps, and data exposure. Use when code-review-team routes security-related…
Deep codebase analysis for architecture documentation. Maps dependencies, identifies patterns, extracts API signatures.