Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

code-modularization-evaluator代码模块化评估器

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

3,208

周安装

135

GitHub Stars

公开资料未说明

下载量

1,123
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:code-modularization-evaluator(代码模块化评估器)
来源仓库:https://github.com/dotneet/claude-code-marketplace
仓库路径:skills/code-modularization-evaluator
安装命令:
npx skills add https://github.com/dotneet/claude-code-marketplace --skill code-modularization-evaluator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/dotneet/claude-code-marketplace --skill code-modularization-evaluator

简介

code-modularization-evaluator 基于平衡耦合模型评估代码模块化程度,识别过度耦合问题。

  • 适用于微服务拆分、组件重构或架构评审,提供 actionable 的重构建议与度量指标。
  • 核心原理是区分设计良好的耦合与不良耦合,目标是平衡而非零耦合的理想状态。
  • 使用前请提供待评估代码路径,确保扫描范围准确;输出为报告而非自动修改,需人工落地。
  • 本技能聚焦架构层面,不涉及具体实现细节;建议结合团队设计语言与业务上下文综合判断。

SKILL.md

Code Modularization Evaluator

Evaluate code modularization using the Balanced Coupling Model from Vlad Khononov's "Balancing Coupling in Software Design." This skill helps identify problematic coupling patterns and provides actionable refactoring guidance.

Core Principle

Coupling is not inherently bad—misdesigned coupling is bad. The goal is balanced coupling, not zero coupling.

The fundamental formula:

MODULARITY = (STRENGTH XOR DISTANCE) OR NOT VOLATILITY

A system achieves modularity when:

  • High integration strength components are close together (same module/service)
  • Low integration strength components can be far apart (different services)
  • Low volatility components can tolerate coupling mismatches

The Three Dimensions of Coupling

Always evaluate coupling across these three dimensions:

1. Integration Strength (What knowledge is shared?)

From strongest (worst) to weakest (best):

LevelTypeDescriptionExample
1IntrusiveUsing non-public interfacesDirect database access to another service, reflection on private fields
2FunctionalSharing business logic/rulesSame validation duplicated in two places, order-dependent operations
3ModelSharing domain modelsTwo services using identical entity definitions
4ContractOnly explicit interfacesWell-designed APIs, DTOs, protocols

2. Distance (How far does knowledge travel?)

From closest to most distant:

  1. Methods within same class
  2. Classes within same file
  3. Classes in same namespace/package
  4. Modules in different namespaces
  5. Separate services/microservices
  6. Services owned by different teams
  7. Different systems/organizations

3. Volatility (How often will it change?)

Use Domain-Driven Design subdomain classification:

  • Core subdomains: High volatility (competitive advantage, frequent changes)
  • Supporting subdomains: Low volatility (necessary but not differentiating)
  • Generic subdomains: Low volatility (solved problems, stable)

Decision Framework

When evaluating code, apply this matrix:

Integration StrengthDistanceResult
HighHigh❌ COMPLEXITY (Distributed monolith)
LowLow❌ COMPLEXITY (Unnecessary abstraction)
HighLow✅ MODULARITY (Related things together)
LowHigh✅ MODULARITY (Independent components apart)

Exception: If volatility is LOW, coupling mismatches are acceptable.

Connascence Analysis

Use connascence to identify specific coupling types. See references/connascence-types.md for detailed examples.

Static Connascence (Compile-time, easier to fix)

Ordered weakest to strongest:

  1. Name (CoN): Components agree on names
  2. Type (CoT): Components agree on types
  3. Meaning (CoM): Components agree on value meanings (magic numbers)
  4. Position (CoP): Components agree on order of values
  5. Algorithm (CoA): Components share algorithm logic

Dynamic Connascence (Runtime, harder to detect)

Ordered weakest to strongest: 6. Execution (CoE): Order of method calls matters 7. Timing (CoTm): Timing of execution matters 8. Value (CoV): Multiple values must change together 9. Identity (CoI): Must reference same instance

Connascence Rules

  1. Minimize overall connascence
  2. Minimize connascence crossing module boundaries
  3. Maximize connascence within module boundaries
  4. Convert stronger connascence to weaker forms
  5. As distance increases, connascence should weaken

Evaluation Checklist

When analyzing code, check for:

Red Flags (Immediate Action Required)

  • Direct database access to another service's data (Intrusive coupling)
  • Reflection to access private fields
  • Business logic duplicated across services
  • Microservices requiring synchronized deployments
  • CBO (Coupling Between Objects) > 14 for a class
  • Instability index 0.3-0.7 for frequently-changing modules
  • Circular dependencies between modules

Warning Signs (Investigate Further)

  • Magic numbers/values shared between components (CoM)
  • Position-dependent parameters in APIs (CoP)
  • Algorithm logic duplicated in multiple places (CoA)
  • Methods must be called in specific order (CoE)
  • Long method chains: a.b().c().d() (Law of Demeter violation)
  • Classes with "Manager", "Helper", "Utility" doing too much

Healthy Patterns

  • Contract-based integration between services
  • DTOs that truly abstract internal models
  • High cohesion within modules
  • Single responsibility per class
  • Dependency injection for external dependencies

Refactoring Strategies

By Integration Strength Problem

Intrusive → Contract Coupling:

  1. Identify all direct dependencies on implementation details
  2. Define explicit interface/contract
  3. Create adapter layer
  4. Route all access through adapter

Functional → Model Coupling:

  1. Extract shared business logic to dedicated module
  2. Define clear ownership
  3. Consume via explicit dependency

Model → Contract Coupling:

  1. Create integration-specific DTOs
  2. Map between internal models and DTOs at boundaries
  3. Version contracts independently of models

By Connascence Type

FromToTechnique
CoM (Meaning)CoN (Name)Replace magic values with named constants/enums
CoP (Position)CoN (Name)Use named parameters, builder pattern, or parameter objects
CoA (Algorithm)CoN (Name)Extract algorithm to single location, reference by name
CoT (Type)CoN (Name)Use duck typing or interfaces
CoE (Execution)ExplicitUse state machines, builder pattern, or constructor injection
CoI (Identity)ExplicitUse dependency injection with explicit wiring

By Distance Problem

High Strength + High Distance (Distributed Monolith):

  • Option A: Reduce distance—merge services/modules
  • Option B: Reduce strength—introduce contracts, async messaging

Low Strength + Low Distance (Over-abstraction):

  • Remove unnecessary abstraction layers
  • Inline overly generic code
  • Combine closely-related classes

Analysis Workflow

When asked to evaluate code modularization:

  1. Map the component structure

- Identify modules, services, classes - Draw dependency graph

  1. Assess Integration Strength

- For each dependency, classify: Intrusive/Functional/Model/Contract - Flag high-strength cross-boundary dependencies

  1. Measure Distance

- Note component locations (same file → different systems) - Identify team/ownership boundaries

  1. Evaluate Volatility

- Classify each component's subdomain type - Note historically frequently-changed areas

  1. Apply the formula

- Check: Does strength match distance appropriately? - Does volatility excuse any mismatches?

  1. Identify Connascence

- Scan for specific connascence types - Prioritize: high strength + low locality + high degree

  1. Recommend actions

- Prioritize by impact and effort - Provide specific refactoring techniques

Output Format

Structure your evaluation as:

## Modularization Assessment

### Summary
[Brief overview of coupling health]

### Component Map
[Describe module/service structure]

### Coupling Analysis
| Component Pair | Strength | Distance | Volatility | Balance |
|---------------|----------|----------|------------|---------|
| A → B         | Model    | High     | High       | ❌      |

### Connascence Issues
1. [Specific connascence type]: [Location] - [Impact]

### Recommendations
1. **Priority 1**: [Action] - [Rationale]
2. **Priority 2**: [Action] - [Rationale]

### Refactoring Plan
[Step-by-step approach for highest-priority item]

References

  • For detailed connascence examples: see references/connascence-types.md
  • For coupling metrics: see references/coupling-metrics.md
  • For refactoring patterns: see references/refactoring-patterns.md

Limitations

  • Cannot assess runtime behavior without execution context
  • Volatility assessment requires domain knowledge
  • Team/organizational distance requires project context
  • Historical change frequency not available from static analysis alone

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.91%
按下载量换算313

OpenCode

22.67%
按下载量换算255

Gemini CLI

20.87%
按下载量换算234

Antigravity

12.12%
按下载量换算136

Codex

7.84%
按下载量换算88

Cursor

3.58%
按下载量换算40

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills