/ Verzeichnis / Playground / Modularity
● Community vladikk ⚡ Sofort

Modularity

von vladikk · vladikk/modularity

Translates functional requirements into module boundaries using DDD heuristics — bounded contexts, aggregates, integration patterns.

Vladik Khononov's plugin operationalizes the heuristics from his book on bounded contexts. Feed it requirements; it proposes contexts, aggregates, and integration relationships, with rationale.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

bereit

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "modularity-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/vladikk/modularity"
      ],
      "_inferred": true
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "modularity-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/vladikk/modularity"
      ],
      "_inferred": true
    }
  }
}

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "modularity-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/vladikk/modularity"
      ],
      "_inferred": true
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "modularity-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/vladikk/modularity"
      ],
      "_inferred": true
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "modularity-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/vladikk/modularity"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "modularity-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/vladikk/modularity"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

claude mcp add modularity-skill -- git clone https://github.com/vladikk/modularity

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: Modularity

Carve up a greenfield service into modules

👤 Claude Code users ⏱ ~15 min intermediate

Wann einsetzen: You're sketching a new system and want to avoid a distributed monolith.

Ablauf
  1. Brief
    Provide functional requirements + non-functional priorities.✓ Kopiert
    → Skill asks clarifying questions
  2. Receive design
    Module map with contexts + aggregates + integration patterns.✓ Kopiert
    → Diagrams + rationale
  3. Iterate
    Push back on weak boundaries; refine.✓ Kopiert
    → Approved decomposition

Ergebnis: Defensible module boundaries before code is written.

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

modularity-skill + drawio-mcp

Visualize the proposed module map

Combine modularity-skill with drawio-mcp: Visualize the proposed module map✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
design / critique (see docs) Two main flows 1 call

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
N/A
Tokens pro Aufruf
Mid
Kosten in €
Free
Tipp
Treat output as a starting point — author intends it to be argued with

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: None
Datenabfluss: None

Fehlerbehebung

Häufige Fehler und Lösungen

Output too academic

Ask for "concrete service names + database boundaries"

Alternativen

Modularity vs. andere

AlternativeWann stattdessenKompromiss
Hand-rolledYou already know your domain coldNo structured second opinion

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen