@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,447 @@
1
+ ---
2
+ name: perplexity-search
3
+ description: Perform AI-powered web searches with real-time information using Perplexity models via LiteLLM and OpenRouter. This skill should be used when conducting web searches for current information, finding recent scientific literature, getting grounded answers with source citations, or accessing information beyond the model's knowledge cutoff. Provides access to multiple Perplexity models including Sonar Pro, Sonar Pro Search (advanced agentic search), and Sonar Reasoning Pro through a single OpenRouter API key.
4
+ ---
5
+
6
+ # Perplexity Search
7
+
8
+ ## Overview
9
+
10
+ Perform AI-powered web searches using Perplexity models through LiteLLM and OpenRouter. Perplexity provides real-time, web-grounded answers with source citations, making it ideal for finding current information, recent scientific literature, and facts beyond the model's training data cutoff.
11
+
12
+ This skill provides access to all Perplexity models through OpenRouter, requiring only a single API key (no separate Perplexity account needed).
13
+
14
+ ## When to Use This Skill
15
+
16
+ Use this skill when:
17
+ - Searching for current information or recent developments (2024 and beyond)
18
+ - Finding latest scientific publications and research
19
+ - Getting real-time answers grounded in web sources
20
+ - Verifying facts with source citations
21
+ - Conducting literature searches across multiple domains
22
+ - Accessing information beyond the model's knowledge cutoff
23
+ - Performing domain-specific research (biomedical, technical, clinical)
24
+ - Comparing current approaches or technologies
25
+
26
+ **Do not use** for:
27
+ - Simple calculations or logic problems (use directly)
28
+ - Tasks requiring code execution (use standard tools)
29
+ - Questions well within the model's training data (unless verification needed)
30
+
31
+ ## Quick Start
32
+
33
+ ### Setup (One-time)
34
+
35
+ 1. **Get DuckMind API key from DeepQuark's auth store**:
36
+
37
+ Before making any API call, retrieve the DuckMind API key from DeepQuark's auth store:
38
+
39
+ ```bash
40
+ # With jq (preferred)
41
+ DUCKMIND_API_KEY=$(jq -r '.duckmind.key' ~/.local/share/deepquark/auth.json)
42
+
43
+ # With python3 (fallback)
44
+ DUCKMIND_API_KEY=$(python3 -c "import json; d=json.load(open('$HOME/.local/share/deepquark/auth.json')); print(d['duckmind']['key'])")
45
+ ```
46
+
47
+ Use `$DUCKMIND_API_KEY` (bash) or the extracted string as the Bearer token in all requests. Never hardcode the key.
48
+
49
+ 2. **Configure environment**:
50
+ ```bash
51
+ # Export retrieved key as the OpenRouter API key
52
+ export OPENROUTER_API_KEY="$DUCKMIND_API_KEY"
53
+ ```
54
+
55
+ 3. **Install dependencies**:
56
+ ```bash
57
+ uv pip install litellm
58
+ ```
59
+
60
+ 4. **Verify setup**:
61
+ ```bash
62
+ python scripts/perplexity_search.py --check-setup
63
+ ```
64
+
65
+ See `references/openrouter_setup.md` for detailed setup instructions, troubleshooting, and security best practices.
66
+
67
+ ### Basic Usage
68
+
69
+ **Simple search:**
70
+ ```bash
71
+ python scripts/perplexity_search.py "What are the latest developments in CRISPR gene editing?"
72
+ ```
73
+
74
+ **Save results:**
75
+ ```bash
76
+ python scripts/perplexity_search.py "Recent CAR-T therapy clinical trials" --output results.json
77
+ ```
78
+
79
+ **Use specific model:**
80
+ ```bash
81
+ python scripts/perplexity_search.py "Compare mRNA and viral vector vaccines" --model sonar-pro-search
82
+ ```
83
+
84
+ **Verbose output:**
85
+ ```bash
86
+ python scripts/perplexity_search.py "Quantum computing for drug discovery" --verbose
87
+ ```
88
+
89
+ ## Available Models
90
+
91
+ Access models via `--model` parameter:
92
+
93
+ - **sonar-pro** (default): General-purpose search, best balance of cost and quality
94
+ - **sonar-pro-search**: Most advanced agentic search with multi-step reasoning
95
+ - **sonar**: Basic model, most cost-effective for simple queries
96
+ - **sonar-reasoning-pro**: Advanced reasoning with step-by-step analysis
97
+ - **sonar-reasoning**: Basic reasoning capabilities
98
+
99
+ **Model selection guide:**
100
+ - Default queries → `sonar-pro`
101
+ - Complex multi-step analysis → `sonar-pro-search`
102
+ - Explicit reasoning needed → `sonar-reasoning-pro`
103
+ - Simple fact lookups → `sonar`
104
+ - Cost-sensitive bulk queries → `sonar`
105
+
106
+ See `references/model_comparison.md` for detailed comparison, use cases, pricing, and performance characteristics.
107
+
108
+ ## Crafting Effective Queries
109
+
110
+ ### Be Specific and Detailed
111
+
112
+ **Good examples:**
113
+ - "What are the latest clinical trial results for CAR-T cell therapy in treating B-cell lymphoma published in 2024?"
114
+ - "Compare the efficacy and safety profiles of mRNA vaccines versus viral vector vaccines for COVID-19"
115
+ - "Explain AlphaFold3 improvements over AlphaFold2 with specific accuracy metrics from 2023-2024 research"
116
+
117
+ **Bad examples:**
118
+ - "Tell me about cancer treatment" (too broad)
119
+ - "CRISPR" (too vague)
120
+ - "vaccines" (lacks specificity)
121
+
122
+ ### Include Time Constraints
123
+
124
+ Perplexity searches real-time web data:
125
+ - "What papers were published in Nature Medicine in 2024 about long COVID?"
126
+ - "What are the latest developments (past 6 months) in large language model efficiency?"
127
+ - "What was announced at NeurIPS 2023 regarding AI safety?"
128
+
129
+ ### Specify Domain and Sources
130
+
131
+ For high-quality results, mention source preferences:
132
+ - "According to peer-reviewed publications in high-impact journals..."
133
+ - "Based on FDA-approved treatments..."
134
+ - "From clinical trial registries like clinicaltrials.gov..."
135
+
136
+ ### Structure Complex Queries
137
+
138
+ Break complex questions into clear components:
139
+ 1. **Topic**: Main subject
140
+ 2. **Scope**: Specific aspect of interest
141
+ 3. **Context**: Time frame, domain, constraints
142
+ 4. **Output**: Desired format or type of answer
143
+
144
+ **Example:**
145
+ "What improvements does AlphaFold3 offer over AlphaFold2 for protein structure prediction, according to research published between 2023 and 2024? Include specific accuracy metrics and benchmarks."
146
+
147
+ See `references/search_strategies.md` for comprehensive guidance on query design, domain-specific patterns, and advanced techniques.
148
+
149
+ ## Common Use Cases
150
+
151
+ ### Scientific Literature Search
152
+
153
+ ```bash
154
+ python scripts/perplexity_search.py \
155
+ "What does recent research (2023-2024) say about the role of gut microbiome in Parkinson's disease? Focus on peer-reviewed studies and include specific bacterial species identified." \
156
+ --model sonar-pro
157
+ ```
158
+
159
+ ### Technical Documentation
160
+
161
+ ```bash
162
+ python scripts/perplexity_search.py \
163
+ "How to implement real-time data streaming from Kafka to PostgreSQL using Python? Include considerations for handling backpressure and ensuring exactly-once semantics." \
164
+ --model sonar-reasoning-pro
165
+ ```
166
+
167
+ ### Comparative Analysis
168
+
169
+ ```bash
170
+ python scripts/perplexity_search.py \
171
+ "Compare PyTorch versus TensorFlow for implementing transformer models in terms of ease of use, performance, and ecosystem support. Include benchmarks from recent studies." \
172
+ --model sonar-pro-search
173
+ ```
174
+
175
+ ### Clinical Research
176
+
177
+ ```bash
178
+ python scripts/perplexity_search.py \
179
+ "What is the evidence for intermittent fasting in managing type 2 diabetes in adults? Focus on randomized controlled trials and report HbA1c changes and weight loss outcomes." \
180
+ --model sonar-pro
181
+ ```
182
+
183
+ ### Trend Analysis
184
+
185
+ ```bash
186
+ python scripts/perplexity_search.py \
187
+ "What are the key trends in single-cell RNA sequencing technology over the past 5 years? Highlight improvements in throughput, cost, and resolution, with specific examples." \
188
+ --model sonar-pro
189
+ ```
190
+
191
+ ## Working with Results
192
+
193
+ ### Programmatic Access
194
+
195
+ Use `perplexity_search.py` as a module:
196
+
197
+ ```python
198
+ from scripts.perplexity_search import search_with_perplexity
199
+
200
+ result = search_with_perplexity(
201
+ query="What are the latest CRISPR developments?",
202
+ model="openrouter/perplexity/sonar-pro",
203
+ max_tokens=4000,
204
+ temperature=0.2,
205
+ verbose=False
206
+ )
207
+
208
+ if result["success"]:
209
+ print(result["answer"])
210
+ print(f"Tokens used: {result['usage']['total_tokens']}")
211
+ else:
212
+ print(f"Error: {result['error']}")
213
+ ```
214
+
215
+ ### Save and Process Results
216
+
217
+ ```bash
218
+ # Save to JSON
219
+ python scripts/perplexity_search.py "query" --output results.json
220
+
221
+ # Process with jq
222
+ cat results.json | jq '.answer'
223
+ cat results.json | jq '.usage'
224
+ ```
225
+
226
+ ### Batch Processing
227
+
228
+ Create a script for multiple queries:
229
+
230
+ ```bash
231
+ #!/bin/bash
232
+ queries=(
233
+ "CRISPR developments 2024"
234
+ "mRNA vaccine technology advances"
235
+ "AlphaFold3 accuracy improvements"
236
+ )
237
+
238
+ for query in "${queries[@]}"; do
239
+ echo "Searching: $query"
240
+ python scripts/perplexity_search.py "$query" --output "results_$(echo $query | tr ' ' '_').json"
241
+ sleep 2 # Rate limiting
242
+ done
243
+ ```
244
+
245
+ ## Cost Management
246
+
247
+ Perplexity models have different pricing tiers:
248
+
249
+ **Approximate costs per query:**
250
+ - Sonar: $0.001-0.002 (most cost-effective)
251
+ - Sonar Pro: $0.002-0.005 (recommended default)
252
+ - Sonar Reasoning Pro: $0.005-0.010
253
+ - Sonar Pro Search: $0.020-0.050+ (most comprehensive)
254
+
255
+ **Cost optimization strategies:**
256
+ 1. Use `sonar` for simple fact lookups
257
+ 2. Default to `sonar-pro` for most queries
258
+ 3. Reserve `sonar-pro-search` for complex analysis
259
+ 4. Set `--max-tokens` to limit response length
260
+ 5. Monitor usage at https://openrouter.ai/activity
261
+ 6. Set spending limits in OpenRouter dashboard
262
+
263
+ ## Troubleshooting
264
+
265
+ ### API Key Not Set
266
+
267
+ **Error**: "OpenRouter API key not configured"
268
+
269
+ **Solution**:
270
+ ```bash
271
+ # Retrieve from DeepQuark auth store (preferred)
272
+ DUCKMIND_API_KEY=$(jq -r '.duckmind.key' ~/.local/share/deepquark/auth.json)
273
+ export OPENROUTER_API_KEY="$DUCKMIND_API_KEY"
274
+ ```
275
+
276
+ ### LiteLLM Not Installed
277
+
278
+ **Error**: "LiteLLM not installed"
279
+
280
+ **Solution**:
281
+ ```bash
282
+ uv pip install litellm
283
+ ```
284
+
285
+ ### Rate Limiting
286
+
287
+ **Error**: "Rate limit exceeded"
288
+
289
+ **Solutions**:
290
+ - Wait a few seconds before retrying
291
+ - Increase rate limit at https://openrouter.ai/keys
292
+ - Add delays between requests in batch processing
293
+
294
+ ### Insufficient Credits
295
+
296
+ **Error**: "Insufficient credits"
297
+
298
+ **Solution**:
299
+ - Add credits at https://openrouter.ai/account
300
+ - Enable auto-recharge to prevent interruptions
301
+
302
+ See `references/openrouter_setup.md` for comprehensive troubleshooting guide.
303
+
304
+ ## Integration with Other Skills
305
+
306
+ This skill complements other scientific skills:
307
+
308
+ ### Literature Review
309
+
310
+ Use with `literature-review` skill:
311
+ 1. Use Perplexity to find recent papers and preprints
312
+ 2. Supplement PubMed searches with real-time web results
313
+ 3. Verify citations and find related work
314
+ 4. Discover latest developments post-database indexing
315
+
316
+ ### Scientific Writing
317
+
318
+ Use with `scientific-writing` skill:
319
+ 1. Find recent references for introduction/discussion
320
+ 2. Verify current state of the art
321
+ 3. Check latest terminology and conventions
322
+ 4. Identify recent competing approaches
323
+
324
+ ### Hypothesis Generation
325
+
326
+ Use with `hypothesis-generation` skill:
327
+ 1. Search for latest research findings
328
+ 2. Identify current gaps in knowledge
329
+ 3. Find recent methodological advances
330
+ 4. Discover emerging research directions
331
+
332
+ ### Critical Thinking
333
+
334
+ Use with `scientific-critical-thinking` skill:
335
+ 1. Find evidence for and against hypotheses
336
+ 2. Locate methodological critiques
337
+ 3. Identify controversies in the field
338
+ 4. Verify claims with current evidence
339
+
340
+ ## Best Practices
341
+
342
+ ### Query Design
343
+
344
+ 1. **Be specific**: Include domain, time frame, and constraints
345
+ 2. **Use terminology**: Domain-appropriate keywords and phrases
346
+ 3. **Specify sources**: Mention preferred publication types or journals
347
+ 4. **Structure questions**: Clear components with explicit context
348
+ 5. **Iterate**: Refine based on initial results
349
+
350
+ ### Model Selection
351
+
352
+ 1. **Start with sonar-pro**: Good default for most queries
353
+ 2. **Upgrade for complexity**: Use sonar-pro-search for multi-step analysis
354
+ 3. **Downgrade for simplicity**: Use sonar for basic facts
355
+ 4. **Use reasoning models**: When step-by-step analysis needed
356
+
357
+ ### Cost Optimization
358
+
359
+ 1. **Choose appropriate models**: Match model to query complexity
360
+ 2. **Set token limits**: Use `--max-tokens` to control costs
361
+ 3. **Monitor usage**: Check OpenRouter dashboard regularly
362
+ 4. **Batch efficiently**: Combine related simple queries when possible
363
+ 5. **Cache results**: Save and reuse results for repeated queries
364
+
365
+ ### Security
366
+
367
+ 1. **Retrieve keys securely**: Always use DeepQuark's auth store, never hardcode
368
+ 2. **Use environment variables**: Keep keys separate from code
369
+ 3. **Set spending limits**: Configure in OpenRouter dashboard
370
+ 4. **Monitor usage**: Watch for unexpected activity
371
+ 5. **Rotate keys**: Change keys periodically
372
+
373
+ ## Resources
374
+
375
+ ### Bundled Resources
376
+
377
+ **Scripts:**
378
+ - `scripts/perplexity_search.py`: Main search script with CLI interface
379
+ - `scripts/setup_env.py`: Environment setup and validation helper
380
+
381
+ **References:**
382
+ - `references/search_strategies.md`: Comprehensive query design guide
383
+ - `references/model_comparison.md`: Detailed model comparison and selection guide
384
+ - `references/openrouter_setup.md`: Complete setup, troubleshooting, and security guide
385
+
386
+ **Assets:**
387
+ - `assets/.env.example`: Example environment file template
388
+
389
+ ### External Resources
390
+
391
+ **OpenRouter:**
392
+ - Dashboard: https://openrouter.ai/account
393
+ - API Keys: https://openrouter.ai/keys
394
+ - Perplexity Models: https://openrouter.ai/perplexity
395
+ - Usage Monitoring: https://openrouter.ai/activity
396
+ - Documentation: https://openrouter.ai/docs
397
+
398
+ **LiteLLM:**
399
+ - Documentation: https://docs.litellm.ai/
400
+ - OpenRouter Provider: https://docs.litellm.ai/docs/providers/openrouter
401
+ - GitHub: https://github.com/BerriAI/litellm
402
+
403
+ **Perplexity:**
404
+ - Official Docs: https://docs.perplexity.ai/
405
+
406
+ ## Dependencies
407
+
408
+ ### Required
409
+
410
+ ```bash
411
+ # LiteLLM for API access
412
+ uv pip install litellm
413
+ ```
414
+
415
+ ### Optional
416
+
417
+ ```bash
418
+ # For .env file support
419
+ uv pip install python-dotenv
420
+
421
+ # For JSON processing (usually pre-installed)
422
+ uv pip install jq
423
+ ```
424
+
425
+ ### Environment Variables
426
+
427
+ Required:
428
+ - `OPENROUTER_API_KEY`: Set from DuckMind key retrieved via DeepQuark auth store
429
+
430
+ Optional:
431
+ - `DEFAULT_MODEL`: Default model to use (default: sonar-pro)
432
+ - `DEFAULT_MAX_TOKENS`: Default max tokens (default: 4000)
433
+ - `DEFAULT_TEMPERATURE`: Default temperature (default: 0.2)
434
+
435
+ ## Summary
436
+
437
+ This skill provides:
438
+
439
+ 1. **Real-time web search**: Access current information beyond training data cutoff
440
+ 2. **Multiple models**: From cost-effective Sonar to advanced Sonar Pro Search
441
+ 3. **Simple setup**: Single DuckMind API key retrieved from DeepQuark auth store
442
+ 4. **Comprehensive guidance**: Detailed references for query design and model selection
443
+ 5. **Cost-effective**: Pay-as-you-go pricing with usage monitoring
444
+ 6. **Scientific focus**: Optimized for research, literature search, and technical queries
445
+ 7. **Easy integration**: Works seamlessly with other scientific skills
446
+
447
+ Conduct AI-powered web searches to find current information, recent research, and grounded answers with source citations.
@@ -0,0 +1,16 @@
1
+ # Perplexity Search Environment Configuration
2
+ # Copy this file to .env and fill in your actual API key
3
+
4
+ # OpenRouter API Key
5
+ # Get your key from: https://openrouter.ai/keys
6
+ OPENROUTER_API_KEY=sk-or-v1-your-api-key-here
7
+
8
+ # Optional: Default model to use
9
+ # Options: sonar-pro, sonar-pro-search, sonar, sonar-reasoning-pro, sonar-reasoning
10
+ # DEFAULT_MODEL=sonar-pro
11
+
12
+ # Optional: Default max tokens for responses
13
+ # DEFAULT_MAX_TOKENS=4000
14
+
15
+ # Optional: Default temperature (0.0 - 1.0)
16
+ # DEFAULT_TEMPERATURE=0.2