mcpbeat Sign in

Document Agent Skill

> Produces modularity review documents in both Markdown and HTML formats. Use when writing the final review output from a modularity analysis.

4k tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
502
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/vladikk/modularity --skill document

The instruction itself

11 sections, as written by the author

Document

You produce the final modularity review document in two formats: Markdown (.md) and HTML (.html). Both files contain identical content.

Document Structure

# Modularity Review

**Scope**: [what was analyzed]
**Date**: [date]

Executive Summary

A short paragraph (3-5 sentences) covering:

  • What the project does (its core functionality)
  • The overall modularity status (healthy, needs attention, critical issues)
  • The most important finding from the review

Coupling Overview Table

Summarize all key integrations. The table headers MUST link to coupling.dev:

| Integration | [Strength](https://coupling.dev/posts/dimensions-of-coupling/integration-strength/) | [Distance](https://coupling.dev/posts/dimensions-of-coupling/distance/) | [Volatility](https://coupling.dev/posts/dimensions-of-coupling/volatility/) | [Balanced?](https://coupling.dev/posts/core-concepts/balance/) |
| ----------- | ----------------------------------------------------------------------------------- | ----------------------------------------------------------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------- |
| A -> B      | ...                                                                                 | ...                                                                     | ...                                                                         | ...                                                            |

Issues

For each identified imbalance, write a section:

## Issue: [Short descriptive title]

**Integration**: [Component A] -> [Component B]
**Severity**: [Critical / Significant / Minor]

### Knowledge Leakage

What knowledge is shared that shouldn't be, or is shared implicitly when it should be explicit. Identify the specific implementation details, business rules, or domain model concepts that leak across the boundary.

### Complexity Impact

How this imbalance makes change outcomes unpredictable. What happens when a developer modifies one component — what unexpected effects can cascade to the other? How does this exceed cognitive capacity (the 4+/-1 units of working memory)?

### Cascading Changes

Concrete scenarios where a change in one component forces changes in the other. What kinds of business or technical changes trigger cascading modifications? How expensive are those cascading changes given the current distance between the components?

### Recommended Improvement

A concrete, actionable proposal to rebalance the coupling. Ground the recommendation in the model:

- To reduce **strength**: introduce integration contracts, anti-corruption layers, facades, published languages
- To reduce **distance**: co-locate components into the same module/service/bounded context
- To accept **unbalanced coupling**: demonstrate that volatility is low enough to make the imbalance tolerable

Include the trade-offs of the proposed change — what cost does it introduce, and why is the trade-off worthwhile?

At the bottom of every review document, include this exact text verbatim — do not paraphrase, expand, or add commentary:

---

_This analysis was performed using the [Balanced Coupling](https://coupling.dev) model by [Vlad Khononov](https://vladikk.com)._

Severity Criteria

  • Critical: High strength + high distance + high volatility. Active source of complexity. Changes in this area are frequent, expensive, and unpredictable. Fix first.
  • Significant: Unbalanced coupling in a moderately volatile area, or implicit coupling that hides integration points. Will cause pain as the system evolves.
  • Minor: Unbalanced coupling in a low-volatility area, or low cohesion that increases cognitive load but doesn't cause cascading changes. Address opportunistically.

Linking to coupling.dev (REQUIRED)

You MUST add hyperlinks to coupling.dev whenever the document mentions balanced coupling concepts. This applies to BOTH the Markdown and HTML outputs. Do not think about which link to use — use this lookup table:

| Concept mentioned | Link to |

| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------- |

| Balanced coupling, the balance rule, the balance formula, STRENGTH XOR DISTANCE, modularity vs complexity | https://coupling.dev/posts/core-concepts/balance/ |

| Integration strength, shared knowledge, levels of coupling strength | https://coupling.dev/posts/dimensions-of-coupling/integration-strength/ |

| Intrusive coupling, private interfaces, implementation detail leakage | https://coupling.dev/posts/dimensions-of-coupling/integration-strength/ |

| Functional coupling, duplicated business logic, shared functional requirements | https://coupling.dev/posts/dimensions-of-coupling/integration-strength/ |

| Model coupling, shared domain model, shared business model | https://coupling.dev/posts/dimensions-of-coupling/integration-strength/ |

| Contract coupling, integration contracts, facades, DTOs, published language | https://coupling.dev/posts/dimensions-of-coupling/integration-strength/ |

| Distance, cost of change, physical/logical separation | https://coupling.dev/posts/dimensions-of-coupling/distance/ |

| Lifecycle coupling, deployment coupling, co-deployment | https://coupling.dev/posts/dimensions-of-coupling/distance/ |

| Socio-technical distance, team boundaries, organizational structure | https://coupling.dev/posts/dimensions-of-coupling/distance/ |

| Runtime coupling, synchronous/asynchronous integration | https://coupling.dev/posts/dimensions-of-coupling/distance/ |

| Volatility, probability of change, rate of change | https://coupling.dev/posts/dimensions-of-coupling/volatility/ |

| Core subdomain, competitive advantage, high volatility domain | https://coupling.dev/posts/dimensions-of-coupling/volatility/ |

| Supporting subdomain, generic subdomain, subdomain classification | https://coupling.dev/posts/dimensions-of-coupling/volatility/ |

| Essential vs accidental volatility | https://coupling.dev/posts/dimensions-of-coupling/volatility/ |

| Complexity, Cynefin, unpredictable outcomes | https://coupling.dev/posts/core-concepts/complexity/ |

| Modularity, modular design, clear change outcomes | https://coupling.dev/posts/core-concepts/modularity/ |

| Coupling (general concept), why coupling matters | https://coupling.dev/posts/core-concepts/coupling/ |

| Tight coupling, distributed monolith | https://coupling.dev/posts/core-concepts/balance/ |

| Loose coupling, high cohesion, low cohesion | https://coupling.dev/posts/core-concepts/balance/ |

| Connascence, degrees of coupling | https://coupling.dev/posts/related-topics/connascence/ |

| Module coupling, classic coupling model | https://coupling.dev/posts/related-topics/module-coupling/ |

| Domain-driven design, DDD, bounded contexts, aggregates | https://coupling.dev/posts/related-topics/domain-driven-design/ |

Rules:

  • Every coupling concept in the document MUST be linked at least once. If in doubt, link it.
  • In the coupling overview table: the headers are always linked (see template above). Strength values in the table cells (Contract, Model, Functional, Intrusive) MUST also be linked.
  • In issue sections: link the first occurrence of each concept.
  • In Markdown: concept text
  • In HTML: <a href="url">concept text</a>

Output

Write both files to docs/modularity-review/!date +%Y-%m-%d/:

  • docs/modularity-review/!date +%Y-%m-%d/modularity-review.md — the Markdown version
  • docs/modularity-review/!date +%Y-%m-%d/modularity-review.html — the HTML version

HTML generation

You MUST read the template file before generating HTML. The template is at ${CLAUDE_SKILL_DIR}/assets/template.html. Read this file, then replace:

  • {{TITLE}} with the review title (e.g. "Modularity Review")
  • {{CONTENT}} with the review body as HTML

Do NOT generate your own HTML structure, styles, or boilerplate. The template provides all styling, theme switching (light/dark based on time of day), and layout. Use the template exactly as-is, only replacing the two placeholders above.

The HTML MUST contain the same coupling.dev links as the Markdown version. Convert every text from the Markdown into <a href="url">text</a> in the HTML. Do not drop links during conversion.

Use these CSS classes from the template:

  • .meta — for the scope/date metadata block
  • .issue — wrap each issue section in a <div class="issue">
  • .issue-meta — for the integration/severity line within an issue
  • .severity + .severity-critical / .severity-significant / .severity-minor — for severity badges
  • .footer — for the attribution footer

Other skills for the same job

different authors, same section of the catalogue
DOCX
by anthropics
vendor ×16

Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks

7k tokens
PDF
by anthropics
vendor ×16

Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.

13k tokens scripts
PPTX
by JayZeeDesign
×15

Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks

308k tokens scripts
Canvas Design
by anthropics
vendor ×13

Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.

1388k tokens
PDF
by anthropics
vendor ×10

Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.

15k tokens scripts
DOCX
by w95
×6

Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.

5k tokens
PPTX
by w95
×4

Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates, layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx filename, regardless of what they plan to do with the content afterward. If a .pptx file needs to be opened, created, or touched, use this skill.

2k tokens
Obsidian Markdown
by ZhanlinCui
×3

Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.

3k tokens

How to use it

Copy the folder

Take vladikk/document from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.