@duckmind/deepquark-darwin-arm64 0.9.78 → 0.9.81

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 (240) hide show
  1. package/.deepquark/skills/bundled/data-storytelling/SKILL.md +453 -0
  2. package/.deepquark/skills/bundled/docx/LICENSE.txt +30 -0
  3. package/.deepquark/skills/bundled/docx/SKILL.md +481 -0
  4. package/.deepquark/skills/bundled/docx/scripts/__init__.py +1 -0
  5. package/.deepquark/skills/bundled/docx/scripts/accept_changes.py +135 -0
  6. package/.deepquark/skills/bundled/docx/scripts/comment.py +318 -0
  7. package/.deepquark/skills/bundled/docx/scripts/office/helpers/__init__.py +0 -0
  8. package/.deepquark/skills/bundled/docx/scripts/office/helpers/merge_runs.py +199 -0
  9. package/.deepquark/skills/bundled/docx/scripts/office/helpers/simplify_redlines.py +197 -0
  10. package/.deepquark/skills/bundled/docx/scripts/office/pack.py +159 -0
  11. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  12. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  13. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  14. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  15. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  16. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  17. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  18. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  19. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  20. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  21. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  22. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  23. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  24. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  25. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  26. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  27. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  28. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  29. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  30. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  31. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  32. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  33. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  34. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  35. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  36. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  37. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  38. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  39. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  40. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  41. package/.deepquark/skills/bundled/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  42. package/.deepquark/skills/bundled/docx/scripts/office/schemas/mce/mc.xsd +75 -0
  43. package/.deepquark/skills/bundled/docx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  44. package/.deepquark/skills/bundled/docx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  45. package/.deepquark/skills/bundled/docx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  46. package/.deepquark/skills/bundled/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  47. package/.deepquark/skills/bundled/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  48. package/.deepquark/skills/bundled/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  49. package/.deepquark/skills/bundled/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  50. package/.deepquark/skills/bundled/docx/scripts/office/soffice.py +183 -0
  51. package/.deepquark/skills/bundled/docx/scripts/office/unpack.py +132 -0
  52. package/.deepquark/skills/bundled/docx/scripts/office/validate.py +111 -0
  53. package/.deepquark/skills/bundled/docx/scripts/office/validators/__init__.py +15 -0
  54. package/.deepquark/skills/bundled/docx/scripts/office/validators/base.py +847 -0
  55. package/.deepquark/skills/bundled/docx/scripts/office/validators/docx.py +446 -0
  56. package/.deepquark/skills/bundled/docx/scripts/office/validators/pptx.py +275 -0
  57. package/.deepquark/skills/bundled/docx/scripts/office/validators/redlining.py +247 -0
  58. package/.deepquark/skills/bundled/docx/scripts/templates/comments.xml +3 -0
  59. package/.deepquark/skills/bundled/docx/scripts/templates/commentsExtended.xml +3 -0
  60. package/.deepquark/skills/bundled/docx/scripts/templates/commentsExtensible.xml +3 -0
  61. package/.deepquark/skills/bundled/docx/scripts/templates/commentsIds.xml +3 -0
  62. package/.deepquark/skills/bundled/docx/scripts/templates/people.xml +3 -0
  63. package/.deepquark/skills/bundled/drawio-architect/SKILL.md +300 -0
  64. package/.deepquark/skills/bundled/drawio-architect/references/architecture-patterns.md +236 -0
  65. package/.deepquark/skills/bundled/drawio-architect/references/branding.md +180 -0
  66. package/.deepquark/skills/bundled/drawio-architect/references/cloud-icons.md +493 -0
  67. package/.deepquark/skills/bundled/drawio-architect/references/style-guide.md +268 -0
  68. package/.deepquark/skills/bundled/duckmind-deep-research/ARCHITECTURE_REVIEW.md +495 -0
  69. package/.deepquark/skills/bundled/duckmind-deep-research/AUTONOMY_VERIFICATION.md +420 -0
  70. package/.deepquark/skills/bundled/duckmind-deep-research/COMPETITIVE_ANALYSIS.md +179 -0
  71. package/.deepquark/skills/bundled/duckmind-deep-research/CONTEXT_OPTIMIZATION.md +293 -0
  72. package/.deepquark/skills/bundled/duckmind-deep-research/QUICK_START.md +167 -0
  73. package/.deepquark/skills/bundled/duckmind-deep-research/README.md +259 -0
  74. package/.deepquark/skills/bundled/duckmind-deep-research/SKILL.md +754 -0
  75. package/.deepquark/skills/bundled/duckmind-deep-research/WORD_PRECISION_AUDIT.md +476 -0
  76. package/.deepquark/skills/bundled/duckmind-deep-research/reference/methodology.md +384 -0
  77. package/.deepquark/skills/bundled/duckmind-deep-research/requirements.txt +10 -0
  78. package/.deepquark/skills/bundled/duckmind-deep-research/scripts/citation_manager.py +177 -0
  79. package/.deepquark/skills/bundled/duckmind-deep-research/scripts/md_to_html.py +330 -0
  80. package/.deepquark/skills/bundled/duckmind-deep-research/scripts/research_engine.py +578 -0
  81. package/.deepquark/skills/bundled/duckmind-deep-research/scripts/source_evaluator.py +292 -0
  82. package/.deepquark/skills/bundled/duckmind-deep-research/scripts/validate_report.py +354 -0
  83. package/.deepquark/skills/bundled/duckmind-deep-research/scripts/verify_citations.py +430 -0
  84. package/.deepquark/skills/bundled/duckmind-deep-research/scripts/verify_html.py +220 -0
  85. package/.deepquark/skills/bundled/duckmind-deep-research/templates/mckinsey_report_template.html +443 -0
  86. package/.deepquark/skills/bundled/duckmind-deep-research/templates/report_template.md +414 -0
  87. package/.deepquark/skills/bundled/duckmind-deep-research/tests/fixtures/invalid_report.md +27 -0
  88. package/.deepquark/skills/bundled/duckmind-deep-research/tests/fixtures/valid_report.md +114 -0
  89. package/.deepquark/skills/bundled/duckmind-multimodal/SKILL.md +171 -0
  90. package/.deepquark/skills/bundled/duckmind-multimodal/references/image-generation.md +131 -0
  91. package/.deepquark/skills/bundled/duckmind-multimodal/references/pdf-processing.md +120 -0
  92. package/.deepquark/skills/bundled/duckmind-transcribe/SKILL.md +70 -0
  93. package/.deepquark/skills/bundled/duckmind-transcribe/scripts/transcribe.sh +134 -0
  94. package/.deepquark/skills/bundled/excel-analysis/SKILL.md +247 -0
  95. package/.deepquark/skills/bundled/ge-payroll/SKILL.md +153 -0
  96. package/.deepquark/skills/bundled/ge-payroll/evals/evals.json +23 -0
  97. package/.deepquark/skills/bundled/ge-payroll/references/pain-points-improvements.md +106 -0
  98. package/.deepquark/skills/bundled/ge-payroll/references/process-detail.md +217 -0
  99. package/.deepquark/skills/bundled/ge-payroll/references/raci-stakeholders.md +85 -0
  100. package/.deepquark/skills/bundled/ge-payroll/references/timeline-mandays.md +64 -0
  101. package/.deepquark/skills/bundled/pdf/LICENSE.txt +30 -0
  102. package/.deepquark/skills/bundled/pdf/SKILL.md +314 -0
  103. package/.deepquark/skills/bundled/pdf/forms.md +294 -0
  104. package/.deepquark/skills/bundled/pdf/reference.md +612 -0
  105. package/.deepquark/skills/bundled/pdf/scripts/check_bounding_boxes.py +65 -0
  106. package/.deepquark/skills/bundled/pdf/scripts/check_fillable_fields.py +11 -0
  107. package/.deepquark/skills/bundled/pdf/scripts/convert_pdf_to_images.py +33 -0
  108. package/.deepquark/skills/bundled/pdf/scripts/create_validation_image.py +37 -0
  109. package/.deepquark/skills/bundled/pdf/scripts/extract_form_field_info.py +122 -0
  110. package/.deepquark/skills/bundled/pdf/scripts/extract_form_structure.py +115 -0
  111. package/.deepquark/skills/bundled/pdf/scripts/fill_fillable_fields.py +98 -0
  112. package/.deepquark/skills/bundled/pdf/scripts/fill_pdf_form_with_annotations.py +107 -0
  113. package/.deepquark/skills/bundled/perplexity-search/SKILL.md +447 -0
  114. package/.deepquark/skills/bundled/perplexity-search/assets/.env.example +16 -0
  115. package/.deepquark/skills/bundled/perplexity-search/references/model_comparison.md +386 -0
  116. package/.deepquark/skills/bundled/perplexity-search/references/openrouter_setup.md +454 -0
  117. package/.deepquark/skills/bundled/perplexity-search/references/search_strategies.md +258 -0
  118. package/.deepquark/skills/bundled/perplexity-search/scripts/perplexity_search.py +277 -0
  119. package/.deepquark/skills/bundled/perplexity-search/scripts/setup_env.py +171 -0
  120. package/.deepquark/skills/bundled/pptx/LICENSE.txt +30 -0
  121. package/.deepquark/skills/bundled/pptx/SKILL.md +232 -0
  122. package/.deepquark/skills/bundled/pptx/editing.md +205 -0
  123. package/.deepquark/skills/bundled/pptx/pptxgenjs.md +420 -0
  124. package/.deepquark/skills/bundled/pptx/scripts/__init__.py +0 -0
  125. package/.deepquark/skills/bundled/pptx/scripts/add_slide.py +195 -0
  126. package/.deepquark/skills/bundled/pptx/scripts/clean.py +286 -0
  127. package/.deepquark/skills/bundled/pptx/scripts/office/helpers/__init__.py +0 -0
  128. package/.deepquark/skills/bundled/pptx/scripts/office/helpers/merge_runs.py +199 -0
  129. package/.deepquark/skills/bundled/pptx/scripts/office/helpers/simplify_redlines.py +197 -0
  130. package/.deepquark/skills/bundled/pptx/scripts/office/pack.py +159 -0
  131. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  132. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  133. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  134. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  135. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  136. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  137. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  138. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  139. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  140. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  141. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  142. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  143. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  144. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  145. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  146. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  147. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  148. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  149. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  150. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  151. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  152. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  153. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  154. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  155. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  156. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  157. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  158. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  159. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  160. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  161. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  162. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/mce/mc.xsd +75 -0
  163. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  164. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  165. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  166. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  167. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  168. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  169. package/.deepquark/skills/bundled/pptx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  170. package/.deepquark/skills/bundled/pptx/scripts/office/soffice.py +183 -0
  171. package/.deepquark/skills/bundled/pptx/scripts/office/unpack.py +132 -0
  172. package/.deepquark/skills/bundled/pptx/scripts/office/validate.py +111 -0
  173. package/.deepquark/skills/bundled/pptx/scripts/office/validators/__init__.py +15 -0
  174. package/.deepquark/skills/bundled/pptx/scripts/office/validators/base.py +847 -0
  175. package/.deepquark/skills/bundled/pptx/scripts/office/validators/docx.py +446 -0
  176. package/.deepquark/skills/bundled/pptx/scripts/office/validators/pptx.py +275 -0
  177. package/.deepquark/skills/bundled/pptx/scripts/office/validators/redlining.py +247 -0
  178. package/.deepquark/skills/bundled/pptx/scripts/thumbnail.py +289 -0
  179. package/.deepquark/skills/bundled/text-to-pdf-automation/SKILL.md +91 -0
  180. package/.deepquark/skills/bundled/web-fetch/SKILL.md +56 -0
  181. package/.deepquark/skills/bundled/web-fetch/scripts/fetch.sh +54 -0
  182. package/.deepquark/skills/bundled/xlsx/LICENSE.txt +30 -0
  183. package/.deepquark/skills/bundled/xlsx/SKILL.md +292 -0
  184. package/.deepquark/skills/bundled/xlsx/scripts/office/helpers/__init__.py +0 -0
  185. package/.deepquark/skills/bundled/xlsx/scripts/office/helpers/merge_runs.py +199 -0
  186. package/.deepquark/skills/bundled/xlsx/scripts/office/helpers/simplify_redlines.py +197 -0
  187. package/.deepquark/skills/bundled/xlsx/scripts/office/pack.py +159 -0
  188. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  189. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  190. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  191. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  192. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  193. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  194. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  195. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  196. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  197. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  198. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  199. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  200. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  201. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  202. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  203. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  204. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  205. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  206. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  207. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  208. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  209. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  210. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  211. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  212. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  213. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  214. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  215. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  216. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  217. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  218. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  219. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/mce/mc.xsd +75 -0
  220. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  221. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  222. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  223. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  224. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  225. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  226. package/.deepquark/skills/bundled/xlsx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  227. package/.deepquark/skills/bundled/xlsx/scripts/office/soffice.py +183 -0
  228. package/.deepquark/skills/bundled/xlsx/scripts/office/unpack.py +132 -0
  229. package/.deepquark/skills/bundled/xlsx/scripts/office/validate.py +111 -0
  230. package/.deepquark/skills/bundled/xlsx/scripts/office/validators/__init__.py +15 -0
  231. package/.deepquark/skills/bundled/xlsx/scripts/office/validators/base.py +847 -0
  232. package/.deepquark/skills/bundled/xlsx/scripts/office/validators/docx.py +446 -0
  233. package/.deepquark/skills/bundled/xlsx/scripts/office/validators/pptx.py +275 -0
  234. package/.deepquark/skills/bundled/xlsx/scripts/office/validators/redlining.py +247 -0
  235. package/.deepquark/skills/bundled/xlsx/scripts/recalc.py +184 -0
  236. package/.deepquark/skills/bundled/youtube-downloader/SKILL.md +99 -0
  237. package/.deepquark/skills/bundled/youtube-downloader/scripts/download_video.py +145 -0
  238. package/.deepquark/skills/bundled/youtube-transcribe-skill/SKILL.md +116 -0
  239. package/bin/deepquark +0 -0
  240. package/package.json +4 -3
@@ -0,0 +1,180 @@
1
+ # Company Branding Configuration
2
+
3
+ This file defines organisation-specific colours and styles for diagrams. Customise these values to match your company's brand guidelines.
4
+
5
+ ## How to Customise
6
+
7
+ 1. Replace the placeholder hex codes with your company colours
8
+ 2. Update the example company name references
9
+ 3. Adjust the accent colours to complement your primary brand
10
+
11
+ ---
12
+
13
+ ## Brand Color Definitions
14
+
15
+ ### Primary Brand Colors
16
+
17
+ Replace these with your organisation's colours:
18
+
19
+ ```
20
+ # Primary (main brand color - headers, key elements)
21
+ Primary: fillColor=#0066CC;strokeColor=#0052a3;fontColor=#FFFFFF
22
+
23
+ # Secondary (accent color - highlights, call-to-action elements)
24
+ Secondary: fillColor=#FFB800;strokeColor=#cc9400;fontColor=#333333
25
+
26
+ # Dark (footers, dark backgrounds)
27
+ Dark: fillColor=#1a1a2e;strokeColor=#1a1a2e;fontColor=#FFFFFF
28
+
29
+ # Light Background (containers, zones)
30
+ Light BG: fillColor=#f0f4f8;strokeColor=#0066CC
31
+ ```
32
+
33
+ ### Calculating Stroke Colors
34
+
35
+ For professional results, stroke colors should be ~20% darker than fill colors:
36
+
37
+ | Fill Color | Stroke Calculation | Result |
38
+ |------------|-------------------|--------|
39
+ | `#0066CC` | Reduce each RGB by 20% | `#0052a3` |
40
+ | `#FFB800` | Reduce each RGB by 20% | `#cc9400` |
41
+
42
+ **Quick method:** Use an online color darkener or multiply each RGB value by 0.8.
43
+
44
+ ---
45
+
46
+ ## Standard Brand Applications
47
+
48
+ ### Header Bar (Top of Diagrams)
49
+
50
+ ```xml
51
+ <!-- Branded header bar -->
52
+ <mxCell id="header" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#0066CC;strokeColor=#0066CC;" vertex="1" parent="1">
53
+ <mxGeometry x="40" y="40" width="1020" height="40" as="geometry" />
54
+ </mxCell>
55
+
56
+ <!-- Company name in header -->
57
+ <mxCell id="header-title" value="Your Company Name" style="text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontSize=14;fontStyle=1;fontColor=#FFFFFF;" vertex="1" parent="1">
58
+ <mxGeometry x="50" y="45" width="200" height="30" as="geometry" />
59
+ </mxCell>
60
+ ```
61
+
62
+ ### Platform/Service Zone (Center Focus Area)
63
+
64
+ ```xml
65
+ <!-- Branded central zone -->
66
+ <mxCell id="platform-zone" value="" style="rounded=1;fillColor=#0066CC;strokeColor=#0066CC;opacity=90;" vertex="1" parent="1">
67
+ <mxGeometry x="380" y="100" width="300" height="400" as="geometry" />
68
+ </mxCell>
69
+
70
+ <!-- Zone title (white text on brand color) -->
71
+ <mxCell id="zone-title" value="Your Platform" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;fontStyle=1;fontSize=14;fontColor=#FFFFFF;" vertex="1" parent="1">
72
+ <mxGeometry x="380" y="110" width="300" height="30" as="geometry" />
73
+ </mxCell>
74
+ ```
75
+
76
+ ### Accent Arrows (Data Flow, Replication)
77
+
78
+ ```xml
79
+ <!-- Branded flex arrow -->
80
+ <mxCell id="flow-arrow" value="" style="shape=flexArrow;endArrow=classic;html=1;fillColor=#FFB800;strokeColor=#cc9400;width=20;endSize=8;" edge="1" parent="1">
81
+ <mxGeometry relative="1" as="geometry">
82
+ <mxPoint x="200" y="200" as="sourcePoint" />
83
+ <mxPoint x="400" y="200" as="targetPoint" />
84
+ </mxGeometry>
85
+ </mxCell>
86
+ ```
87
+
88
+ ### Footer Bar
89
+
90
+ ```xml
91
+ <!-- Dark footer bar -->
92
+ <mxCell id="footer" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#1a1a2e;strokeColor=#1a1a2e;" vertex="1" parent="1">
93
+ <mxGeometry x="40" y="760" width="1020" height="30" as="geometry" />
94
+ </mxCell>
95
+
96
+ <!-- Footer text -->
97
+ <mxCell id="footer-text" value="© Your Company | Architecture Diagram | Last Updated: DATE" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;fontSize=9;fontColor=#FFFFFF;" vertex="1" parent="1">
98
+ <mxGeometry x="40" y="760" width="1020" height="30" as="geometry" />
99
+ </mxCell>
100
+ ```
101
+
102
+ ---
103
+
104
+ ## Example Brand Configurations
105
+
106
+ ### Tech Company (Blue/Orange)
107
+
108
+ ```
109
+ Primary: fillColor=#0066CC;strokeColor=#0052a3;fontColor=#FFFFFF
110
+ Secondary: fillColor=#FF6B00;strokeColor=#cc5500;fontColor=#FFFFFF
111
+ Dark: fillColor=#1a1a2e;strokeColor=#1a1a2e;fontColor=#FFFFFF
112
+ Light BG: fillColor=#e8f4fc;strokeColor=#0066CC
113
+ ```
114
+
115
+ ### Healthcare (Teal/Green)
116
+
117
+ ```
118
+ Primary: fillColor=#008B8B;strokeColor=#006f6f;fontColor=#FFFFFF
119
+ Secondary: fillColor=#90EE90;strokeColor=#73be73;fontColor=#333333
120
+ Dark: fillColor=#2F4F4F;strokeColor=#2F4F4F;fontColor=#FFFFFF
121
+ Light BG: fillColor=#E0FFFF;strokeColor=#008B8B
122
+ ```
123
+
124
+ ### Finance (Navy/Gold)
125
+
126
+ ```
127
+ Primary: fillColor=#1B365D;strokeColor=#162b4a;fontColor=#FFFFFF
128
+ Secondary: fillColor=#C5A572;strokeColor=#9e845b;fontColor=#333333
129
+ Dark: fillColor=#0D1B2A;strokeColor=#0D1B2A;fontColor=#FFFFFF
130
+ Light BG: fillColor=#F5F5F0;strokeColor=#1B365D
131
+ ```
132
+
133
+ ### Government/Public Sector (Dark Blue/Red)
134
+
135
+ ```
136
+ Primary: fillColor=#003366;strokeColor=#002952;fontColor=#FFFFFF
137
+ Secondary: fillColor=#CC0000;strokeColor=#a30000;fontColor=#FFFFFF
138
+ Dark: fillColor=#1C1C1C;strokeColor=#1C1C1C;fontColor=#FFFFFF
139
+ Light BG: fillColor=#F0F0F0;strokeColor=#003366
140
+ ```
141
+
142
+ ---
143
+
144
+ ## Color Accessibility Notes
145
+
146
+ When choosing brand colors for diagrams:
147
+
148
+ 1. **Contrast ratio**: Ensure text has sufficient contrast against backgrounds (WCAG AA minimum 4.5:1)
149
+ 2. **Color blindness**: Don't rely solely on color to convey meaning—use patterns, labels, or icons
150
+ 3. **Print-friendly**: Test how diagrams look in grayscale for printing
151
+ 4. **Consistent meaning**: Use the same colors for the same concepts across all diagrams
152
+
153
+ ---
154
+
155
+ ## Quick Reference: Style Strings
156
+
157
+ Copy-paste ready style snippets:
158
+
159
+ ```
160
+ # Header bar
161
+ fillColor=#0066CC;strokeColor=#0066CC
162
+
163
+ # Central branded zone
164
+ fillColor=#0066CC;strokeColor=#0066CC;rounded=1;opacity=90
165
+
166
+ # Accent arrow
167
+ fillColor=#FFB800;strokeColor=#cc9400
168
+
169
+ # Footer bar
170
+ fillColor=#1a1a2e;strokeColor=#1a1a2e
171
+
172
+ # Light container background
173
+ fillColor=#f0f4f8;strokeColor=#0066CC;rounded=1
174
+
175
+ # White text on brand
176
+ fontColor=#FFFFFF;fontSize=14;fontStyle=1
177
+
178
+ # Dark text on light
179
+ fontColor=#333333;fontSize=12
180
+ ```
@@ -0,0 +1,493 @@
1
+ # Cloud Provider Icons Reference
2
+
3
+ Draw.io has built-in shape libraries for AWS, Azure, and GCP. This reference covers the mxCell syntax for using official cloud icons.
4
+
5
+ ## Table of Contents
6
+
7
+ 1. [AWS Icons (aws4)](#aws-icons-aws4)
8
+ 2. [Azure Icons (azure2)](#azure-icons-azure2)
9
+ 3. [GCP Icons](#gcp-icons)
10
+ 4. [AWS Groups and Containers](#aws-groups-and-containers)
11
+ 5. [Usage Tips](#usage-tips)
12
+
13
+ ---
14
+
15
+ ## AWS Icons (aws4)
16
+
17
+ AWS icons use the `mxgraph.aws4` shape library with the `resourceIcon` shape type.
18
+
19
+ ### Base Style Template
20
+
21
+ ```xml
22
+ <mxCell id="unique-id" value="Label" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#COLOR;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.SERVICE_NAME;" vertex="1" parent="1">
23
+ <mxGeometry x="100" y="100" width="78" height="78" as="geometry" />
24
+ </mxCell>
25
+ ```
26
+
27
+ ### AWS Service Categories and Colors
28
+
29
+ | Category | fillColor | Services |
30
+ |----------|-----------|----------|
31
+ | Compute | #ED7100 | ec2, lambda, ecs, eks, fargate, batch |
32
+ | Storage | #7AA116 | s3, ebs, efs, fsx, storage_gateway |
33
+ | Database | #C925D1 | rds, dynamodb, elasticache, redshift, neptune, documentdb |
34
+ | Networking | #8C4FFF | vpc, cloudfront, route53, api_gateway, elb, direct_connect |
35
+ | Security | #DD344C | iam, cognito, secrets_manager, kms, waf, shield |
36
+ | Management | #E7157B | cloudwatch, cloudformation, systems_manager, config |
37
+ | Analytics | #8C4FFF | kinesis, athena, emr, glue, quicksight |
38
+ | Application | #E7157B | sns, sqs, step_functions, eventbridge |
39
+ | Migration | #7AA116 | migration_hub, dms, datasync |
40
+
41
+ ### Common AWS Service Icons
42
+
43
+ #### Compute
44
+ ```xml
45
+ <!-- EC2 -->
46
+ resIcon=mxgraph.aws4.ec2;fillColor=#ED7100
47
+
48
+ <!-- Lambda -->
49
+ resIcon=mxgraph.aws4.lambda;fillColor=#ED7100
50
+
51
+ <!-- ECS -->
52
+ resIcon=mxgraph.aws4.ecs;fillColor=#ED7100
53
+
54
+ <!-- EKS -->
55
+ resIcon=mxgraph.aws4.eks;fillColor=#ED7100
56
+
57
+ <!-- Fargate -->
58
+ resIcon=mxgraph.aws4.fargate;fillColor=#ED7100
59
+ ```
60
+
61
+ #### Storage
62
+ ```xml
63
+ <!-- S3 -->
64
+ resIcon=mxgraph.aws4.s3;fillColor=#7AA116
65
+
66
+ <!-- EBS -->
67
+ resIcon=mxgraph.aws4.elastic_block_store;fillColor=#7AA116
68
+
69
+ <!-- EFS -->
70
+ resIcon=mxgraph.aws4.elastic_file_system;fillColor=#7AA116
71
+ ```
72
+
73
+ #### Database
74
+ ```xml
75
+ <!-- RDS -->
76
+ resIcon=mxgraph.aws4.rds;fillColor=#C925D1
77
+
78
+ <!-- DynamoDB -->
79
+ resIcon=mxgraph.aws4.dynamodb;fillColor=#C925D1
80
+
81
+ <!-- ElastiCache -->
82
+ resIcon=mxgraph.aws4.elasticache;fillColor=#C925D1
83
+
84
+ <!-- Aurora -->
85
+ resIcon=mxgraph.aws4.aurora;fillColor=#C925D1
86
+
87
+ <!-- Redshift -->
88
+ resIcon=mxgraph.aws4.redshift;fillColor=#C925D1
89
+ ```
90
+
91
+ #### Networking
92
+ ```xml
93
+ <!-- VPC -->
94
+ resIcon=mxgraph.aws4.vpc;fillColor=#8C4FFF
95
+
96
+ <!-- CloudFront -->
97
+ resIcon=mxgraph.aws4.cloudfront;fillColor=#8C4FFF
98
+
99
+ <!-- Route 53 -->
100
+ resIcon=mxgraph.aws4.route_53;fillColor=#8C4FFF
101
+
102
+ <!-- API Gateway -->
103
+ resIcon=mxgraph.aws4.api_gateway;fillColor=#E7157B
104
+
105
+ <!-- ELB / ALB -->
106
+ resIcon=mxgraph.aws4.elastic_load_balancing;fillColor=#8C4FFF
107
+
108
+ <!-- Direct Connect -->
109
+ resIcon=mxgraph.aws4.direct_connect;fillColor=#8C4FFF
110
+
111
+ <!-- Transit Gateway -->
112
+ resIcon=mxgraph.aws4.transit_gateway;fillColor=#8C4FFF
113
+ ```
114
+
115
+ #### Security & Identity
116
+ ```xml
117
+ <!-- IAM -->
118
+ resIcon=mxgraph.aws4.identity_and_access_management;fillColor=#DD344C
119
+
120
+ <!-- Cognito -->
121
+ resIcon=mxgraph.aws4.cognito;fillColor=#DD344C
122
+
123
+ <!-- Secrets Manager -->
124
+ resIcon=mxgraph.aws4.secrets_manager;fillColor=#DD344C
125
+
126
+ <!-- KMS -->
127
+ resIcon=mxgraph.aws4.key_management_service;fillColor=#DD344C
128
+
129
+ <!-- WAF -->
130
+ resIcon=mxgraph.aws4.waf;fillColor=#DD344C
131
+
132
+ <!-- Shield -->
133
+ resIcon=mxgraph.aws4.shield;fillColor=#DD344C
134
+ ```
135
+
136
+ #### Management & Monitoring
137
+ ```xml
138
+ <!-- CloudWatch -->
139
+ resIcon=mxgraph.aws4.cloudwatch;fillColor=#E7157B
140
+
141
+ <!-- CloudFormation -->
142
+ resIcon=mxgraph.aws4.cloudformation;fillColor=#E7157B
143
+
144
+ <!-- Systems Manager -->
145
+ resIcon=mxgraph.aws4.systems_manager;fillColor=#E7157B
146
+
147
+ <!-- Config -->
148
+ resIcon=mxgraph.aws4.config;fillColor=#E7157B
149
+ ```
150
+
151
+ #### Application Integration
152
+ ```xml
153
+ <!-- SNS -->
154
+ resIcon=mxgraph.aws4.sns;fillColor=#E7157B
155
+
156
+ <!-- SQS -->
157
+ resIcon=mxgraph.aws4.sqs;fillColor=#E7157B
158
+
159
+ <!-- Step Functions -->
160
+ resIcon=mxgraph.aws4.step_functions;fillColor=#E7157B
161
+
162
+ <!-- EventBridge -->
163
+ resIcon=mxgraph.aws4.eventbridge;fillColor=#E7157B
164
+ ```
165
+
166
+ #### Migration & Transfer
167
+ ```xml
168
+ <!-- Database Migration Service -->
169
+ resIcon=mxgraph.aws4.database_migration_service;fillColor=#7AA116
170
+
171
+ <!-- DataSync -->
172
+ resIcon=mxgraph.aws4.datasync;fillColor=#7AA116
173
+
174
+ <!-- Migration Hub -->
175
+ resIcon=mxgraph.aws4.migration_hub;fillColor=#7AA116
176
+ ```
177
+
178
+ ### Complete AWS Icon Example
179
+
180
+ ```xml
181
+ <mxCell id="aws-lambda-1" value="Lambda Function" style="sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];outlineConnect=0;fontColor=#232F3E;fillColor=#ED7100;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.lambda;" vertex="1" parent="1">
182
+ <mxGeometry x="200" y="200" width="78" height="78" as="geometry" />
183
+ </mxCell>
184
+ ```
185
+
186
+ ---
187
+
188
+ ## Azure Icons (azure2)
189
+
190
+ Azure icons use the `img/lib/azure2/` image path syntax.
191
+
192
+ ### Base Style Template
193
+
194
+ ```xml
195
+ <mxCell id="unique-id" value="Label" style="aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/azure2/CATEGORY/SERVICE_NAME.svg;verticalLabelPosition=bottom;verticalAlign=top;" vertex="1" parent="1">
196
+ <mxGeometry x="100" y="100" width="68" height="68" as="geometry" />
197
+ </mxCell>
198
+ ```
199
+
200
+ ### Azure Service Categories
201
+
202
+ | Category Path | Services |
203
+ |---------------|----------|
204
+ | compute | Virtual_Machine, App_Services, Function_Apps, Container_Instances, Kubernetes_Services |
205
+ | databases | SQL_Database, Cosmos_DB, SQL_Managed_Instance, Database_PostgreSQL, Cache_Redis |
206
+ | storage | Storage_Accounts, Blob_Storage, Data_Lake_Storage, File_Storage |
207
+ | networking | Virtual_Networks, Load_Balancers, Application_Gateway, VPN_Gateway, DNS_Zones, CDN_Profiles |
208
+ | security | Key_Vaults, Azure_Active_Directory, Security_Center |
209
+ | management_governance | Monitor, Log_Analytics_Workspaces, Application_Insights, Automation_Accounts |
210
+ | integration | Logic_Apps, Service_Bus, Event_Grid, API_Management |
211
+ | ai_machine_learning | Cognitive_Services, Machine_Learning, Bot_Services |
212
+
213
+ ### Common Azure Service Icons
214
+
215
+ #### Compute
216
+ ```xml
217
+ <!-- Virtual Machine -->
218
+ image=img/lib/azure2/compute/Virtual_Machine.svg
219
+
220
+ <!-- App Service -->
221
+ image=img/lib/azure2/app_services/App_Services.svg
222
+
223
+ <!-- Function App -->
224
+ image=img/lib/azure2/compute/Function_Apps.svg
225
+
226
+ <!-- AKS -->
227
+ image=img/lib/azure2/containers/Kubernetes_Services.svg
228
+
229
+ <!-- Container Instance -->
230
+ image=img/lib/azure2/containers/Container_Instances.svg
231
+ ```
232
+
233
+ #### Storage
234
+ ```xml
235
+ <!-- Storage Account -->
236
+ image=img/lib/azure2/storage/Storage_Accounts.svg
237
+
238
+ <!-- Blob Storage -->
239
+ image=img/lib/azure2/storage/Blob_Storage.svg
240
+
241
+ <!-- File Storage -->
242
+ image=img/lib/azure2/storage/File_Storage.svg
243
+
244
+ <!-- Data Lake -->
245
+ image=img/lib/azure2/storage/Data_Lake_Storage.svg
246
+ ```
247
+
248
+ #### Database
249
+ ```xml
250
+ <!-- SQL Database -->
251
+ image=img/lib/azure2/databases/SQL_Database.svg
252
+
253
+ <!-- Cosmos DB -->
254
+ image=img/lib/azure2/databases/Azure_Cosmos_DB.svg
255
+
256
+ <!-- PostgreSQL -->
257
+ image=img/lib/azure2/databases/Azure_Database_PostgreSQL_Server.svg
258
+
259
+ <!-- Redis Cache -->
260
+ image=img/lib/azure2/databases/Cache_Redis.svg
261
+ ```
262
+
263
+ #### Networking
264
+ ```xml
265
+ <!-- Virtual Network -->
266
+ image=img/lib/azure2/networking/Virtual_Networks.svg
267
+
268
+ <!-- Load Balancer -->
269
+ image=img/lib/azure2/networking/Load_Balancers.svg
270
+
271
+ <!-- Application Gateway -->
272
+ image=img/lib/azure2/networking/Application_Gateways.svg
273
+
274
+ <!-- VPN Gateway -->
275
+ image=img/lib/azure2/networking/VPN_Gateways.svg
276
+
277
+ <!-- Front Door -->
278
+ image=img/lib/azure2/networking/Front_Doors.svg
279
+
280
+ <!-- DNS Zone -->
281
+ image=img/lib/azure2/networking/DNS_Zones.svg
282
+
283
+ <!-- ExpressRoute -->
284
+ image=img/lib/azure2/networking/ExpressRoute_Circuits.svg
285
+ ```
286
+
287
+ #### Security & Identity
288
+ ```xml
289
+ <!-- Azure AD -->
290
+ image=img/lib/azure2/identity/Azure_Active_Directory.svg
291
+
292
+ <!-- Key Vault -->
293
+ image=img/lib/azure2/security/Key_Vaults.svg
294
+
295
+ <!-- Security Center -->
296
+ image=img/lib/azure2/security/Security_Center.svg
297
+ ```
298
+
299
+ #### Management & Monitoring
300
+ ```xml
301
+ <!-- Monitor -->
302
+ image=img/lib/azure2/management_governance/Monitor.svg
303
+
304
+ <!-- Log Analytics -->
305
+ image=img/lib/azure2/management_governance/Log_Analytics_Workspaces.svg
306
+
307
+ <!-- Application Insights -->
308
+ image=img/lib/azure2/management_governance/Application_Insights.svg
309
+
310
+ <!-- Automation -->
311
+ image=img/lib/azure2/management_governance/Automation_Accounts.svg
312
+ ```
313
+
314
+ #### Integration
315
+ ```xml
316
+ <!-- Logic Apps -->
317
+ image=img/lib/azure2/integration/Logic_Apps.svg
318
+
319
+ <!-- Service Bus -->
320
+ image=img/lib/azure2/integration/Service_Bus.svg
321
+
322
+ <!-- Event Grid -->
323
+ image=img/lib/azure2/integration/Event_Grid_Domains.svg
324
+
325
+ <!-- API Management -->
326
+ image=img/lib/azure2/integration/API_Management_Services.svg
327
+ ```
328
+
329
+ ### Complete Azure Icon Example
330
+
331
+ ```xml
332
+ <mxCell id="azure-vm-1" value="Web Server" style="aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/azure2/compute/Virtual_Machine.svg;verticalLabelPosition=bottom;verticalAlign=top;" vertex="1" parent="1">
333
+ <mxGeometry x="200" y="200" width="68" height="68" as="geometry" />
334
+ </mxCell>
335
+ ```
336
+
337
+ ---
338
+
339
+ ## GCP Icons
340
+
341
+ GCP icons use the `img/lib/google/` image path.
342
+
343
+ ### Base Style Template
344
+
345
+ ```xml
346
+ <mxCell id="unique-id" value="Label" style="aspect=fixed;html=1;points=[];align=center;image;fontSize=12;image=img/lib/google/CATEGORY/SERVICE_NAME.svg;verticalLabelPosition=bottom;verticalAlign=top;" vertex="1" parent="1">
347
+ <mxGeometry x="100" y="100" width="68" height="68" as="geometry" />
348
+ </mxCell>
349
+ ```
350
+
351
+ ### Common GCP Icons
352
+
353
+ ```xml
354
+ <!-- Compute Engine -->
355
+ image=img/lib/google/compute/Compute_Engine.svg
356
+
357
+ <!-- Cloud Functions -->
358
+ image=img/lib/google/serverless/Cloud_Functions.svg
359
+
360
+ <!-- GKE -->
361
+ image=img/lib/google/containers/Kubernetes_Engine.svg
362
+
363
+ <!-- Cloud Storage -->
364
+ image=img/lib/google/storage/Cloud_Storage.svg
365
+
366
+ <!-- Cloud SQL -->
367
+ image=img/lib/google/databases/Cloud_SQL.svg
368
+
369
+ <!-- BigQuery -->
370
+ image=img/lib/google/big_data/BigQuery.svg
371
+
372
+ <!-- VPC -->
373
+ image=img/lib/google/networking/Virtual_Private_Cloud.svg
374
+
375
+ <!-- Load Balancer -->
376
+ image=img/lib/google/networking/Cloud_Load_Balancing.svg
377
+ ```
378
+
379
+ ---
380
+
381
+ ## AWS Groups and Containers
382
+
383
+ AWS diagrams commonly use group shapes to represent regions, VPCs, subnets, etc.
384
+
385
+ ### AWS Cloud Container
386
+
387
+ ```xml
388
+ <mxCell id="aws-cloud" value="AWS Cloud" style="sketch=0;outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_aws_cloud;strokeColor=#AAB7B8;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#AAB7B8;dashed=0;" vertex="1" parent="1">
389
+ <mxGeometry x="40" y="40" width="600" height="400" as="geometry" />
390
+ </mxCell>
391
+ ```
392
+
393
+ ### Region Container
394
+
395
+ ```xml
396
+ <mxCell id="aws-region" value="eu-west-2" style="sketch=0;outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_region;strokeColor=#00A4A6;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#007F7F;dashed=1;" vertex="1" parent="1">
397
+ <mxGeometry x="60" y="80" width="520" height="340" as="geometry" />
398
+ </mxCell>
399
+ ```
400
+
401
+ ### VPC Container
402
+
403
+ ```xml
404
+ <mxCell id="aws-vpc" value="VPC" style="sketch=0;outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_vpc;strokeColor=#8C4FFF;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#AAB7B8;dashed=0;" vertex="1" parent="1">
405
+ <mxGeometry x="80" y="120" width="460" height="280" as="geometry" />
406
+ </mxCell>
407
+ ```
408
+
409
+ ### Public Subnet
410
+
411
+ ```xml
412
+ <mxCell id="public-subnet" value="Public Subnet" style="sketch=0;outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_public_subnet;strokeColor=#7AA116;fillColor=#E9F3E6;verticalAlign=top;align=left;spacingLeft=30;fontColor=#248814;dashed=0;" vertex="1" parent="1">
413
+ <mxGeometry x="100" y="160" width="200" height="200" as="geometry" />
414
+ </mxCell>
415
+ ```
416
+
417
+ ### Private Subnet
418
+
419
+ ```xml
420
+ <mxCell id="private-subnet" value="Private Subnet" style="sketch=0;outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_private_subnet;strokeColor=#00A4A6;fillColor=#E6F6F7;verticalAlign=top;align=left;spacingLeft=30;fontColor=#147EBA;dashed=0;" vertex="1" parent="1">
421
+ <mxGeometry x="320" y="160" width="200" height="200" as="geometry" />
422
+ </mxCell>
423
+ ```
424
+
425
+ ### Availability Zone
426
+
427
+ ```xml
428
+ <mxCell id="az-1" value="Availability Zone 1" style="sketch=0;outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_availability_zone;strokeColor=#00A4A6;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#007F7F;dashed=1;" vertex="1" parent="1">
429
+ <mxGeometry x="100" y="160" width="200" height="200" as="geometry" />
430
+ </mxCell>
431
+ ```
432
+
433
+ ### Security Group
434
+
435
+ ```xml
436
+ <mxCell id="security-group" value="Security Group" style="sketch=0;outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_security_group;strokeColor=#DD344C;fillColor=#FFEBEE;verticalAlign=top;align=left;spacingLeft=30;fontColor=#DD344C;dashed=0;" vertex="1" parent="1">
437
+ <mxGeometry x="120" y="200" width="160" height="140" as="geometry" />
438
+ </mxCell>
439
+ ```
440
+
441
+ ---
442
+
443
+ ## Usage Tips
444
+
445
+ ### Enabling Libraries in draw.io
446
+
447
+ To access AWS/Azure icons in draw.io:
448
+ 1. Click **More Shapes** at bottom of shapes panel
449
+ 2. Expand **Networking** section
450
+ 3. Enable **AWS 2019** / **AWS 2021** / **Azure** / **GCP** libraries
451
+ 4. Click **Apply**
452
+
453
+ Alternatively, open draw.io with libraries pre-loaded:
454
+ - AWS: `https://app.diagrams.net/?libs=aws4`
455
+ - Azure: `https://app.diagrams.net/?libs=azure2`
456
+
457
+ ### Icon Sizing
458
+
459
+ | Standard Size | Use Case |
460
+ |---------------|----------|
461
+ | 48x48 | Compact diagrams |
462
+ | 64x64 | Standard diagrams |
463
+ | 78x78 | AWS default |
464
+ | 96x96 | Large/detailed diagrams |
465
+
466
+ ### Label Positioning
467
+
468
+ ```xml
469
+ <!-- Label below icon -->
470
+ verticalLabelPosition=bottom;verticalAlign=top;
471
+
472
+ <!-- Label to the right -->
473
+ labelPosition=right;align=left;verticalAlign=middle;
474
+
475
+ <!-- No label (icon only) -->
476
+ value=""
477
+ ```
478
+
479
+ ### Finding Icon Names
480
+
481
+ If unsure of exact icon name:
482
+ 1. Open draw.io with the relevant library enabled
483
+ 2. Drag the icon onto canvas
484
+ 3. Select it and press Ctrl+E (or Cmd+E on Mac) to view style
485
+ 4. Copy the `resIcon=` or `image=` value
486
+
487
+ ### Mixing Providers
488
+
489
+ When creating multi-cloud diagrams, maintain visual consistency:
490
+ - Use similar icon sizes across providers
491
+ - Group each cloud in its own container
492
+ - Use provider-specific colours for containers
493
+ - Add a legend showing provider colors