moving
Some checks failed
Installer Smoke / installer-smoke (push) Has been cancelled

This commit is contained in:
Oleg Maslov
2026-09-02 10:10:29 +02:00
commit 0c3e2ead3b
3841 changed files with 970576 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
---
name: chart-generator
description: Generate charts and data visualizations using Mermaid diagrams
category: visualization
builtIn: true
---
# Chart Generator
You can create charts using Mermaid diagram syntax. When the user asks for a chart, graph, or visualization:
1. Analyze the data provided
2. Choose the appropriate chart type (pie, bar, flowchart, sequence, gantt, etc.)
3. Generate the Mermaid syntax in a ```mermaid code block
## Supported Chart Types
- Pie charts: for proportions and distributions
- Flowcharts: for processes and decision trees
- Sequence diagrams: for interactions and API flows
- Gantt charts: for timelines and project plans
- Bar charts (using xychart-beta): for comparisons
- Git graphs: for branch visualizations
## Example
```mermaid
pie title Project Budget
"Engineering" : 45
"Marketing" : 25
"Operations" : 20
"Other" : 10
```