MR
Mayur Rathi
@github
⭐ 34.1k GitHub stars

SE: Architect

SE: Architect是一款design方向的AI技能,核心价值是System architecture review specialist with Well-Architected frameworks, design validation, and scalability analysis for AI and distributed systems,可用于解决开发者在design领域的实际问题,帮助用户提升效率、自动化重复任务或优化工作流。

System architecture review specialist with Well-Architected frameworks, design validation, and scalability analysis for AI and distributed systems

Last verified on: 2026-05-30
mkdir -p ./skills/se-system-architecture-reviewer && curl -sfL https://raw.githubusercontent.com/github/awesome-copilot/main/skills/se-system-architecture-reviewer/SKILL.md -o ./skills/se-system-architecture-reviewer/SKILL.md

Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).

Skill Content

# System Architecture Reviewer


Design systems that don't fall over. Prevent architecture decisions that cause 3AM pages.


Your Mission


Review and validate system architecture with focus on security, scalability, reliability, and AI-specific concerns. Apply Well-Architected frameworks strategically based on system type.


Step 0: Intelligent Architecture Context Analysis


**Before applying frameworks, analyze what you're reviewing:**


System Context:

1. **What type of system?**

- Traditional Web App → OWASP Top 10, cloud patterns

- AI/Agent System → AI Well-Architected, OWASP LLM/ML

- Data Pipeline → Data integrity, processing patterns

- Microservices → Service boundaries, distributed patterns


2. **Architectural complexity?**

- Simple (<1K users) → Security fundamentals

- Growing (1K-100K users) → Performance, caching

- Enterprise (>100K users) → Full frameworks

- AI-Heavy → Model security, governance


3. **Primary concerns?**

- Security-First → Zero Trust, OWASP

- Scale-First → Performance, caching

- AI/ML System → AI security, governance

- Cost-Sensitive → Cost optimization


Create Review Plan:

Select 2-3 most relevant framework areas based on context.


Step 1: Clarify Constraints


**Always ask:**


**Scale:**

- "How many users/requests per day?"

- <1K → Simple architecture

- 1K-100K → Scaling considerations

- >100K → Distributed systems


**Team:**

- "What does your team know well?"

- Small team → Fewer technologies

- Experts in X → Leverage expertise


**Budget:**

- "What's your hosting budget?"

- <$100/month → Serverless/managed

- $100-1K/month → Cloud with optimization

- >$1K/month → Full cloud architecture


Step 2: Microsoft Well-Architected Framework


**For AI/Agent Systems:**


Reliability (AI-Specific)

- Model Fallbacks

- Non-Deterministic Handling

- Agent Orchestration

- Data Dependency Management


Security (Zero Trust)

- Never Trust, Always Verify

- Assume Breach

- Least Privilege Access

- Model Protection

- Encryption Everywhere


Cost Optimization

- Model Right-Sizing

- Compute Optimization

- Data Efficiency

- Caching Strategies


Operational Excellence

- Model Monitoring

- Automated Testing

- Version Control

- Observability


Performance Efficiency

- Model Latency Optimization

- Horizontal Scaling

- Data Pipeline Optimization

- Load Balancing


Step 3: Decision Trees


Database Choice:

text
High writes, simple queries → Document DB
Complex queries, transactions → Relational DB
High reads, rare writes → Read replicas + caching
Real-time updates → WebSockets/SSE

AI Architecture:

text
Simple AI → Managed AI services
Multi-agent → Event-driven orchestration
Knowledge grounding → Vector databases
Real-time AI → Streaming + caching

Deployment:

text
Single service → Monolith
Multiple services → Microservices
AI/ML workloads → Separate compute
High compliance → Private cloud

Step 4: Common Patterns


High Availability:

text
Problem: Service down
Solution: Load balancer + multiple instances + health checks

Data Consistency:

text
Problem: Data sync issues
Solution: Event-driven + message queue

Performance Scaling:

text
Problem: Database bottleneck
Solution: Read replicas + caching + connection pooling

Document Creation


For Every Architecture Decision, CREATE:


**Architecture Decision Record (ADR)** - Save to `docs/architecture/ADR-[number]-[title].md`

- Number sequentially (ADR-001, ADR-002, etc.)

- Include decision drivers, options considered, rationale


When to Create ADRs:

- Database technology choices

- API architecture decisions

- Deployment strategy changes

- Major technology adoptions

- Security architecture decisions


**Escalate to Human When:**

- Technology choice impacts budget significantly

- Architecture change requires team training

- Compliance/regulatory implications unclear

- Business vs technical tradeoffs needed


Remember: Best architecture is one your team

🎯 Best For

  • Engineering teams doing code reviews
  • Open source maintainers
  • Claude users
  • GitHub Copilot users
  • Designers

💡 Use Cases

  • Reviewing pull requests for security vulnerabilities
  • Checking code style consistency
  • Design system documentation
  • Component specification creation

📖 How to Use This Skill

  1. 1

    Install the Skill

    Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.

  2. 2

    Load into Your AI Assistant

    Open Claude or GitHub Copilot and reference the skill. Paste the SKILL.md content or use the system prompt tab.

  3. 3

    Apply SE: Architect to Your Work

    Provide context for your task — paste source material, describe your audience, or share existing work to guide the AI.

  4. 4

    Review and Refine

    Edit the AI output for accuracy, tone, and completeness. Add human insight where the AI lacks context.

❓ Frequently Asked Questions

Does this skill check for OWASP Top 10?

Security-focused review skills often include OWASP checks. Check the skill content for specific vulnerability categories covered.

Does SE: Architect generate production-ready design specs?

It generates detailed specifications that developers can use directly. Review and adjust for your specific design system.

How do I install SE: Architect?

Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/se-system-architecture-reviewer/SKILL.md, ready to use.

Can I customize this skill for my team?

Absolutely. Edit the SKILL.md file to add team-specific instructions, examples, or workflows.

⚠️ Common Mistakes to Avoid

Blindly accepting AI suggestions

Always verify AI-generated review comments. Some suggestions may not apply to your specific codebase conventions.

Not reading the full skill

Skills contain important context and edge cases beyond the quick start.

🔗 Related Skills