惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
罗磊的独立博客
月光博客
月光博客
IT之家
IT之家
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
小众软件
小众软件
C
Check Point Blog
B
Blog RSS Feed
H
Help Net Security
博客园 - 司徒正美
L
LangChain Blog
MongoDB | Blog
MongoDB | Blog
B
Blog
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Turn Your AI Coder into a Real Software Architect
sirius-zuo · 2026-06-23 · via DEV Community

sirius-zuo

GitHub: https://github.com/sirius-zuo/architect-skills

It's a set of LLM agent skills focused on software architecture analysis and review. The repo includes two main skills plus shared resources:

  • architect-design-review: Reviews an approved design spec before implementation starts. It generates architecture diagrams (Mermaid.js), evaluates against a comprehensive set of principles, and produces a beautiful HTML report.
  • architect-codebase-review: Analyzes an existing codebase, maps its current architecture (with real evidence from the code), evaluates it, and proposes recommended improvements with revised diagrams.

Both skills output self-contained HTML reports with embedded interactive Mermaid diagrams, saved to docs/architecture/review/. No heavy dependencies—just an internet connection for Mermaid rendering via CDN.

Core Features That Make It Stand Out

  1. Dynamic, Extensible Review Framework All evaluation criteria live in a single architect-shared/architecture-principles.md file. Each ## section (e.g., Separation of Concerns, Scalability, Data Architecture, Observability, Security, Reliability, Domain-Driven Design elements, AI Architecture, Multi-Tenancy, etc.) becomes a report section automatically.
    • Add new domains by simply adding a new heading with "Applies to: design, codebase" markers.
    • Findings are classified as ✅ Strength, ⚠️ Concern, or ❌ Risk, with clear signals of violation. This keeps everything maintainable and evolving without forking skills.
  2. Rich Architecture Diagrams
    • Always generates: System Context and Component diagrams.
    • Proposes additional ones (Application, Data, Sequence, Integration, Deployment) based on project context and waits for your confirmation.
    • Current-state (for codebase reviews) + recommended future-state diagrams. Diagrams use real names from your spec or code, with careful syntax validation to avoid Mermaid headaches.
  3. Agent-Native Workflows Designed for tools like Claude Code (with slash-command support and automatic hooks, e.g., run after spec approval). Easy integration for Cursor, Copilot, etc., via rules files.
    • Strict content isolation and non-goals (no modifying code, no running tests, read-only where appropriate).
    • Handles different project sizes with context management.
    • Produces clean, actionable reports with executive summaries, findings, and prioritized recommendations.

Why This Matters Now

Modern software is complex. Microservices, event-driven systems, AI components, multi-tenancy, cloud-native deployments—getting the architecture right upfront saves massive refactoring pain later. Human architects are expensive and not always available for every feature or legacy review. These skills bring systematic, principle-based review into your daily AI-assisted workflow.

Imagine:

  • After brainstorming a new feature spec, your agent automatically runs a design review and flags issues like missing caching strategy, poor separation of concerns, or unversioned APIs.
  • For legacy projects, a codebase review quickly surfaces god modules, circular dependencies, observability gaps, or deployment anti-patterns, complete with "before/after" diagrams.

It's MIT-licensed, lightweight (mostly shell + Markdown), and community-extensible.

Quick Start (Claude Code recommended)

Bash

git clone https://github.com/sirius-zuo/architect-skills.git
cd architect-skills
./install.sh claude

Add a hook to your ~/.claude/CLAUDE.md for automatic design reviews. For other agents, copy the relevant SKILL.md + shared files into rules directories and prompt accordingly. Full instructions in the README.

Example Principles Covered (partial list)

  • Separation of Concerns, Cohesion & Coupling, Layered/Hexagonal Architecture
  • Scalability (statelessness, caching, async, partitioning)
  • Observability, Security (OWASP-aware), Reliability & Resilience
  • Data Architecture, Cost Efficiency (FinOps), Operability
  • Deployment, Event-Driven, AI Architecture, Multi-Tenancy, Governance, and more.

No more "it works on my machine" architecture. This encourages explicit decisions, trade-off documentation, and drift detection.

If you're building serious software—web apps, services, libraries, AI systems—this can be a game-changer for consistency and long-term maintainability. Even solo devs or small teams benefit hugely.

Star it if you find it useful, contribute new principles or diagram rules, or share your review reports (anonymized, of course). Feedback welcome—especially on real-world usage!

What are your biggest architecture pain points with AI coding agents? Have you tried similar skills? Let's discuss in the comments.

Link again: https://github.com/sirius-zuo/architect-skills