@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,453 @@
1
+ ---
2
+ name: data-storytelling
3
+ description: Transform data into compelling narratives using visualization, context, and persuasive structure. Use when presenting analytics to stakeholders, creating data reports, or building executive presentations.
4
+ ---
5
+
6
+ # Data Storytelling
7
+
8
+ Transform raw data into compelling narratives that drive decisions and inspire action.
9
+
10
+ ## When to Use This Skill
11
+
12
+ - Presenting analytics to executives
13
+ - Creating quarterly business reviews
14
+ - Building investor presentations
15
+ - Writing data-driven reports
16
+ - Communicating insights to non-technical audiences
17
+ - Making recommendations based on data
18
+
19
+ ## Core Concepts
20
+
21
+ ### 1. Story Structure
22
+
23
+ ```
24
+ Setup → Conflict → Resolution
25
+
26
+ Setup: Context and baseline
27
+ Conflict: The problem or opportunity
28
+ Resolution: Insights and recommendations
29
+ ```
30
+
31
+ ### 2. Narrative Arc
32
+
33
+ ```
34
+ 1. Hook: Grab attention with surprising insight
35
+ 2. Context: Establish the baseline
36
+ 3. Rising Action: Build through data points
37
+ 4. Climax: The key insight
38
+ 5. Resolution: Recommendations
39
+ 6. Call to Action: Next steps
40
+ ```
41
+
42
+ ### 3. Three Pillars
43
+
44
+ | Pillar | Purpose | Components |
45
+ | ------------- | -------- | -------------------------------- |
46
+ | **Data** | Evidence | Numbers, trends, comparisons |
47
+ | **Narrative** | Meaning | Context, causation, implications |
48
+ | **Visuals** | Clarity | Charts, diagrams, highlights |
49
+
50
+ ## Story Frameworks
51
+
52
+ ### Framework 1: The Problem-Solution Story
53
+
54
+ ```markdown
55
+ # Customer Churn Analysis
56
+
57
+ ## The Hook
58
+
59
+ "We're losing $2.4M annually to preventable churn."
60
+
61
+ ## The Context
62
+
63
+ - Current churn rate: 8.5% (industry average: 5%)
64
+ - Average customer lifetime value: $4,800
65
+ - 500 customers churned last quarter
66
+
67
+ ## The Problem
68
+
69
+ Analysis of churned customers reveals a pattern:
70
+
71
+ - 73% churned within first 90 days
72
+ - Common factor: < 3 support interactions
73
+ - Low feature adoption in first month
74
+
75
+ ## The Insight
76
+
77
+ [Show engagement curve visualization]
78
+ Customers who don't engage in the first 14 days
79
+ are 4x more likely to churn.
80
+
81
+ ## The Solution
82
+
83
+ 1. Implement 14-day onboarding sequence
84
+ 2. Proactive outreach at day 7
85
+ 3. Feature adoption tracking
86
+
87
+ ## Expected Impact
88
+
89
+ - Reduce early churn by 40%
90
+ - Save $960K annually
91
+ - Payback period: 3 months
92
+
93
+ ## Call to Action
94
+
95
+ Approve $50K budget for onboarding automation.
96
+ ```
97
+
98
+ ### Framework 2: The Trend Story
99
+
100
+ ```markdown
101
+ # Q4 Performance Analysis
102
+
103
+ ## Where We Started
104
+
105
+ Q3 ended with $1.2M MRR, 15% below target.
106
+ Team morale was low after missed goals.
107
+
108
+ ## What Changed
109
+
110
+ [Timeline visualization]
111
+
112
+ - Oct: Launched self-serve pricing
113
+ - Nov: Reduced friction in signup
114
+ - Dec: Added customer success calls
115
+
116
+ ## The Transformation
117
+
118
+ [Before/after comparison chart]
119
+ | Metric | Q3 | Q4 | Change |
120
+ |----------------|--------|--------|--------|
121
+ | Trial → Paid | 8% | 15% | +87% |
122
+ | Time to Value | 14 days| 5 days | -64% |
123
+ | Expansion Rate | 2% | 8% | +300% |
124
+
125
+ ## Key Insight
126
+
127
+ Self-serve + high-touch creates compound growth.
128
+ Customers who self-serve AND get a success call
129
+ have 3x higher expansion rate.
130
+
131
+ ## Going Forward
132
+
133
+ Double down on hybrid model.
134
+ Target: $1.8M MRR by Q2.
135
+ ```
136
+
137
+ ### Framework 3: The Comparison Story
138
+
139
+ ```markdown
140
+ # Market Opportunity Analysis
141
+
142
+ ## The Question
143
+
144
+ Should we expand into EMEA or APAC first?
145
+
146
+ ## The Comparison
147
+
148
+ [Side-by-side market analysis]
149
+
150
+ ### EMEA
151
+
152
+ - Market size: $4.2B
153
+ - Growth rate: 8%
154
+ - Competition: High
155
+ - Regulatory: Complex (GDPR)
156
+ - Language: Multiple
157
+
158
+ ### APAC
159
+
160
+ - Market size: $3.8B
161
+ - Growth rate: 15%
162
+ - Competition: Moderate
163
+ - Regulatory: Varied
164
+ - Language: Multiple
165
+
166
+ ## The Analysis
167
+
168
+ [Weighted scoring matrix visualization]
169
+
170
+ | Factor | Weight | EMEA Score | APAC Score |
171
+ | ----------- | ------ | ---------- | ---------- |
172
+ | Market Size | 25% | 5 | 4 |
173
+ | Growth | 30% | 3 | 5 |
174
+ | Competition | 20% | 2 | 4 |
175
+ | Ease | 25% | 2 | 3 |
176
+ | **Total** | | **2.9** | **4.1** |
177
+
178
+ ## The Recommendation
179
+
180
+ APAC first. Higher growth, less competition.
181
+ Start with Singapore hub (English, business-friendly).
182
+ Enter EMEA in Year 2 with localization ready.
183
+
184
+ ## Risk Mitigation
185
+
186
+ - Timezone coverage: Hire 24/7 support
187
+ - Cultural fit: Local partnerships
188
+ - Payment: Multi-currency from day 1
189
+ ```
190
+
191
+ ## Visualization Techniques
192
+
193
+ ### Technique 1: Progressive Reveal
194
+
195
+ ```markdown
196
+ Start simple, add layers:
197
+
198
+ Slide 1: "Revenue is growing" [single line chart]
199
+ Slide 2: "But growth is slowing" [add growth rate overlay]
200
+ Slide 3: "Driven by one segment" [add segment breakdown]
201
+ Slide 4: "Which is saturating" [add market share]
202
+ Slide 5: "We need new segments" [add opportunity zones]
203
+ ```
204
+
205
+ ### Technique 2: Contrast and Compare
206
+
207
+ ```markdown
208
+ Before/After:
209
+ ┌─────────────────┬─────────────────┐
210
+ │ BEFORE │ AFTER │
211
+ │ │ │
212
+ │ Process: 5 days│ Process: 1 day │
213
+ │ Errors: 15% │ Errors: 2% │
214
+ │ Cost: $50/unit │ Cost: $20/unit │
215
+ └─────────────────┴─────────────────┘
216
+
217
+ This/That (emphasize difference):
218
+ ┌─────────────────────────────────────┐
219
+ │ CUSTOMER A vs B │
220
+ │ ┌──────────┐ ┌──────────┐ │
221
+ │ │ ████████ │ │ ██ │ │
222
+ │ │ $45,000 │ │ $8,000 │ │
223
+ │ │ LTV │ │ LTV │ │
224
+ │ └──────────┘ └──────────┘ │
225
+ │ Onboarded No onboarding │
226
+ └─────────────────────────────────────┘
227
+ ```
228
+
229
+ ### Technique 3: Annotation and Highlight
230
+
231
+ ```python
232
+ import matplotlib.pyplot as plt
233
+ import pandas as pd
234
+
235
+ fig, ax = plt.subplots(figsize=(12, 6))
236
+
237
+ # Plot the main data
238
+ ax.plot(dates, revenue, linewidth=2, color='#2E86AB')
239
+
240
+ # Add annotation for key events
241
+ ax.annotate(
242
+ 'Product Launch\n+32% spike',
243
+ xy=(launch_date, launch_revenue),
244
+ xytext=(launch_date, launch_revenue * 1.2),
245
+ fontsize=10,
246
+ arrowprops=dict(arrowstyle='->', color='#E63946'),
247
+ color='#E63946'
248
+ )
249
+
250
+ # Highlight a region
251
+ ax.axvspan(growth_start, growth_end, alpha=0.2, color='green',
252
+ label='Growth Period')
253
+
254
+ # Add threshold line
255
+ ax.axhline(y=target, color='gray', linestyle='--',
256
+ label=f'Target: ${target:,.0f}')
257
+
258
+ ax.set_title('Revenue Growth Story', fontsize=14, fontweight='bold')
259
+ ax.legend()
260
+ ```
261
+
262
+ ## Presentation Templates
263
+
264
+ ### Template 1: Executive Summary Slide
265
+
266
+ ```
267
+ ┌─────────────────────────────────────────────────────────────┐
268
+ │ KEY INSIGHT │
269
+ │ ══════════════════════════════════════════════════════════│
270
+ │ │
271
+ │ "Customers who complete onboarding in week 1 │
272
+ │ have 3x higher lifetime value" │
273
+ │ │
274
+ ├──────────────────────┬──────────────────────────────────────┤
275
+ │ │ │
276
+ │ THE DATA │ THE IMPLICATION │
277
+ │ │ │
278
+ │ Week 1 completers: │ ✓ Prioritize onboarding UX │
279
+ │ • LTV: $4,500 │ ✓ Add day-1 success milestones │
280
+ │ • Retention: 85% │ ✓ Proactive week-1 outreach │
281
+ │ • NPS: 72 │ │
282
+ │ │ Investment: $75K │
283
+ │ Others: │ Expected ROI: 8x │
284
+ │ • LTV: $1,500 │ │
285
+ │ • Retention: 45% │ │
286
+ │ • NPS: 34 │ │
287
+ │ │ │
288
+ └──────────────────────┴──────────────────────────────────────┘
289
+ ```
290
+
291
+ ### Template 2: Data Story Flow
292
+
293
+ ```
294
+ Slide 1: THE HEADLINE
295
+ "We can grow 40% faster by fixing onboarding"
296
+
297
+ Slide 2: THE CONTEXT
298
+ Current state metrics
299
+ Industry benchmarks
300
+ Gap analysis
301
+
302
+ Slide 3: THE DISCOVERY
303
+ What the data revealed
304
+ Surprising finding
305
+ Pattern identification
306
+
307
+ Slide 4: THE DEEP DIVE
308
+ Root cause analysis
309
+ Segment breakdowns
310
+ Statistical significance
311
+
312
+ Slide 5: THE RECOMMENDATION
313
+ Proposed actions
314
+ Resource requirements
315
+ Timeline
316
+
317
+ Slide 6: THE IMPACT
318
+ Expected outcomes
319
+ ROI calculation
320
+ Risk assessment
321
+
322
+ Slide 7: THE ASK
323
+ Specific request
324
+ Decision needed
325
+ Next steps
326
+ ```
327
+
328
+ ### Template 3: One-Page Dashboard Story
329
+
330
+ ```markdown
331
+ # Monthly Business Review: January 2024
332
+
333
+ ## THE HEADLINE
334
+
335
+ Revenue up 15% but CAC increasing faster than LTV
336
+
337
+ ## KEY METRICS AT A GLANCE
338
+
339
+ ┌────────┬────────┬────────┬────────┐
340
+ │ MRR │ NRR │ CAC │ LTV │
341
+ │ $125K │ 108% │ $450 │ $2,200 │
342
+ │ ▲15% │ ▲3% │ ▲22% │ ▲8% │
343
+ └────────┴────────┴────────┴────────┘
344
+
345
+ ## WHAT'S WORKING
346
+
347
+ ✓ Enterprise segment growing 25% MoM
348
+ ✓ Referral program driving 30% of new logos
349
+ ✓ Support satisfaction at all-time high (94%)
350
+
351
+ ## WHAT NEEDS ATTENTION
352
+
353
+ ✗ SMB acquisition cost up 40%
354
+ ✗ Trial conversion down 5 points
355
+ ✗ Time-to-value increased by 3 days
356
+
357
+ ## ROOT CAUSE
358
+
359
+ [Mini chart showing SMB vs Enterprise CAC trend]
360
+ SMB paid ads becoming less efficient.
361
+ CPC up 35% while conversion flat.
362
+
363
+ ## RECOMMENDATION
364
+
365
+ 1. Shift $20K/mo from paid to content
366
+ 2. Launch SMB self-serve trial
367
+ 3. A/B test shorter onboarding
368
+
369
+ ## NEXT MONTH'S FOCUS
370
+
371
+ - Launch content marketing pilot
372
+ - Complete self-serve MVP
373
+ - Reduce time-to-value to < 7 days
374
+ ```
375
+
376
+ ## Writing Techniques
377
+
378
+ ### Headlines That Work
379
+
380
+ ```markdown
381
+ BAD: "Q4 Sales Analysis"
382
+ GOOD: "Q4 Sales Beat Target by 23% - Here's Why"
383
+
384
+ BAD: "Customer Churn Report"
385
+ GOOD: "We're Losing $2.4M to Preventable Churn"
386
+
387
+ BAD: "Marketing Performance"
388
+ GOOD: "Content Marketing Delivers 4x ROI vs. Paid"
389
+
390
+ Formula:
391
+ [Specific Number] + [Business Impact] + [Actionable Context]
392
+ ```
393
+
394
+ ### Transition Phrases
395
+
396
+ ```markdown
397
+ Building the narrative:
398
+ • "This leads us to ask..."
399
+ • "When we dig deeper..."
400
+ • "The pattern becomes clear when..."
401
+ • "Contrast this with..."
402
+
403
+ Introducing insights:
404
+ • "The data reveals..."
405
+ • "What surprised us was..."
406
+ • "The inflection point came when..."
407
+ • "The key finding is..."
408
+
409
+ Moving to action:
410
+ • "This insight suggests..."
411
+ • "Based on this analysis..."
412
+ • "The implication is clear..."
413
+ • "Our recommendation is..."
414
+ ```
415
+
416
+ ### Handling Uncertainty
417
+
418
+ ```markdown
419
+ Acknowledge limitations:
420
+ • "With 95% confidence, we can say..."
421
+ • "The sample size of 500 shows..."
422
+ • "While correlation is strong, causation requires..."
423
+ • "This trend holds for [segment], though [caveat]..."
424
+
425
+ Present ranges:
426
+ • "Impact estimate: $400K-$600K"
427
+ • "Confidence interval: 15-20% improvement"
428
+ • "Best case: X, Conservative: Y"
429
+ ```
430
+
431
+ ## Best Practices
432
+
433
+ ### Do's
434
+
435
+ - **Start with the "so what"** - Lead with insight
436
+ - **Use the rule of three** - Three points, three comparisons
437
+ - **Show, don't tell** - Let data speak
438
+ - **Make it personal** - Connect to audience goals
439
+ - **End with action** - Clear next steps
440
+
441
+ ### Don'ts
442
+
443
+ - **Don't data dump** - Curate ruthlessly
444
+ - **Don't bury the insight** - Front-load key findings
445
+ - **Don't use jargon** - Match audience vocabulary
446
+ - **Don't show methodology first** - Context, then method
447
+ - **Don't forget the narrative** - Numbers need meaning
448
+
449
+ ## Resources
450
+
451
+ - [Storytelling with Data (Cole Nussbaumer)](https://www.storytellingwithdata.com/)
452
+ - [The Pyramid Principle (Barbara Minto)](https://www.amazon.com/Pyramid-Principle-Logic-Writing-Thinking/dp/0273710516)
453
+ - [Resonate (Nancy Duarte)](https://www.duarte.com/resonate/)
@@ -0,0 +1,30 @@
1
+ © 2025 Anthropic, PBC. All rights reserved.
2
+
3
+ LICENSE: Use of these materials (including all code, prompts, assets, files,
4
+ and other components of this Skill) is governed by your agreement with
5
+ Anthropic regarding use of Anthropic's services. If no separate agreement
6
+ exists, use is governed by Anthropic's Consumer Terms of Service or
7
+ Commercial Terms of Service, as applicable:
8
+ https://www.anthropic.com/legal/consumer-terms
9
+ https://www.anthropic.com/legal/commercial-terms
10
+ Your applicable agreement is referred to as the "Agreement." "Services" are
11
+ as defined in the Agreement.
12
+
13
+ ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the
14
+ contrary, users may not:
15
+
16
+ - Extract these materials from the Services or retain copies of these
17
+ materials outside the Services
18
+ - Reproduce or copy these materials, except for temporary copies created
19
+ automatically during authorized use of the Services
20
+ - Create derivative works based on these materials
21
+ - Distribute, sublicense, or transfer these materials to any third party
22
+ - Make, offer to sell, sell, or import any inventions embodied in these
23
+ materials
24
+ - Reverse engineer, decompile, or disassemble these materials
25
+
26
+ The receipt, viewing, or possession of these materials does not convey or
27
+ imply any license or right beyond those expressly granted above.
28
+
29
+ Anthropic retains all right, title, and interest in these materials,
30
+ including all copyrights, patents, and other intellectual property rights.