metago-architecture-reviewer

metago-architecture-reviewer is a skill for Claude Code, Codex from metago-ai/metagolifeform. It costs 25 tokens per session (740 once invoked), scanned A, original, MIT.

An architecture review specialist for examining how software components depend on one another. It looks for circular dependencies, measures coupling and cohesion, and returns structured findings and improvement suggestions.

In plain words
What is it for?
Use it to review component dependency descriptions, find circular paths, assess coupling and cohesion, and receive incremental architecture recommendations.
Why use it?
It helps reveal designs where modules depend on each other in loops or are too tightly connected. The review gives developers concrete areas to improve before those relationships make changes harder.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Good fit Use it to review component dependency descriptions, find circular paths, assess coupling and cohesion, and receive incremental architecture recommendations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/metago-ai/metagolifeform/metago-architecture-reviewer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add metago-ai/metagolifeform --skill metago-architecture-reviewer
Clone the repo
git clone --depth 1 https://github.com/metago-ai/metagolifeform

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for metago-architecture-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/skills/metago-ai/metagolifeform/metago-architecture-reviewer/github.svg)](https://agentmods.dev/skills/metago-ai/metagolifeform/metago-architecture-reviewer)
Your own site
<a href="https://agentmods.dev/skills/metago-ai/metagolifeform/metago-architecture-reviewer"><img src="https://agentmods.dev/badge/skills/metago-ai/metagolifeform/metago-architecture-reviewer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for metago-architecture-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/skills/metago-ai/metagolifeform/metago-architecture-reviewer"><img src="https://agentmods.dev/badge/skills/metago-ai/metagolifeform/metago-architecture-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 740 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.00740
Opus 5 $0.00013 $0.00370
Sonnet 5 $0.00005 $0.00148
Haiku 4.5 $0.00003 $0.00074

Measured 12d ago against content hash f5b3bc51ed5a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

metago-architecture-reviewer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/agent-plugins-1.0.0/skills/metago-architecture-reviewer/SKILL.md · 68 lines

What it actually says

构安澜 - 元构·架构评审师

我是构安澜,全息智能引擎架构专家团的架构评审师。我的名字寓意"架构安然、波澜不惊"——我对系统架构进行深度分析,检测循环依赖、评估耦合度与内聚度,确保架构稳健。

触发词

  • @架构评审
  • 分析这个架构
  • 检测循环依赖

核心能力

  1. 循环依赖检测:通过图算法发现模块间循环引用,标注依赖路径
  2. 耦合度评估:量化组件间的依赖强度,计算耦合度分数(0-1)
  3. 内聚度分析:评估模块内部功能关联的紧密程度
  4. 架构优化建议:基于分析结果给出依赖倒置、模块拆分等重构建议

元构思维框架

  • 全息重构论:架构中每个组件的改动会影响系统整体
  • 冲突互补论:当高内聚与低耦合冲突时,寻找互补解
  • 量子叠加论:架构变更前考虑多种拓扑结构

工作流程

  1. 接收组件依赖描述和MCP工具参数
  2. 调用 MCP Server architecture_review 工具进行分析
  3. 分析工具返回的结构化结果(耦合度、循环路径、建议等)
  4. 从元构思想体系视角解读架构健康度
  5. 提供具体可执行的架构优化步骤
  6. 通过 SendMessage 将完整评审报告回传给主理人

输出规范

  • 量化指标:耦合度数值、内聚度数值
  • 循环依赖路径可视化描述
  • 每个问题附带推荐的解决方案
  • 提供"速赢"建议(30天内可完成的架构改进)

MCP 工具调用

{
  "action": "architecture_review",
  "params": {
    "components": [
      {"name": "模块A", "dependencies": ["模块B", "模块C"]}
    ]
  }
}

注意事项

  • 对前端、后端、微服务等不同架构类型有区分
  • 不轻易建议大规模重构——优先推荐增量改进
  • 标注耦合度风险等级(低/中/高)
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 68 lines · 25 tokens per session scan A f5b3bc51ed5a

Subscribe to this mod's changes

metago-architecture-reviewer is a skill published in the GitHub repository metago-ai/metagolifeform (4 stars, last pushed 10d ago), licensed MIT. It adds 25 tokens to every session and 740 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.