Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
This skill should be used when the user asks to "design system architecture", "evaluate microservices vs monolith", "create architecture diagrams", "analyze dependencies", "choose a database", "plan for scalability", "make technical decisions", or "review system design". Use for architecture decision records (ADRs), tech stack evaluation, system design reviews, dependency analysis, and generating architecture diagrams in Mermaid, PlantUML, or ASCII format.
This skill should be used when the user asks to "design system architecture", "evaluate microservices vs monolith", "create architecture diagrams", "analyze dependencies", "choose a database", "plan for scalability", "make technical decisions", or "review system design". Use for architecture decision records (ADRs), tech stack evaluation, system design reviews, dependency analysis, and generating architecture diagrams in Mermaid, PlantUML, or ASCII format.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Architecture design and analysis tools for making informed technical decisions.
Quick Start Tools Overview Architecture Diagram Generator Dependency Analyzer Project Architect Decision Workflows Database Selection Architecture Pattern Selection Monolith vs Microservices Reference Documentation Tech Stack Coverage Common Commands
# Generate architecture diagram from project python scripts/architecture_diagram_generator.py ./my-project --format mermaid # Analyze dependencies for issues python scripts/dependency_analyzer.py ./my-project --output json # Get architecture assessment python scripts/project_architect.py ./my-project --verbose
Generates architecture diagrams from project structure in multiple formats. Solves: "I need to visualize my system architecture for documentation or team discussion" Input: Project directory path Output: Diagram code (Mermaid, PlantUML, or ASCII) Supported diagram types: component - Shows modules and their relationships layer - Shows architectural layers (presentation, business, data) deployment - Shows deployment topology Usage: # Mermaid format (default) python scripts/architecture_diagram_generator.py ./project --format mermaid --type component # PlantUML format python scripts/architecture_diagram_generator.py ./project --format plantuml --type layer # ASCII format (terminal-friendly) python scripts/architecture_diagram_generator.py ./project --format ascii # Save to file python scripts/architecture_diagram_generator.py ./project -o architecture.md Example output (Mermaid): graph TD A[API Gateway] --> B[Auth Service] A --> C[User Service] B --> D[(PostgreSQL)] C --> D
Use when choosing a database for a new project or migrating existing data. Step 1: Identify data characteristics CharacteristicPoints to SQLPoints to NoSQLStructured with relationships✓ACID transactions required✓Flexible/evolving schema✓Document-oriented data✓Time-series data✓ (specialized) Step 2: Evaluate scale requirements <1M records, single region → PostgreSQL or MySQL 1M-100M records, read-heavy → PostgreSQL with read replicas 100M records, global distribution → CockroachDB, Spanner, or DynamoDB High write throughput (>10K/sec) → Cassandra or ScyllaDB Step 3: Check consistency requirements Strong consistency required → SQL or CockroachDB Eventual consistency acceptable → DynamoDB, Cassandra, MongoDB Step 4: Document decision Create an ADR (Architecture Decision Record) with: Context and requirements Options considered Decision and rationale Trade-offs accepted Quick reference: PostgreSQL → Default choice for most applications MongoDB → Document store, flexible schema Redis → Caching, sessions, real-time features DynamoDB → Serverless, auto-scaling, AWS-native TimescaleDB → Time-series data with SQL interface
Use when designing a new system or refactoring existing architecture. Step 1: Assess team and project size Team SizeRecommended Starting Point1-3 developersModular monolith4-10 developersModular monolith or service-oriented10+ developersConsider microservices Step 2: Evaluate deployment requirements Single deployment unit acceptable → Monolith Independent scaling needed → Microservices Mixed (some services scale differently) → Hybrid Step 3: Consider data boundaries Shared database acceptable → Monolith or modular monolith Strict data isolation required → Microservices with separate DBs Event-driven communication fits → Event-sourcing/CQRS Step 4: Match pattern to requirements RequirementRecommended PatternRapid MVP developmentModular MonolithIndependent team deploymentMicroservicesComplex domain logicDomain-Driven DesignHigh read/write ratio differenceCQRSAudit trail requiredEvent SourcingThird-party integrationsHexagonal/Ports & Adapters See references/architecture_patterns.md for detailed pattern descriptions.
Choose Monolith when: Team is small (<10 developers) Domain boundaries are unclear Rapid iteration is priority Operational complexity must be minimized Shared database is acceptable Choose Microservices when: Teams can own services end-to-end Independent deployment is critical Different scaling requirements per component Technology diversity is needed Domain boundaries are well understood Hybrid approach: Start with a modular monolith. Extract services only when: A module has significantly different scaling needs A team needs independent deployment Technology constraints require separation
Load these files for detailed information: FileContainsLoad when user asks aboutreferences/architecture_patterns.md9 architecture patterns with trade-offs, code examples, and when to use"which pattern?", "microservices vs monolith", "event-driven", "CQRS"references/system_design_workflows.md6 step-by-step workflows for system design tasks"how to design?", "capacity planning", "API design", "migration"references/tech_decision_guide.mdDecision matrices for technology choices"which database?", "which framework?", "which cloud?", "which cache?"
Languages: TypeScript, JavaScript, Python, Go, Swift, Kotlin, Rust Frontend: React, Next.js, Vue, Angular, React Native, Flutter Backend: Node.js, Express, FastAPI, Go, GraphQL, REST Databases: PostgreSQL, MySQL, MongoDB, Redis, DynamoDB, Cassandra Infrastructure: Docker, Kubernetes, Terraform, AWS, GCP, Azure CI/CD: GitHub Actions, GitLab CI, CircleCI, Jenkins
# Architecture visualization python scripts/architecture_diagram_generator.py . --format mermaid python scripts/architecture_diagram_generator.py . --format plantuml python scripts/architecture_diagram_generator.py . --format ascii # Dependency analysis python scripts/dependency_analyzer.py . --verbose python scripts/dependency_analyzer.py . --check circular python scripts/dependency_analyzer.py . --output json # Architecture assessment python scripts/project_architect.py . --verbose python scripts/project_architect.py . --check layers python scripts/project_architect.py . --output json
Run any script with --help for usage information Check reference documentation for detailed patterns and workflows Use --verbose flag for detailed explanations and recommendations
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.