mermaid-diagrams
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: README.md [1/2] Description: # Mermaid Diagrams Skill A comprehensive guide for creating professional software diagrams using Mermaid's text-based syntax. This skill enables you to visualize system architecture, document code structure, model databases, and communicate technical concepts through diagrams. ## Purpose Transform complex technical concepts into clear, maintainable diagrams that can be version-controlled alongside your code. Mermaid diagrams are rendered from simple text defini
Malicious tool definition detected
Tool: SKILL.md Description: --- name: mermaid-diagrams description: Comprehensive guide for creating software diagrams using Mermaid syntax.
Malicious tool definition detected
Tool: references/advanced-features.md [1/2] Description: # Advanced Mermaid Features Advanced configuration, styling, theming, and other powerful features for creating professional diagrams.
Description: color combinations - Don't rely solely on color to convey meaning - Include descriptive text labels - Test with color blindness simulators - Consider dark mode alternatives ## Performance Considerations For large diagrams: ```mermaid --- config: layout: elk elk: mergeEdges: true --- flowchart TD %% ELK handles complex layouts better %% Merge edges reduces visual clutter ``` **Performance tips:** - Use ELK layout for diagrams with >20 nodes - Enable edge merging for simplified connec
Malicious tool definition detected
Tool: references/c4-diagrams.md [1/2] Description: # C4 Model Diagrams The C4 model provides a hierarchical way to visualize software architecture at different levels of abstraction: Context, Containers, Components, and Code.
Tool: references/c4-diagrams.md [2/2] Description: "HTTPS") Rel(web, api_gateway, "API calls", "HTTPS/REST") Rel(mobile, api_gateway, "API calls", "HTTPS/REST") Rel(web, graphql, "Queries", "HTTPS/GraphQL") Rel(api_gateway, auth, "Authenticates", "gRPC") Rel(graphql, video, "Gets videos", "gRPC") Rel(graphql, user, "Gets users", "gRPC") Rel(graphql, recommendation, "Gets recommendations", "gRPC") Rel(video, storage, "Stores videos", "S3 API") Rel(video, transcoding, "Sends for transcoding", "RES
Malicious tool definition detected
Tool: references/class-diagrams.md Description: # Class Diagrams Class diagrams model object-oriented designs and domain models.
Malicious tool definition detected
Tool: references/erd-diagrams.md [1/2] Description: # Entity Relationship Diagrams (ERD) ERDs model database schemas, showing tables (entities), their columns (attributes), and relationships between tables.
Tool: references/erd-diagrams.md [2/2] Description: NULL" uuid post_id FK "NOT NULL" timestamp created_at "DEFAULT NOW()" } COMMENT { uuid id PK uuid user_id FK "NOT NULL" uuid post_id FK "NOT NULL" uuid parent_comment_id FK text content "NOT NULL" int likes_count "DEFAULT 0" timestamp created_at "DEFAULT NOW()" } MESSAGE { uuid id PK uuid sender_id FK "NOT NULL" uuid receiver_id FK "NOT NULL" text content "NOT NULL" boolean is_read "DEFAULT FALSE" timestamp created_at "DEFAULT NOW()" timestamp
Malicious tool definition detected
Tool: references/flowcharts.md [1/2] Description: # Flowcharts Flowcharts visualize processes, algorithms, decision trees, and user journeys.
Tool: references/flowcharts.md [2/2] Description: groupings 7.
Malicious tool definition detected
Tool: references/sequence-diagrams.md Description: # Sequence Diagrams Sequence diagrams show interactions between participants over time.