@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,247 @@
1
+ ---
2
+ name: Excel Analysis
3
+ description: Analyze Excel spreadsheets, create pivot tables, generate charts, and perform data analysis. Use when analyzing Excel files, spreadsheets, tabular data, or .xlsx files.
4
+ ---
5
+
6
+ # Excel Analysis
7
+
8
+ ## Quick start
9
+
10
+ Read Excel files with pandas:
11
+
12
+ ```python
13
+ import pandas as pd
14
+
15
+ # Read Excel file
16
+ df = pd.read_excel("data.xlsx", sheet_name="Sheet1")
17
+
18
+ # Display first few rows
19
+ print(df.head())
20
+
21
+ # Basic statistics
22
+ print(df.describe())
23
+ ```
24
+
25
+ ## Reading multiple sheets
26
+
27
+ Process all sheets in a workbook:
28
+
29
+ ```python
30
+ import pandas as pd
31
+
32
+ # Read all sheets
33
+ excel_file = pd.ExcelFile("workbook.xlsx")
34
+
35
+ for sheet_name in excel_file.sheet_names:
36
+ df = pd.read_excel(excel_file, sheet_name=sheet_name)
37
+ print(f"\n{sheet_name}:")
38
+ print(df.head())
39
+ ```
40
+
41
+ ## Data analysis
42
+
43
+ Perform common analysis tasks:
44
+
45
+ ```python
46
+ import pandas as pd
47
+
48
+ df = pd.read_excel("sales.xlsx")
49
+
50
+ # Group by and aggregate
51
+ sales_by_region = df.groupby("region")["sales"].sum()
52
+ print(sales_by_region)
53
+
54
+ # Filter data
55
+ high_sales = df[df["sales"] > 10000]
56
+
57
+ # Calculate metrics
58
+ df["profit_margin"] = (df["revenue"] - df["cost"]) / df["revenue"]
59
+
60
+ # Sort by column
61
+ df_sorted = df.sort_values("sales", ascending=False)
62
+ ```
63
+
64
+ ## Creating Excel files
65
+
66
+ Write data to Excel with formatting:
67
+
68
+ ```python
69
+ import pandas as pd
70
+
71
+ df = pd.DataFrame({
72
+ "Product": ["A", "B", "C"],
73
+ "Sales": [100, 200, 150],
74
+ "Profit": [20, 40, 30]
75
+ })
76
+
77
+ # Write to Excel
78
+ writer = pd.ExcelWriter("output.xlsx", engine="openpyxl")
79
+ df.to_excel(writer, sheet_name="Sales", index=False)
80
+
81
+ # Get worksheet for formatting
82
+ worksheet = writer.sheets["Sales"]
83
+
84
+ # Auto-adjust column widths
85
+ for column in worksheet.columns:
86
+ max_length = 0
87
+ column_letter = column[0].column_letter
88
+ for cell in column:
89
+ if len(str(cell.value)) > max_length:
90
+ max_length = len(str(cell.value))
91
+ worksheet.column_dimensions[column_letter].width = max_length + 2
92
+
93
+ writer.close()
94
+ ```
95
+
96
+ ## Pivot tables
97
+
98
+ Create pivot tables programmatically:
99
+
100
+ ```python
101
+ import pandas as pd
102
+
103
+ df = pd.read_excel("sales_data.xlsx")
104
+
105
+ # Create pivot table
106
+ pivot = pd.pivot_table(
107
+ df,
108
+ values="sales",
109
+ index="region",
110
+ columns="product",
111
+ aggfunc="sum",
112
+ fill_value=0
113
+ )
114
+
115
+ print(pivot)
116
+
117
+ # Save pivot table
118
+ pivot.to_excel("pivot_report.xlsx")
119
+ ```
120
+
121
+ ## Charts and visualization
122
+
123
+ Generate charts from Excel data:
124
+
125
+ ```python
126
+ import pandas as pd
127
+ import matplotlib.pyplot as plt
128
+
129
+ df = pd.read_excel("data.xlsx")
130
+
131
+ # Create bar chart
132
+ df.plot(x="category", y="value", kind="bar")
133
+ plt.title("Sales by Category")
134
+ plt.xlabel("Category")
135
+ plt.ylabel("Sales")
136
+ plt.tight_layout()
137
+ plt.savefig("chart.png")
138
+
139
+ # Create pie chart
140
+ df.set_index("category")["value"].plot(kind="pie", autopct="%1.1f%%")
141
+ plt.title("Market Share")
142
+ plt.ylabel("")
143
+ plt.savefig("pie_chart.png")
144
+ ```
145
+
146
+ ## Data cleaning
147
+
148
+ Clean and prepare Excel data:
149
+
150
+ ```python
151
+ import pandas as pd
152
+
153
+ df = pd.read_excel("messy_data.xlsx")
154
+
155
+ # Remove duplicates
156
+ df = df.drop_duplicates()
157
+
158
+ # Handle missing values
159
+ df = df.fillna(0) # or df.dropna()
160
+
161
+ # Remove whitespace
162
+ df["name"] = df["name"].str.strip()
163
+
164
+ # Convert data types
165
+ df["date"] = pd.to_datetime(df["date"])
166
+ df["amount"] = pd.to_numeric(df["amount"], errors="coerce")
167
+
168
+ # Save cleaned data
169
+ df.to_excel("cleaned_data.xlsx", index=False)
170
+ ```
171
+
172
+ ## Merging and joining
173
+
174
+ Combine multiple Excel files:
175
+
176
+ ```python
177
+ import pandas as pd
178
+
179
+ # Read multiple files
180
+ df1 = pd.read_excel("sales_q1.xlsx")
181
+ df2 = pd.read_excel("sales_q2.xlsx")
182
+
183
+ # Concatenate vertically
184
+ combined = pd.concat([df1, df2], ignore_index=True)
185
+
186
+ # Merge on common column
187
+ customers = pd.read_excel("customers.xlsx")
188
+ sales = pd.read_excel("sales.xlsx")
189
+
190
+ merged = pd.merge(sales, customers, on="customer_id", how="left")
191
+
192
+ merged.to_excel("merged_data.xlsx", index=False)
193
+ ```
194
+
195
+ ## Advanced formatting
196
+
197
+ Apply conditional formatting and styles:
198
+
199
+ ```python
200
+ import pandas as pd
201
+ from openpyxl import load_workbook
202
+ from openpyxl.styles import PatternFill, Font
203
+
204
+ # Create Excel file
205
+ df = pd.DataFrame({
206
+ "Product": ["A", "B", "C"],
207
+ "Sales": [100, 200, 150]
208
+ })
209
+
210
+ df.to_excel("formatted.xlsx", index=False)
211
+
212
+ # Load workbook for formatting
213
+ wb = load_workbook("formatted.xlsx")
214
+ ws = wb.active
215
+
216
+ # Apply conditional formatting
217
+ red_fill = PatternFill(start_color="FF0000", end_color="FF0000", fill_type="solid")
218
+ green_fill = PatternFill(start_color="00FF00", end_color="00FF00", fill_type="solid")
219
+
220
+ for row in range(2, len(df) + 2):
221
+ cell = ws[f"B{row}"]
222
+ if cell.value < 150:
223
+ cell.fill = red_fill
224
+ else:
225
+ cell.fill = green_fill
226
+
227
+ # Bold headers
228
+ for cell in ws[1]:
229
+ cell.font = Font(bold=True)
230
+
231
+ wb.save("formatted.xlsx")
232
+ ```
233
+
234
+ ## Performance tips
235
+
236
+ - Use `read_excel` with `usecols` to read specific columns only
237
+ - Use `chunksize` for very large files
238
+ - Consider using `engine='openpyxl'` or `engine='xlrd'` based on file type
239
+ - Use `dtype` parameter to specify column types for faster reading
240
+
241
+ ## Available packages
242
+
243
+ - **pandas** - Data analysis and manipulation (primary)
244
+ - **openpyxl** - Excel file creation and formatting
245
+ - **xlrd** - Reading older .xls files
246
+ - **xlsxwriter** - Advanced Excel writing capabilities
247
+ - **matplotlib** - Chart generation
@@ -0,0 +1,153 @@
1
+ ---
2
+ name: ge-payroll
3
+ description: |
4
+ **GE Payroll Process Expert**: Comprehensive knowledge base and assistant for Golden Elephant (GE) payroll operations. Covers the entire monthly payroll cycle: employee data collection, masterlist management, timesheet processing, BHXH (social insurance) compliance, KPI/COM calculation, salary computation, approval workflow, and staff cost reporting.
5
+
6
+ MANDATORY TRIGGERS: payroll, tính lương, chấm công, BHXH, bảo hiểm xã hội, masterlist, C&B, bảng lương, phiếu lương, timesheet, manday, staff cost, KPI/COM, phân bổ CF, cost factor, trích nộp BHXH, thuế TNCN, PIT, quy trình lương, payslip, Golden Elephant, GE payroll, nghiệp vụ lương, compensation & benefits
7
+
8
+ Use this skill whenever the user asks about payroll processes, wants to create payroll-related documents (presentations, reports, spreadsheets), needs to understand the GE payroll workflow, wants to analyze pain points and propose improvements, or needs guidance on any step of the monthly payroll cycle. Also trigger when discussing HR operations, employee onboarding/offboarding impacts on payroll, BHXH compliance, or staff cost allocation — even if they don't explicitly mention "payroll".
9
+ ---
10
+
11
+ # GE Payroll Process - Comprehensive Skill
12
+
13
+ You are a payroll operations expert for Golden Elephant (GE). You have deep knowledge of GE's monthly payroll cycle — a process that spans ~14.3 mandays per month across 18 major steps involving 8+ stakeholders.
14
+
15
+ ## How to Use This Skill
16
+
17
+ This skill gives you two levels of information:
18
+
19
+ 1. **This file (SKILL.md)** — The overview, key metrics, process summary, and guidance for common tasks. This should be enough for most questions.
20
+ 2. **Reference files** — For detailed step-by-step procedures, pain point analysis, RACI matrix, and automation roadmap. Read these when you need depth:
21
+ - `references/process-detail.md` — Full 18-step process with inputs, actions, risks, timing, and automation ideas
22
+ - `references/timeline-mandays.md` — Day-by-day timeline with manday breakdown per task
23
+ - `references/pain-points-improvements.md` — 10+ pain points, impact analysis, and 3-phase improvement roadmap
24
+ - `references/raci-stakeholders.md` — RACI matrix and stakeholder responsibilities
25
+
26
+ ## Process Overview
27
+
28
+ GE's payroll runs on a **monthly cycle** from day 27 of the previous month to day 17 of the current month:
29
+
30
+ ### The 3 Main Phases
31
+
32
+ **Phase 1: Thu thập thông tin (Data Collection)** — Day 27 to Day 3
33
+ - Collect employee on/off info, update Masterlist
34
+ - Gather CF (Cost Factor) allocation from department Heads
35
+ - Process BHXH (social insurance) enrollment/withdrawal
36
+ - Process timesheets from multiple sources (fingerprint, Excel, Power App, email)
37
+ - Calculate KPI/COM/CTV compensation
38
+
39
+ **Phase 2: Tính lương (Payroll Calculation)** — Day 2 to Day 3
40
+ - Set up payroll form with employee data
41
+ - Import timesheet data, verify against Masterlist
42
+ - Calculate: base salary, BHXH deductions, KPI/COM/bonus, OT, welfare, PIT
43
+ - Double-check net salary vs. previous month
44
+
45
+ **Phase 3: Phê duyệt & Chi trả (Approval & Payment)** — Day 5 to Day 10
46
+ - C&B Manager review → HRM/BOM approval → F&A/BOM approve base request
47
+ - Process payment via e-Banking
48
+ - Send payslips, archive records
49
+ - Submit BHXH documentation to authorities (Day 12-17)
50
+
51
+ ### Key Metrics
52
+
53
+ | Metric | Value |
54
+ |--------|-------|
55
+ | Total mandays/month | 14.3 |
56
+ | Process steps | 18 |
57
+ | Stakeholders | 8+ (TA, C&B, HRM, BOM, F&A, Head/BU, IT, Kế toán) |
58
+ | Cycle | Monthly (Day 27 → Day 17) |
59
+ | Legal entities | 7 pháp nhân |
60
+ | Major pain points | 10+ |
61
+ | Current system | Manual + Excel |
62
+
63
+ ### Data Flow
64
+
65
+ ```
66
+ Inputs → MASTERLIST → Processing → PAYROLL → Outputs
67
+
68
+ Inputs: Processing: Outputs:
69
+ - Thông tin NV on/off - DSNV Phân bổ NS - PAYMENT SALARY
70
+ - Thông tin ký HĐLĐ - DS Chấm công - REPORT STAFF COST
71
+ - Các TT nhân sự khác - DS trích BHXH - PIT Declaration
72
+ - KPI/COM/CTV/GV - BHXH Report
73
+ - OT/Welfare/Add/Deduct - Documentation
74
+ ```
75
+
76
+ ## Stakeholders Quick Reference
77
+
78
+ - **TA (Talent Acquisition)**: Provides new employee info → C&B
79
+ - **C&B (Compensation & Benefits)**: Core process owner — runs the entire payroll cycle
80
+ - **HRM (HR Manager)**: Approves payroll
81
+ - **BOM (Board of Management)**: Final approval
82
+ - **F&A (Finance & Accounting)**: Verifies and processes salary payment
83
+ - **Head/BU (Department Heads)**: CF allocation, timesheet confirmation, KPI/COM data
84
+ - **IT**: Exports attendance raw data from fingerprint system
85
+ - **Kế toán (Accountant)**: Provides revenue data for COM calculation
86
+ - **Cơ quan BHXH**: Receives enrollment docs, issues C12 for reconciliation
87
+ - **NV (Employee)**: Provides personal info, receives payslip
88
+
89
+ ## Common Tasks & How to Handle Them
90
+
91
+ ### When asked to explain the process
92
+ Provide a clear, phased explanation. Start with the overview, then drill into whichever phase the user is asking about. Reference the timeline (read `references/timeline-mandays.md`) for specific dates and effort.
93
+
94
+ ### When asked to create a presentation
95
+ Use the PPTX skill alongside this one. Structure the deck following GE's established format:
96
+ 1. Title + Agenda
97
+ 2. Overview with key metrics
98
+ 3. Data flow diagram explanation
99
+ 4. Detailed phases (with timeline)
100
+ 5. Pain points analysis
101
+ 6. Improvement roadmap (3 phases: Quick Wins → Strategic → Transformation)
102
+ 7. RACI matrix
103
+ 8. ROI projections
104
+
105
+ ### When asked to analyze pain points or propose improvements
106
+ Read `references/pain-points-improvements.md` for the full analysis. The top pain points are:
107
+ 1. Incomplete/inaccurate employee info from TA
108
+ 2. Late responses from department Heads
109
+ 3. Heavily manual processes (Excel-based)
110
+ 4. No integrated HRIS system
111
+ 5. BHXH/Tax compliance risks from late reporting
112
+ 6. Multi-department dependencies creating bottlenecks
113
+ 7. Lack of standardized processes across departments
114
+ 8. No visibility or tracking dashboard
115
+
116
+ ### When asked about compliance (BHXH, Tax)
117
+ Read `references/process-detail.md` for BHXH conditions and PIT calculation details. Key rules:
118
+ - BHXH eligibility: Must have HĐLĐ + unpaid leave ≤ 14 days/month
119
+ - PIT: Determine tax type, NPT deductions per employee
120
+ - C12 reconciliation: Monthly comparison with BHXH authority figures
121
+ - Late reporting risks: Must file adjustment + explanation to BHXH
122
+
123
+ ### When asked to create a report or spreadsheet
124
+ Use the XLSX or DOCX skill as appropriate. Common report types:
125
+ - Payment Salary (chi trả lương)
126
+ - Staff Cost Report (báo cáo chi phí nhân sự per 7 legal entities)
127
+ - PIT Declaration (tờ khai thuế TNCN)
128
+ - BHXH Report
129
+ - Manday tracking report
130
+
131
+ ### When asked about automation or HRIS
132
+ Read `references/pain-points-improvements.md` for the 3-phase roadmap:
133
+ - **Phase 1 (Quick Wins, 1-2 months)**: Validated forms, deadline reminders, standardized templates, basic dashboard
134
+ - **Phase 2 (Strategic, 3-6 months)**: Power Automate, unified attendance, Employee Self-Service, offboarding workflow
135
+ - **Phase 3 (Transformation, 6-12 months)**: Full HRIS, end-to-end payroll automation, AI analytics
136
+
137
+ Expected outcomes: 40-50% time reduction, 80% fewer errors, 100% visibility, ROI in 6-8 months.
138
+
139
+ ## Language Notes
140
+
141
+ This is a Vietnamese business context. Use Vietnamese terminology naturally when communicating with Vietnamese-speaking users. Key terms:
142
+ - Bảng lương = Payroll sheet
143
+ - Chấm công = Timesheet/Attendance
144
+ - Phiếu lương = Payslip
145
+ - Trích nộp BHXH = Social insurance deduction
146
+ - Phân bổ CF = Cost factor allocation
147
+ - Pháp nhân = Legal entity
148
+ - HĐLĐ = Labor contract (Hợp đồng lao động)
149
+ - PLHĐ = Contract appendix (Phụ lục hợp đồng)
150
+ - Thuế TNCN/PIT = Personal income tax
151
+ - NPT = Người phụ thuộc (Dependents for tax deduction)
152
+ - CTV = Cộng tác viên (Collaborator/Freelancer)
153
+ - GV = Giáo viên (Teacher)
@@ -0,0 +1,23 @@
1
+ {
2
+ "skill_name": "ge-payroll",
3
+ "evals": [
4
+ {
5
+ "id": 1,
6
+ "prompt": "Tôi là C&B mới vào GE, bạn giải thích cho tôi quy trình tính lương hàng tháng gồm những bước gì, ai phụ trách và timeline cụ thể ra sao?",
7
+ "expected_output": "Giải thích đầy đủ 3 giai đoạn chính (Thu thập TT → Tính lương → Phê duyệt & Chi trả) với 18 bước, timeline từ ngày 27 đến ngày 17, và stakeholders cho mỗi bước. Nên đề cập 14.3 mandays tổng cộng.",
8
+ "files": []
9
+ },
10
+ {
11
+ "id": 2,
12
+ "prompt": "Phân tích cho tôi các pain points chính trong quy trình payroll hiện tại của GE và đề xuất lộ trình cải tiến 3 giai đoạn. Tôi muốn output là file markdown chi tiết.",
13
+ "expected_output": "File markdown liệt kê 10+ pain points với mô tả, impact, và đề xuất. Roadmap 3 phase: Quick Wins (1-2 tháng), Strategic (3-6 tháng), Transformation (6-12 tháng) với ROI projections.",
14
+ "files": []
15
+ },
16
+ {
17
+ "id": 3,
18
+ "prompt": "Quy trình trích nộp BHXH trong payroll GE hoạt động như thế nào? Điều kiện tham gia BHXH là gì? Ai chịu trách nhiệm và timeline ra sao?",
19
+ "expected_output": "Giải thích chi tiết bước 3 (Trích nộp BHXH): điều kiện (có HĐLĐ + nghỉ KL ≤ 14 ngày), timeline (ngày 27-30 chuẩn bị, 12-15 nộp, 15-17 đối chiếu), quy trình đối chiếu C12, rủi ro báo muộn.",
20
+ "files": []
21
+ }
22
+ ]
23
+ }
@@ -0,0 +1,106 @@
1
+ # GE Payroll - Pain Points & Improvement Roadmap
2
+
3
+ ## 10+ Pain Points Analysis
4
+
5
+ ### 1. Thông tin không đầy đủ/chính xác
6
+ - **Mô tả**: TA không cung cấp đủ thông tin NV mới, sai line phòng ban/title
7
+ - **Impact**: C&B mất thời gian check lại với thuế/BHXH/NH, back lại Head confirm
8
+ - **Đề xuất**: Form TTNV có validation, cảnh báo thiếu trường trước khi sync Master data
9
+
10
+ ### 2. Head phản hồi không đúng thời hạn
11
+ - **Mô tả**: Head không phản hồi đúng thời gian đánh giá HĐLĐ, phân bổ CF trễ
12
+ - **Impact**: Phải làm lại báo cáo nhiều lần, điều chỉnh sau kỳ lương
13
+ - **Đề xuất**: Hệ thống cảnh báo tự động, deadline workflow với escalation
14
+
15
+ ### 3. Quy trình thủ công, mất thời gian
16
+ - **Mô tả**: Phân bổ CF nhỏ lẻ từng cá nhân = manual. Collect thông tin qua email dễ miss. Tracking nghỉ phép/OT qua email
17
+ - **Impact**: 14.3 mandays/tháng, phần lớn là manual work trên Excel
18
+ - **Đề xuất**: Tự động hóa với Power Automate, tích hợp dữ liệu từ nhiều nguồn
19
+
20
+ ### 4. Thiếu hệ thống tích hợp (No HRIS)
21
+ - **Mô tả**: Khó truy xuất PLHĐ/HĐLĐ. Master data chưa đáp ứng truy xuất. Theo dõi bằng file Excel riêng
22
+ - **Impact**: Dữ liệu phân tán, thiếu single source of truth
23
+ - **Đề xuất**: HRIS tích hợp, Employee Self-Service Portal
24
+
25
+ ### 5. Rủi ro tuân thủ BHXH/Thuế
26
+ - **Mô tả**: Nghỉ việc báo muộn → giải trình BHXH. Thay đổi mức lương báo sau kỳ. CTV/GV thay đổi hình thức liên tục
27
+ - **Impact**: Phải điều chỉnh tháng kế tiếp, làm hồ sơ giải trình, rủi ro vi phạm
28
+ - **Đề xuất**: Quy trình offboarding chặt chẽ, cảnh báo sớm khi có thay đổi
29
+
30
+ ### 6. Phụ thuộc nhiều bộ phận
31
+ - **Mô tả**: C&B phụ thuộc TA, Head, BU, Kế toán, IT. 8+ stakeholders = nhiều điểm chờ
32
+ - **Impact**: Bottleneck khi 1 bộ phận chậm, toàn bộ process bị delay
33
+ - **Đề xuất**: SLA rõ ràng, escalation process, dashboard theo dõi tiến độ
34
+
35
+ ### 7. Thiếu chuẩn hóa quy trình
36
+ - **Mô tả**: Các bộ phận chấm công khác nhau (Excel + Power App + Email + Vân tay). Không có form yêu cầu cụ thể cho nhiều thay đổi
37
+ - **Impact**: C&B phải xử lý nhiều format, dễ sai sót
38
+ - **Đề xuất**: Chuẩn hóa input/output, single source of truth cho chấm công
39
+
40
+ ### 8. Thiếu visibility & tracking
41
+ - **Mô tả**: Không biết ai đã phản hồi/chưa. Khó track tiến độ từng bước. Follow up manual qua email
42
+ - **Impact**: Mất thời gian follow up, dễ miss deadline
43
+ - **Đề xuất**: Dashboard tracking, notification system, KPI metrics
44
+
45
+ ### 9. NV Sales Part-time thay đổi hình thức liên tục
46
+ - **Mô tả**: CTV/GV thay đổi hình thức làm việc (full-time ↔ part-time ↔ freelancer)
47
+ - **Impact**: Cản trở apply công thức COM chung, phải điều chỉnh tay
48
+ - **Đề xuất**: Hệ thống tracking loại hình NV với rules tự động
49
+
50
+ ### 10. Phân bổ CF quá nhỏ lẻ
51
+ - **Mô tả**: 1 cá nhân có thể được phân bổ nhiều CF khác nhau → mỗi CF = 1 dòng riêng trong báo cáo
52
+ - **Impact**: Báo cáo cho 7 pháp nhân rất phức tạp, hoàn toàn manual
53
+ - **Đề xuất**: Tự động tách dòng CF trong báo cáo
54
+
55
+ ---
56
+
57
+ ## 3-Phase Improvement Roadmap
58
+
59
+ ### Phase 1: Quick Wins (1-2 tháng)
60
+ **Effort: Thấp | Impact: Cao**
61
+
62
+ 1. Form TTNV có validation tự động
63
+ 2. Deadline workflow cho Head (reminder email tự động)
64
+ 3. Chuẩn hóa input templates cho tất cả bộ phận
65
+ 4. Dashboard tracking cơ bản (ai đã phản hồi/chưa)
66
+ 5. SLA rõ ràng cho từng bộ phận (timeline + escalation)
67
+
68
+ ### Phase 2: Strategic (3-6 tháng)
69
+ **Effort: Trung bình | Impact: Cao**
70
+
71
+ 1. Tự động hóa với Power Automate (collect data, send reminders, route approvals)
72
+ 2. Tích hợp chấm công unified (1 nguồn duy nhất thay vì 4 nguồn)
73
+ 3. Employee Self-Service Portal (NV tự cập nhật thông tin, đăng ký phép/OT)
74
+ 4. Quy trình offboarding chặt chẽ trên system
75
+ 5. Real-time notification system (approval alerts, deadline warnings)
76
+
77
+ ### Phase 3: Transformation (6-12 tháng)
78
+ **Effort: Cao | Impact: Rất cao**
79
+
80
+ 1. HRIS tích hợp toàn diện
81
+ - Single source of truth cho tất cả dữ liệu HR
82
+ - Workflow automation end-to-end
83
+ - Approval chains tự động
84
+ 2. Payroll automation
85
+ - Tích hợp với hệ thống chấm công
86
+ - Tự động tính toán các khoản phát sinh
87
+ - Auto-generate reports cho 7 pháp nhân
88
+ 3. Advanced Analytics
89
+ - AI-assisted anomaly detection
90
+ - Predictive analytics cho budget planning
91
+ - Employee cost analytics dashboard
92
+
93
+ ---
94
+
95
+ ## ROI Projections
96
+
97
+ | Metric | Hiện tại | Sau Phase 2 | Sau Phase 3 |
98
+ |--------|----------|-------------|-------------|
99
+ | Mandays/tháng | 14.3 | ~7 | ~4 |
100
+ | Tỷ lệ sai sót | Cao | Giảm 60% | Giảm 80% |
101
+ | Visibility | Thấp | 80% | 100% |
102
+ | Compliance risk | Cao | Trung bình | Thấp |
103
+ | Employee experience | Thấp | Trung bình | Cao |
104
+
105
+ **Tiết kiệm mandays/năm**: ~84 mandays (sau Phase 2), ~120 mandays (sau Phase 3)
106
+ **ROI ước tính**: Hoàn vốn sau 6-8 tháng triển khai Phase 1 & 2