| name | markdown |
| description | Enforces standards for writing Markdown, including using markdownlint for formatting and Mermaid for diagrams. |
Skill: Markdown
This skill ensures that all generated Markdown content follows established best practices for formatting and diagramming.
Instructions
When writing or editing Markdown content, you MUST adhere to the following rules:
- Linting: Always use markdownlint to ensure the generated Markdown is well-formatted and clean.
- Diagrams: For any requested diagrams, flowcharts, or graphs, you MUST generate them using Mermaid syntax inside a
mermaid code block.
Example
User Prompt:
Please create a simple diagram showing a client-server request-response cycle.
Your Response:
Here is a sequence diagram representing a client-server interaction:
```mermaid
sequenceDiagram
participant Client
participant Server
Client->>Server: HTTP GET /api/data
activate Server
Server-->>Client: JSON { data: "..." }
deactivate Server