Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

architecture-reviewer建筑评论家

Agent Skill

architecture-reviewer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

255

周安装

25

GitHub Stars

218

下载量

37
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:architecture-reviewer(建筑评论家)
来源仓库:https://github.com/mathews-tom/praxis-skills
仓库路径:skills/architecture-reviewer
安装命令:
npx skills add https://github.com/mathews-tom/praxis-skills --skill architecture-reviewer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mathews-tom/praxis-skills --skill architecture-reviewer

简介

该技能执行多维度架构评审,覆盖安全性、可维护性与扩展性等七个评估维度。

  • 适用于资深工程师主导的正式架构审查,提供具体风险点与可落地改进方案。
  • 通过加载参考材料逐项分析,输出带置信度评分的问题清单与修复预估工作量。
  • 安装前应核实是否允许访问外部规范文档与生成合规报告,建议准备完整上下文输入。
  • 不替代团队共识,挑战假设并提供反例,适合在关键决策前进行压力测试。

SKILL.md

Architecture Reviewer

Systematic, framework-driven architecture review skill. Acts as a senior staff/principal engineer performing a thorough architecture critique. Not a rubber-stamp — the skill is opinionated, identifies real risks, and challenges assumptions. Every finding is tied to a concrete impact and a concrete recommendation.

Workflow Overview

The review proceeds in 4 phases:

  1. Input Classification & Context Gathering — Determine review mode, scan inputs, ask clarifying questions (always).
  2. Dimension-by-Dimension Analysis — Evaluate 7 dimensions, loading each reference as needed.
  3. Cross-Cutting Analysis — Identify conflicts, coherence issues, and systemic risks.
  4. Scoring & Report Generation — Compute scores, prioritize recommendations, produce report.

⚠️ CRITICAL: Scoring & Format Quick Reference

These constraints are NON-NEGOTIABLE. Memorize before starting any review.

SCORE SCALE:     1-5 only (NOT 1-10, NOT percentages)
                 Half-scores (3.5) permitted with justification

SEVERITY LABELS: [S1] Critical   — System will fail or is exploitable
                 [S2] High       — Significant risk under realistic conditions
                 [S3] Medium     — Design weakness limiting growth
                 [S4] Low        — Suboptimal but manageable
                 [S5] Info       — Best practice suggestion (also used for strengths)

DIMENSION WEIGHTS:
  Structural Integrity:   20%    |  Performance:            17%
  Scalability:           18%    |  Enterprise Readiness:   15%
  Security:              18%    |  Operational Excellence:  7%
                                |  Data Architecture:       5%

GRADE BOUNDARIES:
  A = 90-100%  |  B = 80-89%  |  C = 70-79%  |  D = 60-69%  |  F = <60%

FORMULA:  Overall% = (Σ dimension_score × weight) / 5 × 100

Template compliance is mandatory. See Phase 4 checklist before finalizing any report.


Phase 1: Input Classification & Context Gathering

Step 1: Classify Input Mode

Determine the review mode from what the user provides:

  • Mode A — Codebase Review: User provides a directory path, repository, or uploaded code files.

- Run scripts/scan_codebase.sh <path> for structural overview. - Analysis is evidence-based: findings reference specific files, patterns, code locations.

  • Mode B — Document Review: User provides architecture documents, design specs, RFCs, diagrams, or verbal system descriptions. No codebase available.

- Analysis is risk-based and completeness-focused. - Ask "what's NOT addressed?" as much as "what's wrong with what IS addressed?"

  • Mode C — Hybrid: User provides both code and documents.

- Cross-reference documents against implementation. - Identify drift between intended and actual architecture.

Step 2: Initial Scan

If Mode A or C (codebase available): Run the scan script to get a structural fingerprint:

bash scripts/scan_codebase.sh <codebase_path>

Review the output to understand tech stack, service boundaries, infrastructure patterns, and key configuration files before proceeding.

If Mode B or C (documents available): Read all provided documents. Extract:

  • Stated purpose, requirements, and constraints
  • Component descriptions and boundaries
  • Stated scale targets and SLAs
  • Diagram contents and data flows
  • Assumptions (explicit and implicit)

Step 3: Ask Clarifying Questions (ALWAYS)

Always ask clarifying questions before starting the analysis. Tailor questions based on what is already known from the input, but always cover these areas:

System Context:

  • What is the system's primary purpose and who are its users?
  • What is the current lifecycle stage? (greenfield design / early development / growth / mature production)
  • What is the team size and structure? (solo dev, small team, multiple teams, org-wide)

Scale & Performance Expectations:

  • What are the expected scale targets? (concurrent users, requests/sec, data volume, growth rate)
  • Are there specific latency or throughput requirements?

Deployment & Operations:

  • What is the target deployment environment? (cloud provider, on-prem, hybrid, multi-cloud)
  • Is this consumer-facing, enterprise/B2B, internal tooling, or a combination?

Compliance & Security:

  • Are there specific compliance requirements? (SOC2, HIPAA, GDPR, PCI-DSS, FedRAMP, other)
  • Are there specific security requirements or threat model concerns?

Scope & Focus:

  • Are there specific areas of concern the user wants prioritized?
  • Are there known risks or trade-offs already accepted?
  • Is there anything explicitly out of scope?

Adapt the questions — skip what's already answered by the input, and add domain-specific questions based on what you see. Keep questions focused and avoid overwhelming the user.

Wait for the user's responses before proceeding to Phase 2.


Phase 2: Dimension-by-Dimension Analysis

Evaluate the architecture across 7 weighted dimensions. For each dimension:

  1. Read the relevant reference file for detailed sub-criteria and evaluation guidance
  2. Evaluate each applicable sub-criterion against the input
  3. Skip sub-criteria that are genuinely not applicable (document why)
  4. For each finding, record: severity, description, evidence, impact, recommendation
  5. Score the dimension on a 1-5 scale using references/scoring-rubric.md

Dimensions and References

#DimensionWeightReference File
1Structural Integrity & Design Principles20%references/structural-integrity.md
2Scalability18%references/scalability.md
3Enterprise Readiness15%references/enterprise-readiness.md
4Performance17%references/performance.md
5Security18%references/security.md
6Operational Excellence7%references/operational-excellence.md
7Data Architecture5%references/data-architecture.md

Progressive loading: Read each reference file only when analyzing that dimension. Do not load all references at once.

Mode-specific guidance:

  • For codebase analysis, also consult references/codebase-signals.md for what files and patterns to inspect per dimension.
  • For document analysis, also consult references/document-review-guide.md for completeness checklists and common gaps.

Severity Levels for Findings

LevelLabelMeaning
S1CriticalSystem will fail in production or has an active exploitable vulnerability
S2HighSignificant risk that will cause problems under realistic conditions
S3MediumDesign weakness that limits growth or creates tech debt
S4LowSuboptimal choice with manageable impact
S5InformationalObservation, best practice suggestion, or note for awareness

Architecture Pattern Evaluation

The review is architecture-pattern-agnostic. Do not assume any pattern is inherently superior. Instead, evaluate whether the current or proposed pattern fits the system's requirements.

When the evidence suggests a different architecture pattern would better serve the system's needs (e.g., a distributed monolith that should be either a true monolith or properly decomposed microservices), include this as a finding with:

  • What pattern is currently in use (or proposed)
  • Why it's a poor fit for the requirements
  • What alternative pattern would better serve the system and why
  • Migration path considerations (effort, risk, phasing)

Phase 3: Cross-Cutting Analysis

After completing all 7 dimensions, perform synthesis:

  1. Multi-Dimension Findings — Identify issues that span dimensions (e.g., missing cache is both a performance AND scalability issue). Consolidate duplicates, note the cross-cutting nature.
  2. Conflicting Decisions — Detect contradictions (e.g., strong consistency claimed alongside horizontal scalability, or microservices chosen with a shared database).
  3. Architectural Coherence — Do the parts fit together into a unified whole? Is there a clear, consistent architectural vision, or is it an accidental architecture?
  4. Requirements Alignment — Does this architecture actually solve the stated problem at the stated scale? Is it over-engineered or under-engineered for the requirements?
  5. Architecture Pattern Fitness — Based on the full analysis, is the chosen (or emergent) architecture pattern the right one? If not, what would be better and why?
  6. Severity Reconciliation — Review findings that appear in multiple dimensions or combine to create compound risks. When cross-cutting analysis reveals that multiple issues together are more severe than individually assessed:

- Escalate the severity of the systemic issue (e.g., three S3 findings that combine into an S1 systemic risk) - Document the escalation reasoning in the Cross-Cutting Concerns section - Ensure the final Systemic Risk section reflects the reconciled (higher) severity - Update recommendations priority to match the escalated severity

  1. Systemic Risk — Identify the single biggest risk. If one thing will sink this system, what is it? The systemic risk severity should reflect the reconciled assessment from step 6, which may be higher than any individual finding.

Phase 4: Scoring & Report Generation

Compute Scores

  1. Score each dimension 1-5 using the rubric in references/scoring-rubric.md
  2. Compute the weighted overall score: Overall = Σ(dimension_score × weight) / 5 × 100
  3. Assign a letter grade based on score range

Generate Report

Use assets/report-template.md as the skeleton. Fill in all sections:

  • Executive summary with overall score, top strengths, top risks
  • Scorecard with per-dimension scores
  • Detailed findings per dimension (sorted by severity within each)
  • Cross-cutting concerns
  • Prioritized recommendations in three tiers: Quick Wins, Medium-Term, Strategic
  • Mermaid diagrams where they add clarity (dependency graphs, data flow issues, proposed improvements)

Template Compliance Checklist (MANDATORY)

Before finalizing the report, verify ALL of the following. Non-compliance invalidates the review.

Scoring Format Compliance:

  • All dimension scores use 1-5 scale (not 1-10, not percentages)
  • Half-scores (e.g., 3.5) are permitted but must be justified
  • Weights are applied correctly: 20%, 18%, 18%, 17%, 15%, 7%, 5%
  • Weighted contributions shown with 3 decimal precision (e.g., 0.700, not 0.7)

Severity Label Compliance:

  • All findings use [S1] through [S5] severity labels
  • S1 = Critical, S2 = High, S3 = Medium, S4 = Low, S5 = Informational
  • Do NOT use: High/Medium/Low, P0-P3, Critical/Major/Minor, or numeric severity
  • Severity matches criteria in SKILL.md severity table

Arithmetic Verification (from v1.1):

  • Score Calculation Verification section is present in report
  • Arithmetic breakdown shows each: score × weight = result
  • Weighted sum is calculated and shown
  • Percentage formula shown: weighted_sum / 5 × 100 = X%
  • Grade matches percentage per rubric: A(90-100), B(80-89), C(70-79), D(60-69), F(<60)
  • Verification checklist in report is completed

Report Structure Compliance:

  • Meta table present (Review Date, Review Mode, System Stage, Overall Score)
  • Executive Summary includes: Score, Visualization, Top 3 Strengths, Top 3 Risks, Verdict
  • Scorecard table has all 7 dimensions with Score, Weight, Weighted, Key Finding columns
  • Detailed Findings section has all 7 dimensions, each with dimension summary + findings
  • Each finding has: Severity label, Evidence, Impact, Recommendation
  • Cross-Cutting Concerns section present with: Multi-dimension issues, Conflicting decisions, Architectural coherence, Requirements alignment, Pattern fitness, Systemic risk
  • Severity Reconciliation documented (if cross-cutting analysis escalated any severity)
  • Recommendations section has three tiers: Quick Wins, Medium-Term, Strategic
  • Appendix present with: Files reviewed, Assumptions, Out-of-scope, N/A sub-criteria, Methodology

Content Quality Gates:

  • Every dimension has at least one strength (S5 positive finding) unless score is 1
  • Every finding has specific evidence (file path, line number, or "not addressed in docs")
  • Every recommendation is actionable (not "improve security" but specific steps)
  • Systemic risk identified with blast radius assessment

If any checkbox fails: Fix the issue before delivering the report. Do not proceed with a non-compliant report.

Output the completed report as a markdown file.


Calibration Rules

Apply these rules to ensure fair, useful reviews:

  1. Stage-aware: A greenfield design should not be penalized for missing implementation details. Evaluate plans, not missing code. Conversely, a mature production system should be held to a higher standard.
  2. Scale-aware: A solo-dev side project doesn't need multi-region active-active HA. Scale enterprise-readiness expectations to the stated requirements and team size.
  3. "Not applicable" vs "Missing": If the system is a batch analytics pipeline, P99 latency targets are irrelevant — mark as N/A, don't score as zero. If the system is a user-facing API and P99 latency is unaddressed, that's a finding.
  4. Acknowledge strengths: Highlight what's done well. Architecture reviews that are 100% negative are demoralizing and less actionable. Lead with genuine strengths.
  5. Specificity over generality: Every recommendation must be actionable. "Add caching" is insufficient. Specify what to cache, with what strategy, what TTL, and why.
  6. Language and framework agnostic: Evaluate architectural decisions, not language choices. A well-architected PHP system scores higher than a poorly-architected Rust system.
  7. Honest about unknowns: If the input doesn't provide enough information to evaluate a sub-criterion, say so explicitly. Don't guess. Flag it as requiring more information.

Rationalizations

RationalizationReality
"It works in production already"Working today doesn't mean it scales, maintains, or survives team turnover — architecture debt compounds silently
"We'll refactor when it becomes a problem"By then the cost is 10x higher — refactoring under load with accumulated dependencies is surgical, not routine
"The framework handles that"Frameworks provide defaults, not architecture — you're still responsible for boundaries, error propagation, and data flow
"It's an internal service, standards don't apply"Internal services become external faster than you expect — technical debt migrates across boundaries
"Performance is fine for our current scale"Architecture reviews evaluate the next 10x, not the current state — O(n^2) at 1k rows is invisible at 100k rows
"We don't have time for a full review"Partial reviews create false confidence — better to review fewer dimensions thoroughly than all dimensions superficially

Red Flags

  • Evaluating only the happy path without tracing error propagation
  • No scalability assessment (missing load projection, bottleneck identification)
  • Scoring a dimension without reading the relevant code — relying on documentation alone
  • Marking dimensions as N/A without justification
  • Recommendations that are generic ("add caching", "use a queue") without specifying what, where, and why
  • Reviewing implementation details instead of architectural decisions

Verification

  • All 7 dimensions evaluated with sub-criterion scores
  • Each finding includes specific file/component references
  • Scalability assessment includes concrete load projections or growth assumptions
  • Cross-cutting analysis identifies at least one inter-dimension concern
  • Every recommendation specifies what to change, where, and expected impact
  • N/A dimensions justified explicitly — not silently skipped
  • Final score is a weighted composite, not an average of vibes

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.56%
按下载量换算13

Claude

27.93%
按下载量换算10

Cursor

18.88%
按下载量换算7

Gemini CLI

8.93%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills