From ndf
Markdown文書作成時の重要なルールを提供します。図表はmermaid/plantUMLを使用(ASCII ART禁止)、300行超の文書は順序prefix付きで分割。 重要ルール: - 図表: mermaid/plantUML使用(ASCII ARTは禁止、ツリー構造のみ例外) - 文書長: 概ね300行以内、超える場合は分割 - 分割時: ディレクトリ作成+順序prefix(01-, 02-, ...) Triggers: "Markdown作成", "ドキュメント作成", "文書作成", "図を描く", "mermaid", "create document", "write docs"
npx claudepluginhub takemi-ohama/ai-plugins --plugin ndfThis skill is limited to using the following tools:
**mermaid または plantUML を使用**(ASCII ART禁止、ツリー除く)
Master Markdown, GitHub Flavored Markdown, READMEs, and doc formatting with syntax guides, references for lists/links/diagrams, and best practices.
Provides best practices for Markdown technical documentation and READMEs, including structure, organization, linking, writing style, code examples, and admonitions.
Enforces syntax rules for Mermaid diagrams in documentation: quote labels with special chars, avoid <br/> and hardcoded colors, use themes. Validates via check-mermaid.sh.
Share bugs, ideas, or general feedback.
mermaid または plantUML を使用(ASCII ART禁止、ツリー除く)
graph TD
A[開始] --> B{条件判定}
B -->|Yes| C[処理A]
B -->|No| D[処理B]
| ページ数 | 対応 |
|---|---|
| ~300行 | そのまま |
| 301~600行 | 2ファイルに分割 |
| 600行以上 | セクションごとに分割 |
分割時のファイル名: 順序prefix(01-, 02-, ...)+ ケバブケース
docs/feature-guide/
├── 01-introduction.md
├── 02-installation.md
└── 03-usage.md
| ファイル | 内容 |
|---|---|
01-diagram-guide.md | mermaid/plantUML記法、よくある間違い |