con un clic
mermaid
Whenever diagrams or mermaid is mentioned
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Whenever diagrams or mermaid is mentioned
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
在进行 Code Review 时,使用这个技能对 LoongCollector 变更进行安全导向、架构一致性优先的深度代码评审。
按 Conventional Commits 规范编写提交信息。在创建 git commit 时使用。
编译 LoongCollector C++ 与 Go 组件。涉及构建、单元测试或镜像时使用。
Design document writing conventions. Use when writing or reviewing technical design documents.
LoongCollector E2E Testing Framework Development Guide. Use this rule when you need to understand E2E testing framework architecture, develop new test behavior functions, or extend testing capabilities. Contains detailed BDD testing framework usage, test behavior function development and registration workflows, and comprehensive reference of existing testing capabilities. Example: When adding custom test behaviors for new plugins, use this rule to understand how to write and register new test functions. Example: When developing E2E tests, use this rule to understand the e2e framework.
E2E Testing Standards Guide. Use this rule when you need to write or execute E2E tests, including test naming conventions, test workflows, and test behavior templates. This rule should be used for end-to-end integration testing scenarios to ensure test standardization and maintainability. Example: When writing new E2E tests, use this rule to ensure proper test format and workflow compliance.
| name | mermaid |
| description | Whenever diagrams or mermaid is mentioned |
Here are the essential rules for creating Mermaid diagrams that render well in GitHub Markdown:
Use the Correct Fenced Code Block:
Always start the block with mermaid and end it with .
```mermaid
graph TD
A[Start] --> B{Decision};
B -- Yes --> C[Action 1];
B -- No --> D[Action 2];
Stick to Well-Supported Diagram Types:
GitHub generally has good support for the most common types:
graph (Flowcharts - TD is often best for readability)
sequenceDiagram
classDiagram
stateDiagram-v2 (Prefer v2 for better features/rendering)
erDiagram (Entity Relationship)
pie (Pie charts)
gantt (Gantt charts)
mindmap (Mind Maps - Basic structure only. See syntax notes below)
Avoid extremely new or less common diagram types, as GitHub's Mermaid version might lag slightly behind the latest release.
Keep Syntax Simple and Standard:
Node IDs: Use simple alphanumeric IDs (e.g., node1, processA, userAuth). Avoid spaces or special characters in IDs.
Node/Actor/State Labels: Use quotes ("...") for labels, especially if they contain spaces, punctuation, special characters, or Mermaid keywords. This is the most common source of rendering errors.
Good: A["User Input"] --> B["Validate Data"];
Bad (potential error): A[User Input] --> B[Validate Data];
Arrows: Use standard arrow types (-->, ---, ==>, ->>, etc.).
Comments: Use %% for comments if needed.
Mindmap Specifics for GitHub:
GitHub supports the basic mindmap structure, using indentation to define hierarchy (parent/child relationships).
Ensure each node/item is on its own line with correct indentation relative to its parent.
GitHub DOES NOT support experimental or advanced mindmap features like ::icon() syntax. Using icons will cause rendering errors.
Stick to plain text nodes for mind maps intended for GitHub Markdown.
Correct Example (GitHub compatible):
mindmap
Root
Parent
Child 1
Child 2
Incorrect Example (GitHub incompatible due to icons):
mindmap
Root
Parent
::icon(fa fa-one) Child 1
::icon(fa fa-two) Child 2
Prefer Vertical Layouts (graph TD):
graph), TD (Top Down) or TB (Top Bottom) usually renders more readably within the flow of a Markdown document than LR (Left Right). GitHub often gives diagrams ample width, but vertical flows are easier to follow on typical screens.Let GitHub Handle the Styling:
DO NOT try to set themes (e.g., %%{init: {'theme': 'dark'}}%%) or apply custom styling using classDef or style within the Mermaid code.
GitHub ignores these theme directives and applies its own styling based on whether the user is viewing GitHub in light, dark, or dimmed mode. Your diagram will automatically adapt. Trying to force colors or themes will likely just be ignored or look out of place.
Keep Diagrams Focused:
Test in GitHub Preview:
Tooling & Edit Verification Note:
Automated code editing tools may sometimes struggle to apply changes correctly within Mermaid blocks, especially with complex syntax involving indentation or specific formatting (like the mindmap example above).
Always carefully review edits made to Mermaid blocks by automated tools. If errors persist or the diagram doesn't render as expected, manual correction might be necessary.
In short: Write standard, clearly quoted Mermaid syntax using common diagram types. For mindmaps in GitHub, use only the basic indentation structure (no icons). Prefer graph TD. Avoid trying to control the theme/colors yourself. Use the GitHub preview, and double-check automated edits to Mermaid blocks.