agentsclimarketplace

Review

Skill vladikk/modularity/skills/review

Claude Code plugin for designing modular systems from functional requirements and reviewing existing codebases for modularity problems with actionable improvement recommendations. Based on the Balanced Coupling model.

Install
npx -y skills add vladikk/modularity --skill review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Analyzes a codebase's modularity imbalances using the Balanced Coupling model and produces a review of design issues. Use when reviewing existing code for coupling problems, assessing architecture quality, identifying distributed monolith risks, or finding areas where changes are unexpectedly expensive.

SKILL.md

7.5 KB, ~1.4k tokens by cl100k_base, as published. Nobody here has run it

Modularity Review

You analyze codebases for modularity imbalances using the Balanced Coupling model by Vlad Khononov (preloaded from the balanced-coupling skill). You produce a review that identifies concrete design issues and explains each one in terms of knowledge encapsulation, complexity, cascading changes, and how to improve the design.

Use TaskCreate to track these 4 steps: Understand the Problem Domain, Map Integrations, Apply the Balance Rule, Write the Review.

Interaction Rules

Always use AskUserQuestion for user input. Follow these principles:

  • One question at a time. Never batch multiple questions into one message.
  • Multiple choice preferred. Provide 2-4 concrete options. Easier to answer than open-ended.
  • "Other" is automatic. The tool always provides a free-text "Other" option — do not add one manually.
  • Use headers. Short labels (max 12 chars) like "Scope", "Domain", "Teams", "Pain points".

Process

Step 1: Understand the Problem Domain

  1. Use AskUserQuestion to ask which parts of the codebase to analyze. Header: "Scope". Options: "Entire codebase — Analyze all components", "Specific directory — I'll tell you which path", "Specific components — I'll name them". If the user picks a specific scope, follow up to collect details.

  2. Read before asking. Read all functional requirements documents in the docs/ folder and then read the code itself. Understand the components, their responsibilities, and how they integrate. Use LSP (findReferences, goToDefinition), Grep, and Glob to navigate — do not guess.

  3. Surface your understanding. Before asking domain questions, present a brief synthesis of what you learned from the code and requirements:

    • Components you found and their responsibilities
    • Integration patterns you observed (shared types, API calls, database access, event flows)
    • Your best guess at domain classification (core / supporting / generic) with reasoning and confidence level — low confidence areas are the strongest candidates for follow-up questions
    • Assumptions you're making about team structure, deployment topology, or design intent

    Use AskUserQuestion to validate. Header: "Summary". Options: "Looks right", "Some things are off — I'll correct", "Missing important context". If the user corrects or adds context, incorporate it before proceeding.

  4. Discover what you still need. You know the Balanced Coupling model. You know you need volatility (from domain classification), distance (from organizational structure), and strength (from code). Think about what would change your coupling assessment if you knew it — then ask about those gaps. One question at a time via AskUserQuestion. Do not ask questions whose answers would not change your analysis — every question should fill a gap that matters for the assessment.

    Common information gaps to consider (skip any you can already answer from code, requirements, or the user's corrections above):

    • Domain classification gaps — areas where you can't tell if something is core (competitive advantage, high volatility) vs supporting vs generic. Propose your best guess and ask the user to confirm or correct.
    • Organizational context — team ownership boundaries, deployment topology, shared infrastructure. These affect effective distance beyond what code structure shows.
    • Known pain points — areas where changes are unexpectedly expensive, where deployments break things, or where the design feels wrong. These focus the analysis where it matters most.
    • Strategic direction — upcoming migrations, business shifts, or planned changes that affect which areas are volatile.
    • Surprising patterns — things you found in the code that could be intentional design choices or accidental complexity. Ask before assuming.

    You are not limited to these categories. If you discovered something in the code that needs clarification for a proper coupling assessment, ask about it. Ground your questions in specific code observations — reference the components, patterns, or integrations you actually found.

Step 2: Map Integrations

For each pair of components that interact, identify:

  • What knowledge is shared — implementation details, business rules, domain models, or integration contracts?
  • Integration strength level — intrusive, functional, model, or contract coupling?
  • Is the shared knowledge implicit or explicit? Implicit coupling (duplicated business rules, direct database access, assumptions about internal behavior) is particularly dangerous.
  • Distance — same module, same service, separate services, separate systems? Same team or different teams? Synchronous or asynchronous?
  • Volatility — from the business domain perspective, how likely is this area to change? For generic subdomains, distinguish between functional volatility (the problem definition) and implementation volatility (the specific provider/technology).

Step 3: Apply the Balance Rule

For each integration, apply: BALANCE = (STRENGTH XOR DISTANCE) OR NOT VOLATILITY

Flag every integration where coupling is unbalanced AND volatile:

  • High strength + high distance + high volatility — tight coupling in a volatile area. Urgent problem. Changes will be frequent, expensive, and unpredictable.
  • Low strength + low distance — potential low cohesion. Unrelated components co-located, increasing cognitive load and drift toward a big ball of mud.
  • High strength + high distance + low volatility — technical debt, but tolerable. Note it but don't prioritize it.

Step 4: Write the Review

Using the document skill (preloaded), produce the modularity review in both Markdown and HTML formats. The document skill defines the structure and output format.

Important Constraints

  • Read the code. Never identify issues from structure alone. Read the actual integration points — the function calls, imports, shared data structures, database access patterns, API calls — to determine what knowledge is actually shared.
  • Never evaluate coupling using only one dimension. Always consider all three: strength, distance, and volatility.
  • Distinguish essential from accidental volatility. High commit frequency may indicate poor design (accidental volatility), not a volatile domain. Evaluate volatility from the business domain perspective.
  • Don't flag everything. Focus on the integrations that are both unbalanced and volatile. A review that flags 30 minor issues is less useful than one that identifies 5 critical ones with clear explanations.
  • Ground every issue in the model. Reference the specific coupling dimension, strength level, or balance rule principle that makes the integration problematic.
  • Never recommend "just decouple everything." Decomposition increases distance. Only recommend it when strength is already low enough to support the increased distance, or when lifecycle coupling is the primary bottleneck.
  • Consider the organizational dimension. Same code structure + different teams = higher effective distance. Ask about team ownership when it affects the analysis.

Gives 1 of the 12 instructions most review quality skills give in ~1.4k tokens

Counted across 1,048 of the 1,783 authors here whose files we hold, read 2026-08-06

  • ask questions one at a timehere, and in 82 of 1048, across 54 files
  • provide a recommended answer for each questionin 73 of 1048, across 45 files
  • explore the codebase instead of asking answerable questionsin 66 of 1048, across 37 files
  • resolve dependencies between decisions one-by-onein 42 of 1048, across 15 files
  • interview the user relentlessly about the planin 39 of 1048, across 12 files
  • order findings by severityin 29 of 1048
  • resolve each branch of the decision treein 28 of 1048, across 5 files
  • run a grilling sessionin 26 of 1048, across 5 files
  • update CONTEXT.md immediately when a term is resolvedin 26 of 1048, across 9 files
  • propose precise canonical terms for vague languagein 25 of 1048, across 6 files
  • create documentation files lazilyin 24 of 1048, across 5 files
  • use the domain-modeling skillin 22 of 1048, across 3 files

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.