Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

document文档处理

Agent Skill

document 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

356

周安装

15

GitHub Stars

363

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:document(文档处理)
来源仓库:https://github.com/vladikk/modularity
仓库路径:skills/document
安装命令:
npx skills add https://github.com/vladikk/modularity --skill document
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/vladikk/modularity --skill document

简介

该技能生成模块化审查文档,输出 Markdown 与 HTML 两种格式的结构化报告。

  • 适用于项目复盘、架构评审或交付物归档等需要标准化文档的场景。
  • 自动提取核心功能、模块化状态与改进建议,辅以来源标注。
  • 安装前请注意其包含系统命令,务必审查权限与执行风险。
  • document 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Document

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

Document Structure

Header

# 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?

Footer

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 mentionedLink to
Balanced coupling, the balance rule, the balance formula, STRENGTH XOR DISTANCE, modularity vs complexityhttps://coupling.dev/posts/core-concepts/balance/
Integration strength, shared knowledge, levels of coupling strengthhttps://coupling.dev/posts/dimensions-of-coupling/integration-strength/
Intrusive coupling, private interfaces, implementation detail leakagehttps://coupling.dev/posts/dimensions-of-coupling/integration-strength/
Functional coupling, duplicated business logic, shared functional requirementshttps://coupling.dev/posts/dimensions-of-coupling/integration-strength/
Model coupling, shared domain model, shared business modelhttps://coupling.dev/posts/dimensions-of-coupling/integration-strength/
Contract coupling, integration contracts, facades, DTOs, published languagehttps://coupling.dev/posts/dimensions-of-coupling/integration-strength/
Distance, cost of change, physical/logical separationhttps://coupling.dev/posts/dimensions-of-coupling/distance/
Lifecycle coupling, deployment coupling, co-deploymenthttps://coupling.dev/posts/dimensions-of-coupling/distance/
Socio-technical distance, team boundaries, organizational structurehttps://coupling.dev/posts/dimensions-of-coupling/distance/
Runtime coupling, synchronous/asynchronous integrationhttps://coupling.dev/posts/dimensions-of-coupling/distance/
Volatility, probability of change, rate of changehttps://coupling.dev/posts/dimensions-of-coupling/volatility/
Core subdomain, competitive advantage, high volatility domainhttps://coupling.dev/posts/dimensions-of-coupling/volatility/
Supporting subdomain, generic subdomain, subdomain classificationhttps://coupling.dev/posts/dimensions-of-coupling/volatility/
Essential vs accidental volatilityhttps://coupling.dev/posts/dimensions-of-coupling/volatility/
Complexity, Cynefin, unpredictable outcomeshttps://coupling.dev/posts/core-concepts/complexity/
Modularity, modular design, clear change outcomeshttps://coupling.dev/posts/core-concepts/modularity/
Coupling (general concept), why coupling mattershttps://coupling.dev/posts/core-concepts/coupling/
Tight coupling, distributed monolithhttps://coupling.dev/posts/core-concepts/balance/
Loose coupling, high cohesion, low cohesionhttps://coupling.dev/posts/core-concepts/balance/
Connascence, degrees of couplinghttps://coupling.dev/posts/related-topics/connascence/
Module coupling, classic coupling modelhttps://coupling.dev/posts/related-topics/module-coupling/
Domain-driven design, DDD, bounded contexts, aggregateshttps://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](url)
  • In HTML: <a href="url">concept text</a>

Output

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

  1. docs/modularity-review/!date +%Y-%m-%d/modularity-review.md — the Markdown version
  2. 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](url) 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

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.33%
按下载量换算49

Claude

31.23%
按下载量换算39

Cursor

18.36%
按下载量换算23

Gemini CLI

8.92%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/vladikk/modularity --skill document 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills