architecture
System architecture analysis and design. Validates architecture patterns, generates dependency graphs, and evaluates module boundaries. Use when analyzing structure, checking layer compliance, or making design decisions.
npx skills add majiayu000/claude-skill-registry --skill architecture-1ambda-dataops-platform-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Architecture Architecture analysis with pattern validation and dependency checking. ## When to Use - Architecture compliance verification - Dependency graph analysis - Pattern validation (Hexagonal, Clean, Layered) - Circular dependency detection - Module boundary evaluation - Architecture documentation generation ## MCP Workflow ``` # 1. Project structure (high-level first) serena.list_dir(relative_path=".", recursive=False) # Top-level only serena.list_dir(relative_path="src/", recursive=True, skip_ignored_files=True) # 2. Module/layer overview (signatures only) serena.get_symbols_overview(relative_path="src/domain/") serena.get_symbols_overview(relative_path="src/application/") # 3. Past architecture decisions claude-mem.search(query="architecture decision", project="<project>") # 4. Layer dependencies (TOKEN CRITICAL - Always limit!) serena.search_for_pattern( substring_pattern="^import", relative_path="src/domain/", context_lines_after=0, max_answer_chars=3000 ) # 5. Framework patterns when needed context7.get-library-docs("<framework>", topic="architecture") ``` ## Efficiency Rules **Do (Token-Efficient):** - Start with `list_dir(recursive=False)` for top-level structure -
- When to Use
- MCP Workflow
- Efficiency Rules
- Architecture Patterns
- Hexagonal (Ports & Adapters)
- Layered
- Layer Validation
- Output Format
- Layer Rules
- Anti-Patterns to Detect
- ADR Template
- Architecture Diagram Templates
- Component Diagram (C4 Style)
- Data Flow Diagram
What does the architecture skill do?
System architecture analysis and design. Validates architecture patterns, generates dependency graphs, and evaluates module boundaries. Use when analyzing structure, checking layer compliance, or making design decisions.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill architecture-1ambda-dataops-platform-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
