@groupby/ai-dev 0.5.9 → 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 (68) 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
  62. package/teams/rangers/resources/project-doc-contract.md +41 -0
  63. package/teams/rangers/skills/team-code-review/SKILL.md +66 -0
  64. package/teams/rangers/skills/team-development/SKILL.md +43 -0
  65. package/teams/rangers/skills/team-docs-snapshot/SKILL.md +58 -0
  66. package/teams/rangers/skills/team-docs-snapshot/scripts/collect_project_docs.py +166 -0
  67. package/teams/rangers/skills/team-phase-planning/SKILL.md +63 -0
  68. package/teams/rangers/skills/team-project-orientation/SKILL.md +46 -0
@@ -0,0 +1,301 @@
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/examples.md](../../packages/mermaid/src/docs/syntax/examples.md).
6
+
7
+ # Examples
8
+
9
+ This page contains a collection of examples of diagrams and charts that can be created through mermaid and its myriad applications.
10
+
11
+ **If you wish to learn how to support mermaid on your webpage, read the [Beginner's Guide](../config/usage.md?id=usage).**
12
+
13
+ **If you wish to learn about mermaid's syntax, Read the [Diagram Syntax](../syntax/flowchart.md?id=flowcharts-basic-syntax) section.**
14
+
15
+ ## Basic Pie Chart
16
+
17
+ ```mermaid-example
18
+ pie title NETFLIX
19
+ "Time spent looking for movie" : 90
20
+ "Time spent watching it" : 10
21
+ ```
22
+
23
+ ```mermaid
24
+ pie title NETFLIX
25
+ "Time spent looking for movie" : 90
26
+ "Time spent watching it" : 10
27
+ ```
28
+
29
+ ```mermaid-example
30
+ pie title What Voldemort doesn't have?
31
+ "FRIENDS" : 2
32
+ "FAMILY" : 3
33
+ "NOSE" : 45
34
+ ```
35
+
36
+ ```mermaid
37
+ pie title What Voldemort doesn't have?
38
+ "FRIENDS" : 2
39
+ "FAMILY" : 3
40
+ "NOSE" : 45
41
+ ```
42
+
43
+ ## Basic sequence diagram
44
+
45
+ ```mermaid-example
46
+ sequenceDiagram
47
+ Alice ->> Bob: Hello Bob, how are you?
48
+ Bob-->>John: How about you John?
49
+ Bob--x Alice: I am good thanks!
50
+ Bob-x John: I am good thanks!
51
+ Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row.
52
+
53
+ Bob-->Alice: Checking with John...
54
+ Alice->John: Yes... John, how are you?
55
+ ```
56
+
57
+ ```mermaid
58
+ sequenceDiagram
59
+ Alice ->> Bob: Hello Bob, how are you?
60
+ Bob-->>John: How about you John?
61
+ Bob--x Alice: I am good thanks!
62
+ Bob-x John: I am good thanks!
63
+ Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row.
64
+
65
+ Bob-->Alice: Checking with John...
66
+ Alice->John: Yes... John, how are you?
67
+ ```
68
+
69
+ ## Basic flowchart
70
+
71
+ ```mermaid-example
72
+ graph LR
73
+ A[Square Rect] -- Link text --> B((Circle))
74
+ A --> C(Round Rect)
75
+ B --> D{Rhombus}
76
+ C --> D
77
+ ```
78
+
79
+ ```mermaid
80
+ graph LR
81
+ A[Square Rect] -- Link text --> B((Circle))
82
+ A --> C(Round Rect)
83
+ B --> D{Rhombus}
84
+ C --> D
85
+ ```
86
+
87
+ ## Larger flowchart with some styling
88
+
89
+ ```mermaid-example
90
+ graph TB
91
+ sq[Square shape] --> ci((Circle shape))
92
+
93
+ subgraph A
94
+ od>Odd shape]-- Two line<br/>edge comment --> ro
95
+ di{Diamond with <br/> line break} -.-> ro(Rounded<br>square<br>shape)
96
+ di==>ro2(Rounded square shape)
97
+ end
98
+
99
+ %% Notice that no text in shape are added here instead that is appended further down
100
+ e --> od3>Really long text with linebreak<br>in an Odd shape]
101
+
102
+ %% Comments after double percent signs
103
+ e((Inner / circle<br>and some odd <br>special characters)) --> f(,.?!+-*ز)
104
+
105
+ cyr[Cyrillic]-->cyr2((Circle shape Начало));
106
+
107
+ classDef green fill:#9f6,stroke:#333,stroke-width:2px;
108
+ classDef orange fill:#f96,stroke:#333,stroke-width:4px;
109
+ class sq,e green
110
+ class di orange
111
+ ```
112
+
113
+ ```mermaid
114
+ graph TB
115
+ sq[Square shape] --> ci((Circle shape))
116
+
117
+ subgraph A
118
+ od>Odd shape]-- Two line<br/>edge comment --> ro
119
+ di{Diamond with <br/> line break} -.-> ro(Rounded<br>square<br>shape)
120
+ di==>ro2(Rounded square shape)
121
+ end
122
+
123
+ %% Notice that no text in shape are added here instead that is appended further down
124
+ e --> od3>Really long text with linebreak<br>in an Odd shape]
125
+
126
+ %% Comments after double percent signs
127
+ e((Inner / circle<br>and some odd <br>special characters)) --> f(,.?!+-*ز)
128
+
129
+ cyr[Cyrillic]-->cyr2((Circle shape Начало));
130
+
131
+ classDef green fill:#9f6,stroke:#333,stroke-width:2px;
132
+ classDef orange fill:#f96,stroke:#333,stroke-width:4px;
133
+ class sq,e green
134
+ class di orange
135
+ ```
136
+
137
+ ## SequenceDiagram: Loops, alt and opt
138
+
139
+ ```mermaid-example
140
+ sequenceDiagram
141
+ loop Daily query
142
+ Alice->>Bob: Hello Bob, how are you?
143
+ alt is sick
144
+ Bob->>Alice: Not so good :(
145
+ else is well
146
+ Bob->>Alice: Feeling fresh like a daisy
147
+ end
148
+
149
+ opt Extra response
150
+ Bob->>Alice: Thanks for asking
151
+ end
152
+ end
153
+ ```
154
+
155
+ ```mermaid
156
+ sequenceDiagram
157
+ loop Daily query
158
+ Alice->>Bob: Hello Bob, how are you?
159
+ alt is sick
160
+ Bob->>Alice: Not so good :(
161
+ else is well
162
+ Bob->>Alice: Feeling fresh like a daisy
163
+ end
164
+
165
+ opt Extra response
166
+ Bob->>Alice: Thanks for asking
167
+ end
168
+ end
169
+ ```
170
+
171
+ ## SequenceDiagram: Message to self in loop
172
+
173
+ ```mermaid-example
174
+ sequenceDiagram
175
+ participant Alice
176
+ participant Bob
177
+ Alice->>John: Hello John, how are you?
178
+ loop HealthCheck
179
+ John->>John: Fight against hypochondria
180
+ end
181
+ Note right of John: Rational thoughts<br/>prevail...
182
+ John-->>Alice: Great!
183
+ John->>Bob: How about you?
184
+ Bob-->>John: Jolly good!
185
+ ```
186
+
187
+ ```mermaid
188
+ sequenceDiagram
189
+ participant Alice
190
+ participant Bob
191
+ Alice->>John: Hello John, how are you?
192
+ loop HealthCheck
193
+ John->>John: Fight against hypochondria
194
+ end
195
+ Note right of John: Rational thoughts<br/>prevail...
196
+ John-->>Alice: Great!
197
+ John->>Bob: How about you?
198
+ Bob-->>John: Jolly good!
199
+ ```
200
+
201
+ ## Sequence Diagram: Blogging app service communication
202
+
203
+ ```mermaid-example
204
+ sequenceDiagram
205
+ participant web as Web Browser
206
+ participant blog as Blog Service
207
+ participant account as Account Service
208
+ participant mail as Mail Service
209
+ participant db as Storage
210
+
211
+ Note over web,db: The user must be logged in to submit blog posts
212
+ web->>+account: Logs in using credentials
213
+ account->>db: Query stored accounts
214
+ db->>account: Respond with query result
215
+
216
+ alt Credentials not found
217
+ account->>web: Invalid credentials
218
+ else Credentials found
219
+ account->>-web: Successfully logged in
220
+
221
+ Note over web,db: When the user is authenticated, they can now submit new posts
222
+ web->>+blog: Submit new post
223
+ blog->>db: Store post data
224
+
225
+ par Notifications
226
+ blog--)mail: Send mail to blog subscribers
227
+ blog--)db: Store in-site notifications
228
+ and Response
229
+ blog-->>-web: Successfully posted
230
+ end
231
+ end
232
+
233
+ ```
234
+
235
+ ```mermaid
236
+ sequenceDiagram
237
+ participant web as Web Browser
238
+ participant blog as Blog Service
239
+ participant account as Account Service
240
+ participant mail as Mail Service
241
+ participant db as Storage
242
+
243
+ Note over web,db: The user must be logged in to submit blog posts
244
+ web->>+account: Logs in using credentials
245
+ account->>db: Query stored accounts
246
+ db->>account: Respond with query result
247
+
248
+ alt Credentials not found
249
+ account->>web: Invalid credentials
250
+ else Credentials found
251
+ account->>-web: Successfully logged in
252
+
253
+ Note over web,db: When the user is authenticated, they can now submit new posts
254
+ web->>+blog: Submit new post
255
+ blog->>db: Store post data
256
+
257
+ par Notifications
258
+ blog--)mail: Send mail to blog subscribers
259
+ blog--)db: Store in-site notifications
260
+ and Response
261
+ blog-->>-web: Successfully posted
262
+ end
263
+ end
264
+
265
+ ```
266
+
267
+ ## A commit flow diagram.
268
+
269
+ ```mermaid-example
270
+ gitGraph:
271
+ commit "Ashish"
272
+ branch newbranch
273
+ checkout newbranch
274
+ commit id:"1111"
275
+ commit tag:"test"
276
+ checkout main
277
+ commit type: HIGHLIGHT
278
+ commit
279
+ merge newbranch
280
+ commit
281
+ branch b2
282
+ commit
283
+ ```
284
+
285
+ ```mermaid
286
+ gitGraph:
287
+ commit "Ashish"
288
+ branch newbranch
289
+ checkout newbranch
290
+ commit id:"1111"
291
+ commit tag:"test"
292
+ checkout main
293
+ commit type: HIGHLIGHT
294
+ commit
295
+ merge newbranch
296
+ commit
297
+ branch b2
298
+ commit
299
+ ```
300
+
301
+ <!--- cspell:ignore Ashish newbranch --->