@groupby/ai-dev 0.5.10 → 0.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/package.json +1 -1
  2. package/teams/fhr-neowise/commands/address-pr.md +120 -0
  3. package/teams/fhr-neowise/commands/ready-pr.md +70 -0
  4. package/teams/fhr-neowise/commands/review-pr.md +111 -0
  5. package/teams/fhr-neowise/commands/tdd-implementation.md +86 -0
  6. package/teams/fhr-neowise/commands/write-plan.md +23 -0
  7. package/teams/fhr-neowise/commands/write-pr.md +21 -0
  8. package/teams/fhr-neowise/commands/write-spec.md +25 -0
  9. package/teams/fhr-neowise/skills/agent-routing/SKILL.md +72 -0
  10. package/teams/fhr-neowise/skills/code-review/SKILL.md +83 -0
  11. package/teams/fhr-neowise/skills/code-review/review-template.md +90 -0
  12. package/teams/fhr-neowise/skills/mermaid-diagram/SKILL.md +94 -0
  13. package/teams/fhr-neowise/skills/mermaid-diagram/references/BEST_PRACTICES.md +96 -0
  14. package/teams/fhr-neowise/skills/mermaid-diagram/references/architecture.md +434 -0
  15. package/teams/fhr-neowise/skills/mermaid-diagram/references/block.md +753 -0
  16. package/teams/fhr-neowise/skills/mermaid-diagram/references/c4.md +619 -0
  17. package/teams/fhr-neowise/skills/mermaid-diagram/references/classDiagram.md +1186 -0
  18. package/teams/fhr-neowise/skills/mermaid-diagram/references/config-configuration.md +72 -0
  19. package/teams/fhr-neowise/skills/mermaid-diagram/references/config-directives.md +342 -0
  20. package/teams/fhr-neowise/skills/mermaid-diagram/references/config-layouts.md +40 -0
  21. package/teams/fhr-neowise/skills/mermaid-diagram/references/config-math.md +96 -0
  22. package/teams/fhr-neowise/skills/mermaid-diagram/references/config-theming.md +246 -0
  23. package/teams/fhr-neowise/skills/mermaid-diagram/references/config-tidy-tree.md +89 -0
  24. package/teams/fhr-neowise/skills/mermaid-diagram/references/cynefin.md +279 -0
  25. package/teams/fhr-neowise/skills/mermaid-diagram/references/entityRelationshipDiagram.md +670 -0
  26. package/teams/fhr-neowise/skills/mermaid-diagram/references/eventmodeling.md +475 -0
  27. package/teams/fhr-neowise/skills/mermaid-diagram/references/examples.md +301 -0
  28. package/teams/fhr-neowise/skills/mermaid-diagram/references/flowchart.md +2116 -0
  29. package/teams/fhr-neowise/skills/mermaid-diagram/references/gantt.md +725 -0
  30. package/teams/fhr-neowise/skills/mermaid-diagram/references/gitgraph.md +2138 -0
  31. package/teams/fhr-neowise/skills/mermaid-diagram/references/ishikawa.md +66 -0
  32. package/teams/fhr-neowise/skills/mermaid-diagram/references/kanban.md +161 -0
  33. package/teams/fhr-neowise/skills/mermaid-diagram/references/mindmap.md +335 -0
  34. package/teams/fhr-neowise/skills/mermaid-diagram/references/packet.md +153 -0
  35. package/teams/fhr-neowise/skills/mermaid-diagram/references/pie.md +93 -0
  36. package/teams/fhr-neowise/skills/mermaid-diagram/references/quadrantChart.md +267 -0
  37. package/teams/fhr-neowise/skills/mermaid-diagram/references/radar.md +269 -0
  38. package/teams/fhr-neowise/skills/mermaid-diagram/references/railroad.md +337 -0
  39. package/teams/fhr-neowise/skills/mermaid-diagram/references/requirementDiagram.md +495 -0
  40. package/teams/fhr-neowise/skills/mermaid-diagram/references/sankey.md +415 -0
  41. package/teams/fhr-neowise/skills/mermaid-diagram/references/sequenceDiagram.md +1195 -0
  42. package/teams/fhr-neowise/skills/mermaid-diagram/references/stateDiagram.md +670 -0
  43. package/teams/fhr-neowise/skills/mermaid-diagram/references/timeline.md +571 -0
  44. package/teams/fhr-neowise/skills/mermaid-diagram/references/treeView.md +321 -0
  45. package/teams/fhr-neowise/skills/mermaid-diagram/references/treemap.md +353 -0
  46. package/teams/fhr-neowise/skills/mermaid-diagram/references/userJourney.md +42 -0
  47. package/teams/fhr-neowise/skills/mermaid-diagram/references/venn.md +134 -0
  48. package/teams/fhr-neowise/skills/mermaid-diagram/references/wardley.md +732 -0
  49. package/teams/fhr-neowise/skills/mermaid-diagram/references/xyChart.md +312 -0
  50. package/teams/fhr-neowise/skills/mermaid-diagram/references/zenuml.md +474 -0
  51. package/teams/fhr-neowise/skills/mermaid-diagram/scripts/sync_docs.py +138 -0
  52. package/teams/fhr-neowise/skills/pull-request-authoring/COMPLEX.template.md +52 -0
  53. package/teams/fhr-neowise/skills/pull-request-authoring/NON-CODE.template.md +15 -0
  54. package/teams/fhr-neowise/skills/pull-request-authoring/SIMPLE.template.md +20 -0
  55. package/teams/fhr-neowise/skills/pull-request-authoring/SKILL.md +102 -0
  56. package/teams/fhr-neowise/skills/spec-investigation/SKILL.md +139 -0
  57. package/teams/fhr-neowise/skills/spec-investigation/TEMPLATE.spec.md +74 -0
  58. package/teams/fhr-neowise/skills/tdd-workflow/SKILL.md +137 -0
  59. package/teams/fhr-neowise/skills/write-plan/SKILL.md +285 -0
  60. package/teams/fhr-neowise/skills/write-plan/assets/TEMPLATE.checklist.json +79 -0
  61. package/teams/fhr-neowise/skills/write-plan/assets/TEMPLATE.plan.md +158 -0
@@ -0,0 +1,312 @@
1
+ > **Warning**
2
+ >
3
+ > ## THIS IS AN AUTOGENERATED FILE. DO NOT EDIT.
4
+ >
5
+ > ## Please edit the corresponding file in [/packages/mermaid/src/docs/syntax/xyChart.md](../../packages/mermaid/src/docs/syntax/xyChart.md).
6
+
7
+ # XY Chart
8
+
9
+ > In the context of mermaid-js, the XY chart is a comprehensive charting module that encompasses various types of charts that utilize both x-axis and y-axis for data representation. Presently, it includes two fundamental chart types: the bar chart and the line chart. These charts are designed to visually display and analyze data that involve two numerical variables.
10
+
11
+ > It's important to note that while the current implementation of mermaid-js includes these two chart types, the framework is designed to be dynamic and adaptable. Therefore, it has the capacity for expansion and the inclusion of additional chart types in the future. This means that users can expect an evolving suite of charting options within the XY chart module, catering to various data visualization needs as new chart types are introduced over time.
12
+
13
+ ## Example
14
+
15
+ ```mermaid-example
16
+ xychart
17
+ title "Sales Revenue"
18
+ x-axis [jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec]
19
+ y-axis "Revenue (in $)" 4000 --> 11000
20
+ bar [5000, 6000, 7500, 8200, 9500, 10500, 11000, 10200, 9200, 8500, 7000, 6000]
21
+ line [5000, 6000, 7500, 8200, 9500, 10500, 11000, 10200, 9200, 8500, 7000, 6000]
22
+ ```
23
+
24
+ ```mermaid
25
+ xychart
26
+ title "Sales Revenue"
27
+ x-axis [jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec]
28
+ y-axis "Revenue (in $)" 4000 --> 11000
29
+ bar [5000, 6000, 7500, 8200, 9500, 10500, 11000, 10200, 9200, 8500, 7000, 6000]
30
+ line [5000, 6000, 7500, 8200, 9500, 10500, 11000, 10200, 9200, 8500, 7000, 6000]
31
+ ```
32
+
33
+ ## Syntax
34
+
35
+ > **Note**
36
+ > All text values that contain only one word can be written without `"`. If a text value has many words in it, specifically if it contains spaces, enclose the value in `"`
37
+
38
+ ### Orientations
39
+
40
+ The chart can be drawn horizontal or vertical, default value is vertical.
41
+
42
+ ```
43
+ xychart horizontal
44
+ ...
45
+ ```
46
+
47
+ ### Title
48
+
49
+ The title is a short description of the chart and it will always render on top of the chart.
50
+
51
+ #### Example
52
+
53
+ ```
54
+ xychart
55
+ title "This is a simple example"
56
+ ...
57
+ ```
58
+
59
+ > **Note**
60
+ > If the title is a single word one no need to use `"`, but if it has space `"` is needed
61
+
62
+ ### x-axis
63
+
64
+ The x-axis primarily serves as a categorical value, although it can also function as a numeric range value when needed.
65
+
66
+ #### Example
67
+
68
+ 1. `x-axis title min --> max` x-axis will function as numeric with the given range
69
+ 2. `x-axis "title with space" [cat1, "cat2 with space", cat3]` x-axis if categorical, categories are text type
70
+
71
+ ### y-axis
72
+
73
+ The y-axis is employed to represent numerical range values, it cannot have categorical values.
74
+
75
+ #### Example
76
+
77
+ 1. `y-axis title min --> max`
78
+ 2. `y-axis title` it will only add the title, the range will be auto generated from data.
79
+
80
+ > **Note**
81
+ > Both x and y axis are optional if not provided we will try to create the range
82
+
83
+ ### Line chart
84
+
85
+ A line chart offers the capability to graphically depict lines.
86
+
87
+ #### Example
88
+
89
+ 1. `line [2.3, 45, .98, -3.4]` it can have all valid numeric values.
90
+
91
+ ### Bar chart
92
+
93
+ A bar chart offers the capability to graphically depict bars.
94
+
95
+ #### Example
96
+
97
+ 1. `bar [2.3, 45, .98, -3.4]` it can have all valid numeric values.
98
+
99
+ #### Simplest example
100
+
101
+ The only two things required are the chart name (`xychart`) and one data set. So you will be able to draw a chart with a simple config like
102
+
103
+ ```
104
+ xychart
105
+ line [+1.3, .6, 2.4, -.34]
106
+ ```
107
+
108
+ ## Chart Configurations
109
+
110
+ | Parameter | Description | Default value |
111
+ | ------------------------ | ------------------------------------------------------------- | :-----------: |
112
+ | width | Width of the chart | 700 |
113
+ | height | Height of the chart | 500 |
114
+ | titlePadding | Top and Bottom padding of the title | 10 |
115
+ | titleFontSize | Title font size | 20 |
116
+ | showTitle | Title to be shown or not | true |
117
+ | xAxis | xAxis configuration | AxisConfig |
118
+ | yAxis | yAxis configuration | AxisConfig |
119
+ | chartOrientation | 'vertical' or 'horizontal' | 'vertical' |
120
+ | plotReservedSpacePercent | Minimum space plots will take inside the chart | 50 |
121
+ | showDataLabel | Should show the value corresponding to the bar within the bar | false |
122
+ | showDataLabelOutsideBar | If showing data label then show it outside the bar. | false |
123
+
124
+ ### AxisConfig
125
+
126
+ | Parameter | Description | Default value |
127
+ | ------------- | ------------------------------------ | :-----------: |
128
+ | showLabel | Show axis labels or tick values | true |
129
+ | labelFontSize | Font size of the label to be drawn | 14 |
130
+ | labelPadding | Top and Bottom padding of the label | 5 |
131
+ | showTitle | Axis title to be shown or not | true |
132
+ | titleFontSize | Axis title font size | 16 |
133
+ | titlePadding | Top and Bottom padding of Axis title | 5 |
134
+ | showTick | Tick to be shown or not | true |
135
+ | tickLength | How long the tick will be | 5 |
136
+ | tickWidth | How width the tick will be | 2 |
137
+ | showAxisLine | Axis line to be shown or not | true |
138
+ | axisLineWidth | Thickness of the axis line | 2 |
139
+
140
+ ## Chart Theme Variables
141
+
142
+ Themes for xychart reside inside the `xychart` attribute, allowing customization through the following syntax:
143
+
144
+ ```yaml
145
+ ---
146
+ config:
147
+ themeVariables:
148
+ xyChart:
149
+ titleColor: '#ff0000'
150
+ ---
151
+ ```
152
+
153
+ | Parameter | Description |
154
+ | ---------------- | --------------------------------------------------------- |
155
+ | backgroundColor | Background color of the whole chart |
156
+ | titleColor | Color of the Title text |
157
+ | dataLabelColor | Color of the Data labels (if shown) |
158
+ | xAxisLabelColor | Color of the x-axis labels |
159
+ | xAxisTitleColor | Color of the x-axis title |
160
+ | xAxisTickColor | Color of the x-axis tick |
161
+ | xAxisLineColor | Color of the x-axis line |
162
+ | yAxisLabelColor | Color of the y-axis labels |
163
+ | yAxisTitleColor | Color of the y-axis title |
164
+ | yAxisTickColor | Color of the y-axis tick |
165
+ | yAxisLineColor | Color of the y-axis line |
166
+ | plotColorPalette | String of colors separated by comma e.g. "#f3456, #43445" |
167
+
168
+ ### Setting Colors for Lines and Bars
169
+
170
+ To set the color for lines and bars, use the `plotColorPalette` parameter. Colors in the palette will correspond sequentially to the elements in your chart (e.g., first bar/line will use the first color specified in the palette).
171
+
172
+ ```mermaid-example
173
+ ---
174
+ config:
175
+ themeVariables:
176
+ xyChart:
177
+ plotColorPalette: '#000000, #0000FF, #00FF00, #FF0000'
178
+ ---
179
+ xychart
180
+ title "Different Colors in xyChart"
181
+ x-axis "categoriesX" ["Category 1", "Category 2", "Category 3", "Category 4"]
182
+ y-axis "valuesY" 0 --> 50
183
+ %% Black line
184
+ line [10,20,30,40]
185
+ %% Blue bar
186
+ bar [20,30,25,35]
187
+ %% Green bar
188
+ bar [15,25,20,30]
189
+ %% Red line
190
+ line [5,15,25,35]
191
+ ```
192
+
193
+ ```mermaid
194
+ ---
195
+ config:
196
+ themeVariables:
197
+ xyChart:
198
+ plotColorPalette: '#000000, #0000FF, #00FF00, #FF0000'
199
+ ---
200
+ xychart
201
+ title "Different Colors in xyChart"
202
+ x-axis "categoriesX" ["Category 1", "Category 2", "Category 3", "Category 4"]
203
+ y-axis "valuesY" 0 --> 50
204
+ %% Black line
205
+ line [10,20,30,40]
206
+ %% Blue bar
207
+ bar [20,30,25,35]
208
+ %% Green bar
209
+ bar [15,25,20,30]
210
+ %% Red line
211
+ line [5,15,25,35]
212
+ ```
213
+
214
+ ## Displaying individual values on a bar chart (v11.14.0+)
215
+
216
+ To show the value corresponding to a bar specify `showDataLabel: true`.
217
+
218
+ ```mermaid-example
219
+ ---
220
+ config:
221
+ xyChart:
222
+ showDataLabel: true
223
+ ---
224
+ xychart
225
+ title "Genres in top 100 book survey of 2025"
226
+ x-axis [comedy, romance, mystery, crime, "non fiction", other]
227
+ y-axis "Number of Books" 0 --> 30
228
+ bar [12,2,20,25,17,24]
229
+ ```
230
+
231
+ ```mermaid
232
+ ---
233
+ config:
234
+ xyChart:
235
+ showDataLabel: true
236
+ ---
237
+ xychart
238
+ title "Genres in top 100 book survey of 2025"
239
+ x-axis [comedy, romance, mystery, crime, "non fiction", other]
240
+ y-axis "Number of Books" 0 --> 30
241
+ bar [12,2,20,25,17,24]
242
+ ```
243
+
244
+ Labels are shown within the bar by default. To show the labels outside the bar, specify `showDataLabelOutsideBar: true`.
245
+
246
+ ```mermaid-example
247
+ ---
248
+ config:
249
+ xyChart:
250
+ showDataLabel: true
251
+ showDataLabelOutsideBar: true
252
+ ---
253
+ xychart
254
+ title "Genres in top 100 book survey of 2025"
255
+ x-axis [comedy, romance, mystery, crime, "non fiction", other]
256
+ y-axis "Number of Books" 0 --> 30
257
+ bar [12,2,20,25,17,24]
258
+ ```
259
+
260
+ ```mermaid
261
+ ---
262
+ config:
263
+ xyChart:
264
+ showDataLabel: true
265
+ showDataLabelOutsideBar: true
266
+ ---
267
+ xychart
268
+ title "Genres in top 100 book survey of 2025"
269
+ x-axis [comedy, romance, mystery, crime, "non fiction", other]
270
+ y-axis "Number of Books" 0 --> 30
271
+ bar [12,2,20,25,17,24]
272
+ ```
273
+
274
+ ## Example on config and theme
275
+
276
+ ```mermaid-example
277
+ ---
278
+ config:
279
+ xyChart:
280
+ width: 900
281
+ height: 600
282
+ showDataLabel: true
283
+ themeVariables:
284
+ xyChart:
285
+ titleColor: "#ff0000"
286
+ ---
287
+ xychart
288
+ title "Sales Revenue"
289
+ x-axis [jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec]
290
+ y-axis "Revenue (in $)" 4000 --> 11000
291
+ bar [5000, 6000, 7500, 8200, 9500, 10500, 11000, 10200, 9200, 8500, 7000, 6000]
292
+ line [5000, 6000, 7500, 8200, 9500, 10500, 11000, 10200, 9200, 8500, 7000, 6000]
293
+ ```
294
+
295
+ ```mermaid
296
+ ---
297
+ config:
298
+ xyChart:
299
+ width: 900
300
+ height: 600
301
+ showDataLabel: true
302
+ themeVariables:
303
+ xyChart:
304
+ titleColor: "#ff0000"
305
+ ---
306
+ xychart
307
+ title "Sales Revenue"
308
+ x-axis [jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec]
309
+ y-axis "Revenue (in $)" 4000 --> 11000
310
+ bar [5000, 6000, 7500, 8200, 9500, 10500, 11000, 10200, 9200, 8500, 7000, 6000]
311
+ line [5000, 6000, 7500, 8200, 9500, 10500, 11000, 10200, 9200, 8500, 7000, 6000]
312
+ ```