codewave-openclaw-installer 1.0.2 → 2.1.0

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 (1060) hide show
  1. package/README.md +95 -22
  2. package/bin/check.mjs +623 -0
  3. package/bin/install-lib.mjs +215 -0
  4. package/bin/install.mjs +818 -76
  5. package/index.js +21 -0
  6. package/openclaw.plugin.json +11 -0
  7. package/package.json +28 -5
  8. package/skills/acceptance-doc-entry/SKILL.md +289 -0
  9. package/skills/meeting-to-prd/SKILL.md +210 -0
  10. package/skills/meeting-to-prd/references/meeting-notes-template.md +50 -0
  11. package/skills/meeting-to-prd/references/prd-reference.docx +0 -0
  12. package/skills/meeting-to-prd/references/prd-template.md +67 -0
  13. package/skills/pmo-weekly-report/SKILL.md +536 -0
  14. package/skills/popo-doc/SKILL.md +77 -0
  15. package/skills/popo-robot-api/SKILL.md +232 -0
  16. package/skills/ppt-master/SKILL.md +314 -0
  17. package/skills/ppt-master/projects/.gitkeep +0 -0
  18. package/skills/ppt-master/references/canvas-formats.md +73 -0
  19. package/skills/ppt-master/references/executor-base.md +198 -0
  20. package/skills/ppt-master/references/executor-consultant-top.md +218 -0
  21. package/skills/ppt-master/references/executor-consultant.md +197 -0
  22. package/skills/ppt-master/references/executor-general.md +122 -0
  23. package/skills/ppt-master/references/image-generator.md +444 -0
  24. package/skills/ppt-master/references/image-layout-spec.md +174 -0
  25. package/skills/ppt-master/references/shared-standards.md +442 -0
  26. package/skills/ppt-master/references/strategist.md +391 -0
  27. package/skills/ppt-master/references/svg-image-embedding.md +177 -0
  28. package/skills/ppt-master/references/template-designer.md +175 -0
  29. package/skills/ppt-master/scripts/README.md +78 -0
  30. package/skills/ppt-master/scripts/analyze_images.py +239 -0
  31. package/skills/ppt-master/scripts/assets/bg_48.png +0 -0
  32. package/skills/ppt-master/scripts/assets/bg_96.png +0 -0
  33. package/skills/ppt-master/scripts/batch_validate.py +309 -0
  34. package/skills/ppt-master/scripts/config.py +604 -0
  35. package/skills/ppt-master/scripts/doc_to_md.py +232 -0
  36. package/skills/ppt-master/scripts/docs/conversion.md +89 -0
  37. package/skills/ppt-master/scripts/docs/image.md +96 -0
  38. package/skills/ppt-master/scripts/docs/project.md +84 -0
  39. package/skills/ppt-master/scripts/docs/svg-pipeline.md +161 -0
  40. package/skills/ppt-master/scripts/docs/troubleshooting.md +62 -0
  41. package/skills/ppt-master/scripts/error_helper.py +438 -0
  42. package/skills/ppt-master/scripts/finalize_svg.py +302 -0
  43. package/skills/ppt-master/scripts/gemini_watermark_remover.py +230 -0
  44. package/skills/ppt-master/scripts/generate_examples_index.py +241 -0
  45. package/skills/ppt-master/scripts/image_backends/__init__.py +1 -0
  46. package/skills/ppt-master/scripts/image_backends/backend_aigw_gemini.py +209 -0
  47. package/skills/ppt-master/scripts/image_backends/backend_bfl.py +177 -0
  48. package/skills/ppt-master/scripts/image_backends/backend_common.py +244 -0
  49. package/skills/ppt-master/scripts/image_backends/backend_fal.py +127 -0
  50. package/skills/ppt-master/scripts/image_backends/backend_gemini.py +227 -0
  51. package/skills/ppt-master/scripts/image_backends/backend_ideogram.py +152 -0
  52. package/skills/ppt-master/scripts/image_backends/backend_openai.py +233 -0
  53. package/skills/ppt-master/scripts/image_backends/backend_qwen.py +197 -0
  54. package/skills/ppt-master/scripts/image_backends/backend_replicate.py +173 -0
  55. package/skills/ppt-master/scripts/image_backends/backend_siliconflow.py +180 -0
  56. package/skills/ppt-master/scripts/image_backends/backend_stability.py +143 -0
  57. package/skills/ppt-master/scripts/image_backends/backend_volcengine.py +187 -0
  58. package/skills/ppt-master/scripts/image_backends/backend_zhipu.py +188 -0
  59. package/skills/ppt-master/scripts/image_gen.py +412 -0
  60. package/skills/ppt-master/scripts/pdf_to_md.py +794 -0
  61. package/skills/ppt-master/scripts/pptx_animations.py +268 -0
  62. package/skills/ppt-master/scripts/project_manager.py +661 -0
  63. package/skills/ppt-master/scripts/project_utils.py +475 -0
  64. package/skills/ppt-master/scripts/rotate_images.py +583 -0
  65. package/skills/ppt-master/scripts/svg_finalize/__init__.py +1 -0
  66. package/skills/ppt-master/scripts/svg_finalize/crop_images.py +343 -0
  67. package/skills/ppt-master/scripts/svg_finalize/embed_icons.py +250 -0
  68. package/skills/ppt-master/scripts/svg_finalize/embed_images.py +184 -0
  69. package/skills/ppt-master/scripts/svg_finalize/fix_image_aspect.py +380 -0
  70. package/skills/ppt-master/scripts/svg_finalize/flatten_tspan.py +493 -0
  71. package/skills/ppt-master/scripts/svg_finalize/svg_rect_to_path.py +337 -0
  72. package/skills/ppt-master/scripts/svg_position_calculator.py +1486 -0
  73. package/skills/ppt-master/scripts/svg_quality_checker.py +487 -0
  74. package/skills/ppt-master/scripts/svg_to_pptx/__init__.py +17 -0
  75. package/skills/ppt-master/scripts/svg_to_pptx/drawingml_context.py +102 -0
  76. package/skills/ppt-master/scripts/svg_to_pptx/drawingml_converter.py +269 -0
  77. package/skills/ppt-master/scripts/svg_to_pptx/drawingml_elements.py +848 -0
  78. package/skills/ppt-master/scripts/svg_to_pptx/drawingml_paths.py +429 -0
  79. package/skills/ppt-master/scripts/svg_to_pptx/drawingml_styles.py +359 -0
  80. package/skills/ppt-master/scripts/svg_to_pptx/drawingml_utils.py +310 -0
  81. package/skills/ppt-master/scripts/svg_to_pptx/pptx_builder.py +366 -0
  82. package/skills/ppt-master/scripts/svg_to_pptx/pptx_cli.py +196 -0
  83. package/skills/ppt-master/scripts/svg_to_pptx/pptx_dimensions.py +148 -0
  84. package/skills/ppt-master/scripts/svg_to_pptx/pptx_discovery.py +101 -0
  85. package/skills/ppt-master/scripts/svg_to_pptx/pptx_media.py +86 -0
  86. package/skills/ppt-master/scripts/svg_to_pptx/pptx_notes.py +157 -0
  87. package/skills/ppt-master/scripts/svg_to_pptx/pptx_slide_xml.py +136 -0
  88. package/skills/ppt-master/scripts/svg_to_pptx.py +17 -0
  89. package/skills/ppt-master/scripts/total_md_split.py +367 -0
  90. package/skills/ppt-master/scripts/web_to_md.cjs +850 -0
  91. package/skills/ppt-master/scripts/web_to_md.py +755 -0
  92. package/skills/ppt-master/templates/README.md +48 -0
  93. package/skills/ppt-master/templates/charts/README.md +102 -0
  94. package/skills/ppt-master/templates/charts/area_chart.svg +255 -0
  95. package/skills/ppt-master/templates/charts/bar_chart.svg +185 -0
  96. package/skills/ppt-master/templates/charts/box_plot_chart.svg +308 -0
  97. package/skills/ppt-master/templates/charts/bubble_chart.svg +289 -0
  98. package/skills/ppt-master/templates/charts/bullet_chart.svg +214 -0
  99. package/skills/ppt-master/templates/charts/butterfly_chart.svg +247 -0
  100. package/skills/ppt-master/templates/charts/charts_index.json +286 -0
  101. package/skills/ppt-master/templates/charts/donut_chart.svg +246 -0
  102. package/skills/ppt-master/templates/charts/dual_axis_line_chart.svg +311 -0
  103. package/skills/ppt-master/templates/charts/dumbbell_chart.svg +196 -0
  104. package/skills/ppt-master/templates/charts/funnel_chart.svg +241 -0
  105. package/skills/ppt-master/templates/charts/gantt_chart.svg +315 -0
  106. package/skills/ppt-master/templates/charts/gauge_chart.svg +262 -0
  107. package/skills/ppt-master/templates/charts/grouped_bar_chart.svg +275 -0
  108. package/skills/ppt-master/templates/charts/heatmap_chart.svg +214 -0
  109. package/skills/ppt-master/templates/charts/horizontal_bar_chart.svg +213 -0
  110. package/skills/ppt-master/templates/charts/kpi_cards.svg +215 -0
  111. package/skills/ppt-master/templates/charts/line_chart.svg +218 -0
  112. package/skills/ppt-master/templates/charts/matrix_2x2.svg +334 -0
  113. package/skills/ppt-master/templates/charts/org_chart.svg +316 -0
  114. package/skills/ppt-master/templates/charts/pareto_chart.svg +227 -0
  115. package/skills/ppt-master/templates/charts/pie_chart.svg +215 -0
  116. package/skills/ppt-master/templates/charts/porter_five_forces.svg +246 -0
  117. package/skills/ppt-master/templates/charts/process_flow.svg +333 -0
  118. package/skills/ppt-master/templates/charts/progress_bar_chart.svg +295 -0
  119. package/skills/ppt-master/templates/charts/radar_chart.svg +158 -0
  120. package/skills/ppt-master/templates/charts/sankey_chart.svg +303 -0
  121. package/skills/ppt-master/templates/charts/scatter_chart.svg +235 -0
  122. package/skills/ppt-master/templates/charts/stacked_area_chart.svg +230 -0
  123. package/skills/ppt-master/templates/charts/stacked_bar_chart.svg +199 -0
  124. package/skills/ppt-master/templates/charts/swot_analysis.svg +277 -0
  125. package/skills/ppt-master/templates/charts/timeline.svg +279 -0
  126. package/skills/ppt-master/templates/charts/treemap_chart.svg +226 -0
  127. package/skills/ppt-master/templates/charts/waterfall_chart.svg +265 -0
  128. package/skills/ppt-master/templates/design_spec_reference.md +282 -0
  129. package/skills/ppt-master/templates/icons/FULL_INDEX.md +272 -0
  130. package/skills/ppt-master/templates/icons/README.md +75 -0
  131. package/skills/ppt-master/templates/icons/a.svg +4 -0
  132. package/skills/ppt-master/templates/icons/accessibility.svg +4 -0
  133. package/skills/ppt-master/templates/icons/activity.svg +5 -0
  134. package/skills/ppt-master/templates/icons/address-card.svg +4 -0
  135. package/skills/ppt-master/templates/icons/alarm-clock.svg +6 -0
  136. package/skills/ppt-master/templates/icons/alien.svg +4 -0
  137. package/skills/ppt-master/templates/icons/align-bottom.svg +6 -0
  138. package/skills/ppt-master/templates/icons/align-center-horizontal.svg +5 -0
  139. package/skills/ppt-master/templates/icons/align-center-vertical.svg +5 -0
  140. package/skills/ppt-master/templates/icons/align-left.svg +6 -0
  141. package/skills/ppt-master/templates/icons/align-right.svg +6 -0
  142. package/skills/ppt-master/templates/icons/align-text-center.svg +7 -0
  143. package/skills/ppt-master/templates/icons/align-text-justify.svg +7 -0
  144. package/skills/ppt-master/templates/icons/align-text-left.svg +7 -0
  145. package/skills/ppt-master/templates/icons/align-text-right.svg +7 -0
  146. package/skills/ppt-master/templates/icons/align-top.svg +6 -0
  147. package/skills/ppt-master/templates/icons/anchor.svg +4 -0
  148. package/skills/ppt-master/templates/icons/angle-down.svg +4 -0
  149. package/skills/ppt-master/templates/icons/angle-left.svg +4 -0
  150. package/skills/ppt-master/templates/icons/angle-right.svg +4 -0
  151. package/skills/ppt-master/templates/icons/angle-up.svg +4 -0
  152. package/skills/ppt-master/templates/icons/angles-down.svg +5 -0
  153. package/skills/ppt-master/templates/icons/angles-left.svg +5 -0
  154. package/skills/ppt-master/templates/icons/angles-right.svg +5 -0
  155. package/skills/ppt-master/templates/icons/angles-up.svg +5 -0
  156. package/skills/ppt-master/templates/icons/aperture.svg +9 -0
  157. package/skills/ppt-master/templates/icons/aquarius.svg +6 -0
  158. package/skills/ppt-master/templates/icons/archive-box.svg +5 -0
  159. package/skills/ppt-master/templates/icons/aries.svg +4 -0
  160. package/skills/ppt-master/templates/icons/arrow-down-from-line.svg +5 -0
  161. package/skills/ppt-master/templates/icons/arrow-down-left.svg +4 -0
  162. package/skills/ppt-master/templates/icons/arrow-down-right.svg +4 -0
  163. package/skills/ppt-master/templates/icons/arrow-down-short-wide.svg +7 -0
  164. package/skills/ppt-master/templates/icons/arrow-down-to-bracket.svg +5 -0
  165. package/skills/ppt-master/templates/icons/arrow-down-to-line.svg +5 -0
  166. package/skills/ppt-master/templates/icons/arrow-down-wide-short.svg +7 -0
  167. package/skills/ppt-master/templates/icons/arrow-down.svg +4 -0
  168. package/skills/ppt-master/templates/icons/arrow-left-arrow-right.svg +5 -0
  169. package/skills/ppt-master/templates/icons/arrow-left-from-line.svg +5 -0
  170. package/skills/ppt-master/templates/icons/arrow-left-to-line.svg +5 -0
  171. package/skills/ppt-master/templates/icons/arrow-left.svg +4 -0
  172. package/skills/ppt-master/templates/icons/arrow-right-from-bracket.svg +5 -0
  173. package/skills/ppt-master/templates/icons/arrow-right-from-line.svg +5 -0
  174. package/skills/ppt-master/templates/icons/arrow-right-to-bracket.svg +5 -0
  175. package/skills/ppt-master/templates/icons/arrow-right-to-line.svg +5 -0
  176. package/skills/ppt-master/templates/icons/arrow-right.svg +4 -0
  177. package/skills/ppt-master/templates/icons/arrow-rotate-left.svg +4 -0
  178. package/skills/ppt-master/templates/icons/arrow-rotate-right.svg +4 -0
  179. package/skills/ppt-master/templates/icons/arrow-trend-down.svg +4 -0
  180. package/skills/ppt-master/templates/icons/arrow-trend-up.svg +4 -0
  181. package/skills/ppt-master/templates/icons/arrow-turn-down-left.svg +4 -0
  182. package/skills/ppt-master/templates/icons/arrow-turn-down-right.svg +4 -0
  183. package/skills/ppt-master/templates/icons/arrow-turn-left-down.svg +4 -0
  184. package/skills/ppt-master/templates/icons/arrow-turn-left-up.svg +4 -0
  185. package/skills/ppt-master/templates/icons/arrow-turn-right-down.svg +4 -0
  186. package/skills/ppt-master/templates/icons/arrow-turn-right-up.svg +4 -0
  187. package/skills/ppt-master/templates/icons/arrow-turn-up-left.svg +4 -0
  188. package/skills/ppt-master/templates/icons/arrow-turn-up-right.svg +4 -0
  189. package/skills/ppt-master/templates/icons/arrow-u-down-left.svg +4 -0
  190. package/skills/ppt-master/templates/icons/arrow-u-down-right.svg +4 -0
  191. package/skills/ppt-master/templates/icons/arrow-u-left-down.svg +4 -0
  192. package/skills/ppt-master/templates/icons/arrow-u-left-up.svg +4 -0
  193. package/skills/ppt-master/templates/icons/arrow-u-right-down.svg +4 -0
  194. package/skills/ppt-master/templates/icons/arrow-u-right-up.svg +4 -0
  195. package/skills/ppt-master/templates/icons/arrow-u-up-left.svg +4 -0
  196. package/skills/ppt-master/templates/icons/arrow-u-up-right.svg +4 -0
  197. package/skills/ppt-master/templates/icons/arrow-up-arrow-down.svg +5 -0
  198. package/skills/ppt-master/templates/icons/arrow-up-from-bracket.svg +5 -0
  199. package/skills/ppt-master/templates/icons/arrow-up-from-line.svg +5 -0
  200. package/skills/ppt-master/templates/icons/arrow-up-left.svg +4 -0
  201. package/skills/ppt-master/templates/icons/arrow-up-right-from-square.svg +5 -0
  202. package/skills/ppt-master/templates/icons/arrow-up-right.svg +4 -0
  203. package/skills/ppt-master/templates/icons/arrow-up-short-wide.svg +7 -0
  204. package/skills/ppt-master/templates/icons/arrow-up-to-line.svg +5 -0
  205. package/skills/ppt-master/templates/icons/arrow-up-wide-short.svg +7 -0
  206. package/skills/ppt-master/templates/icons/arrow-up.svg +4 -0
  207. package/skills/ppt-master/templates/icons/arrows-left-right.svg +4 -0
  208. package/skills/ppt-master/templates/icons/arrows-repeat.svg +5 -0
  209. package/skills/ppt-master/templates/icons/arrows-rotate-clockwise.svg +5 -0
  210. package/skills/ppt-master/templates/icons/arrows-rotate-counter-clockwise.svg +5 -0
  211. package/skills/ppt-master/templates/icons/arrows-up-down.svg +4 -0
  212. package/skills/ppt-master/templates/icons/at.svg +4 -0
  213. package/skills/ppt-master/templates/icons/axe.svg +4 -0
  214. package/skills/ppt-master/templates/icons/b.svg +4 -0
  215. package/skills/ppt-master/templates/icons/badge-check.svg +4 -0
  216. package/skills/ppt-master/templates/icons/badge.svg +4 -0
  217. package/skills/ppt-master/templates/icons/ban.svg +4 -0
  218. package/skills/ppt-master/templates/icons/baseball-bat.svg +5 -0
  219. package/skills/ppt-master/templates/icons/baseball.svg +6 -0
  220. package/skills/ppt-master/templates/icons/basketball.svg +9 -0
  221. package/skills/ppt-master/templates/icons/battery-charge.svg +5 -0
  222. package/skills/ppt-master/templates/icons/battery-empty.svg +4 -0
  223. package/skills/ppt-master/templates/icons/battery-full.svg +4 -0
  224. package/skills/ppt-master/templates/icons/battery-half.svg +4 -0
  225. package/skills/ppt-master/templates/icons/battery-slash.svg +5 -0
  226. package/skills/ppt-master/templates/icons/bed.svg +4 -0
  227. package/skills/ppt-master/templates/icons/bee.svg +5 -0
  228. package/skills/ppt-master/templates/icons/bell-slash.svg +6 -0
  229. package/skills/ppt-master/templates/icons/bell.svg +5 -0
  230. package/skills/ppt-master/templates/icons/bicycle.svg +7 -0
  231. package/skills/ppt-master/templates/icons/bishop.svg +4 -0
  232. package/skills/ppt-master/templates/icons/block-quote.svg +8 -0
  233. package/skills/ppt-master/templates/icons/bluetooth.svg +4 -0
  234. package/skills/ppt-master/templates/icons/bold.svg +4 -0
  235. package/skills/ppt-master/templates/icons/bolt.svg +4 -0
  236. package/skills/ppt-master/templates/icons/bomb.svg +6 -0
  237. package/skills/ppt-master/templates/icons/bone.svg +4 -0
  238. package/skills/ppt-master/templates/icons/book-open.svg +4 -0
  239. package/skills/ppt-master/templates/icons/book.svg +4 -0
  240. package/skills/ppt-master/templates/icons/bookmark-plus.svg +4 -0
  241. package/skills/ppt-master/templates/icons/bookmark.svg +4 -0
  242. package/skills/ppt-master/templates/icons/books.svg +6 -0
  243. package/skills/ppt-master/templates/icons/bottle.svg +5 -0
  244. package/skills/ppt-master/templates/icons/bow-and-arrow.svg +4 -0
  245. package/skills/ppt-master/templates/icons/bowl.svg +5 -0
  246. package/skills/ppt-master/templates/icons/box.svg +4 -0
  247. package/skills/ppt-master/templates/icons/bridge.svg +4 -0
  248. package/skills/ppt-master/templates/icons/british-pound.svg +4 -0
  249. package/skills/ppt-master/templates/icons/browser.svg +4 -0
  250. package/skills/ppt-master/templates/icons/brush.svg +5 -0
  251. package/skills/ppt-master/templates/icons/bug.svg +5 -0
  252. package/skills/ppt-master/templates/icons/building.svg +4 -0
  253. package/skills/ppt-master/templates/icons/bullhorn.svg +5 -0
  254. package/skills/ppt-master/templates/icons/burger.svg +6 -0
  255. package/skills/ppt-master/templates/icons/bus.svg +4 -0
  256. package/skills/ppt-master/templates/icons/butterfly.svg +4 -0
  257. package/skills/ppt-master/templates/icons/c.svg +4 -0
  258. package/skills/ppt-master/templates/icons/cake-slice.svg +5 -0
  259. package/skills/ppt-master/templates/icons/cake.svg +8 -0
  260. package/skills/ppt-master/templates/icons/calculator.svg +4 -0
  261. package/skills/ppt-master/templates/icons/calendar.svg +5 -0
  262. package/skills/ppt-master/templates/icons/camera-slash.svg +5 -0
  263. package/skills/ppt-master/templates/icons/camera.svg +4 -0
  264. package/skills/ppt-master/templates/icons/cancer.svg +5 -0
  265. package/skills/ppt-master/templates/icons/capricorn.svg +4 -0
  266. package/skills/ppt-master/templates/icons/car.svg +4 -0
  267. package/skills/ppt-master/templates/icons/card-stack.svg +6 -0
  268. package/skills/ppt-master/templates/icons/caret-down.svg +4 -0
  269. package/skills/ppt-master/templates/icons/caret-left.svg +4 -0
  270. package/skills/ppt-master/templates/icons/caret-right.svg +4 -0
  271. package/skills/ppt-master/templates/icons/caret-up.svg +4 -0
  272. package/skills/ppt-master/templates/icons/castle.svg +4 -0
  273. package/skills/ppt-master/templates/icons/cat.svg +5 -0
  274. package/skills/ppt-master/templates/icons/chair.svg +5 -0
  275. package/skills/ppt-master/templates/icons/chart-bar.svg +6 -0
  276. package/skills/ppt-master/templates/icons/chart-line.svg +5 -0
  277. package/skills/ppt-master/templates/icons/chart-pie.svg +5 -0
  278. package/skills/ppt-master/templates/icons/checkmark.svg +4 -0
  279. package/skills/ppt-master/templates/icons/circle-3-dots-horizontal.svg +4 -0
  280. package/skills/ppt-master/templates/icons/circle-3-dots-vertical.svg +4 -0
  281. package/skills/ppt-master/templates/icons/circle-arrow-down-left.svg +4 -0
  282. package/skills/ppt-master/templates/icons/circle-arrow-down-right.svg +4 -0
  283. package/skills/ppt-master/templates/icons/circle-arrow-down.svg +4 -0
  284. package/skills/ppt-master/templates/icons/circle-arrow-left.svg +4 -0
  285. package/skills/ppt-master/templates/icons/circle-arrow-right.svg +4 -0
  286. package/skills/ppt-master/templates/icons/circle-arrow-up-left.svg +4 -0
  287. package/skills/ppt-master/templates/icons/circle-arrow-up-right.svg +4 -0
  288. package/skills/ppt-master/templates/icons/circle-arrow-up.svg +4 -0
  289. package/skills/ppt-master/templates/icons/circle-checkmark.svg +4 -0
  290. package/skills/ppt-master/templates/icons/circle-divide.svg +4 -0
  291. package/skills/ppt-master/templates/icons/circle-equals.svg +4 -0
  292. package/skills/ppt-master/templates/icons/circle-exclamation.svg +4 -0
  293. package/skills/ppt-master/templates/icons/circle-half.svg +4 -0
  294. package/skills/ppt-master/templates/icons/circle-info.svg +4 -0
  295. package/skills/ppt-master/templates/icons/circle-minus.svg +4 -0
  296. package/skills/ppt-master/templates/icons/circle-number-0.svg +5 -0
  297. package/skills/ppt-master/templates/icons/circle-number-1.svg +4 -0
  298. package/skills/ppt-master/templates/icons/circle-number-2.svg +4 -0
  299. package/skills/ppt-master/templates/icons/circle-number-3.svg +4 -0
  300. package/skills/ppt-master/templates/icons/circle-number-4.svg +4 -0
  301. package/skills/ppt-master/templates/icons/circle-number-5.svg +4 -0
  302. package/skills/ppt-master/templates/icons/circle-number-6.svg +5 -0
  303. package/skills/ppt-master/templates/icons/circle-number-7.svg +4 -0
  304. package/skills/ppt-master/templates/icons/circle-number-8.svg +6 -0
  305. package/skills/ppt-master/templates/icons/circle-number-9.svg +5 -0
  306. package/skills/ppt-master/templates/icons/circle-pause.svg +4 -0
  307. package/skills/ppt-master/templates/icons/circle-play.svg +4 -0
  308. package/skills/ppt-master/templates/icons/circle-plus.svg +4 -0
  309. package/skills/ppt-master/templates/icons/circle-question.svg +4 -0
  310. package/skills/ppt-master/templates/icons/circle-stop.svg +4 -0
  311. package/skills/ppt-master/templates/icons/circle-user.svg +5 -0
  312. package/skills/ppt-master/templates/icons/circle-x.svg +4 -0
  313. package/skills/ppt-master/templates/icons/circle.svg +4 -0
  314. package/skills/ppt-master/templates/icons/citrus-slice.svg +7 -0
  315. package/skills/ppt-master/templates/icons/city.svg +4 -0
  316. package/skills/ppt-master/templates/icons/clipboard.svg +5 -0
  317. package/skills/ppt-master/templates/icons/clock.svg +4 -0
  318. package/skills/ppt-master/templates/icons/closed-captioning.svg +4 -0
  319. package/skills/ppt-master/templates/icons/clothes-hanger.svg +4 -0
  320. package/skills/ppt-master/templates/icons/cloud-arrow-down.svg +4 -0
  321. package/skills/ppt-master/templates/icons/cloud-arrow-up.svg +4 -0
  322. package/skills/ppt-master/templates/icons/cloud-fog.svg +7 -0
  323. package/skills/ppt-master/templates/icons/cloud-lightning.svg +5 -0
  324. package/skills/ppt-master/templates/icons/cloud-rain.svg +7 -0
  325. package/skills/ppt-master/templates/icons/cloud-snow.svg +9 -0
  326. package/skills/ppt-master/templates/icons/cloud.svg +4 -0
  327. package/skills/ppt-master/templates/icons/club.svg +4 -0
  328. package/skills/ppt-master/templates/icons/cocktail.svg +4 -0
  329. package/skills/ppt-master/templates/icons/code-block.svg +4 -0
  330. package/skills/ppt-master/templates/icons/code.svg +6 -0
  331. package/skills/ppt-master/templates/icons/cog.svg +4 -0
  332. package/skills/ppt-master/templates/icons/coin.svg +4 -0
  333. package/skills/ppt-master/templates/icons/columns.svg +5 -0
  334. package/skills/ppt-master/templates/icons/command.svg +4 -0
  335. package/skills/ppt-master/templates/icons/comment-dots.svg +4 -0
  336. package/skills/ppt-master/templates/icons/comment.svg +4 -0
  337. package/skills/ppt-master/templates/icons/comments-slash.svg +5 -0
  338. package/skills/ppt-master/templates/icons/comments.svg +5 -0
  339. package/skills/ppt-master/templates/icons/compact-disc.svg +4 -0
  340. package/skills/ppt-master/templates/icons/compass-drafting.svg +5 -0
  341. package/skills/ppt-master/templates/icons/compass.svg +5 -0
  342. package/skills/ppt-master/templates/icons/component.svg +7 -0
  343. package/skills/ppt-master/templates/icons/copy.svg +5 -0
  344. package/skills/ppt-master/templates/icons/copyright.svg +4 -0
  345. package/skills/ppt-master/templates/icons/credit-card.svg +5 -0
  346. package/skills/ppt-master/templates/icons/crop.svg +5 -0
  347. package/skills/ppt-master/templates/icons/crosshairs.svg +5 -0
  348. package/skills/ppt-master/templates/icons/crown.svg +4 -0
  349. package/skills/ppt-master/templates/icons/crystal-ball.svg +5 -0
  350. package/skills/ppt-master/templates/icons/cube.svg +4 -0
  351. package/skills/ppt-master/templates/icons/cupcake.svg +5 -0
  352. package/skills/ppt-master/templates/icons/curling-stone.svg +5 -0
  353. package/skills/ppt-master/templates/icons/cursor-click.svg +7 -0
  354. package/skills/ppt-master/templates/icons/cursor.svg +4 -0
  355. package/skills/ppt-master/templates/icons/d-pad.svg +7 -0
  356. package/skills/ppt-master/templates/icons/d.svg +4 -0
  357. package/skills/ppt-master/templates/icons/database.svg +6 -0
  358. package/skills/ppt-master/templates/icons/delete.svg +4 -0
  359. package/skills/ppt-master/templates/icons/desktop.svg +4 -0
  360. package/skills/ppt-master/templates/icons/diamond-exclamation.svg +4 -0
  361. package/skills/ppt-master/templates/icons/diamond-half.svg +4 -0
  362. package/skills/ppt-master/templates/icons/diamond-shape.svg +4 -0
  363. package/skills/ppt-master/templates/icons/diamond.svg +4 -0
  364. package/skills/ppt-master/templates/icons/dice.svg +5 -0
  365. package/skills/ppt-master/templates/icons/die-1.svg +4 -0
  366. package/skills/ppt-master/templates/icons/die-2.svg +4 -0
  367. package/skills/ppt-master/templates/icons/die-3.svg +4 -0
  368. package/skills/ppt-master/templates/icons/die-4.svg +4 -0
  369. package/skills/ppt-master/templates/icons/die-5.svg +4 -0
  370. package/skills/ppt-master/templates/icons/die-6.svg +4 -0
  371. package/skills/ppt-master/templates/icons/distribute-horizontal.svg +6 -0
  372. package/skills/ppt-master/templates/icons/distribute-vertical.svg +6 -0
  373. package/skills/ppt-master/templates/icons/divide.svg +6 -0
  374. package/skills/ppt-master/templates/icons/dna.svg +4 -0
  375. package/skills/ppt-master/templates/icons/dog.svg +4 -0
  376. package/skills/ppt-master/templates/icons/dollar.svg +4 -0
  377. package/skills/ppt-master/templates/icons/door-open.svg +4 -0
  378. package/skills/ppt-master/templates/icons/door.svg +4 -0
  379. package/skills/ppt-master/templates/icons/dots-horizontal.svg +6 -0
  380. package/skills/ppt-master/templates/icons/dots-vertical.svg +6 -0
  381. package/skills/ppt-master/templates/icons/droplet.svg +4 -0
  382. package/skills/ppt-master/templates/icons/e.svg +4 -0
  383. package/skills/ppt-master/templates/icons/ear-slash.svg +5 -0
  384. package/skills/ppt-master/templates/icons/ear.svg +4 -0
  385. package/skills/ppt-master/templates/icons/eject.svg +5 -0
  386. package/skills/ppt-master/templates/icons/envelope.svg +5 -0
  387. package/skills/ppt-master/templates/icons/equals.svg +5 -0
  388. package/skills/ppt-master/templates/icons/euro.svg +4 -0
  389. package/skills/ppt-master/templates/icons/exclude.svg +4 -0
  390. package/skills/ppt-master/templates/icons/eye-slash.svg +5 -0
  391. package/skills/ppt-master/templates/icons/eye.svg +4 -0
  392. package/skills/ppt-master/templates/icons/eyedropper.svg +5 -0
  393. package/skills/ppt-master/templates/icons/f.svg +4 -0
  394. package/skills/ppt-master/templates/icons/face-angry.svg +4 -0
  395. package/skills/ppt-master/templates/icons/face-cry.svg +4 -0
  396. package/skills/ppt-master/templates/icons/face-id.svg +10 -0
  397. package/skills/ppt-master/templates/icons/face-laugh.svg +4 -0
  398. package/skills/ppt-master/templates/icons/face-meh.svg +4 -0
  399. package/skills/ppt-master/templates/icons/face-melt.svg +4 -0
  400. package/skills/ppt-master/templates/icons/face-no-mouth.svg +4 -0
  401. package/skills/ppt-master/templates/icons/face-open-mouth.svg +4 -0
  402. package/skills/ppt-master/templates/icons/face-sad.svg +4 -0
  403. package/skills/ppt-master/templates/icons/face-smile.svg +4 -0
  404. package/skills/ppt-master/templates/icons/factory.svg +4 -0
  405. package/skills/ppt-master/templates/icons/fast-forward.svg +4 -0
  406. package/skills/ppt-master/templates/icons/file-plus.svg +4 -0
  407. package/skills/ppt-master/templates/icons/file.svg +5 -0
  408. package/skills/ppt-master/templates/icons/files.svg +5 -0
  409. package/skills/ppt-master/templates/icons/film.svg +4 -0
  410. package/skills/ppt-master/templates/icons/filter.svg +7 -0
  411. package/skills/ppt-master/templates/icons/fire.svg +4 -0
  412. package/skills/ppt-master/templates/icons/fireplace.svg +5 -0
  413. package/skills/ppt-master/templates/icons/fish.svg +4 -0
  414. package/skills/ppt-master/templates/icons/flag.svg +4 -0
  415. package/skills/ppt-master/templates/icons/floppy-disk.svg +5 -0
  416. package/skills/ppt-master/templates/icons/flower.svg +6 -0
  417. package/skills/ppt-master/templates/icons/folder-open.svg +4 -0
  418. package/skills/ppt-master/templates/icons/folder.svg +4 -0
  419. package/skills/ppt-master/templates/icons/folders.svg +5 -0
  420. package/skills/ppt-master/templates/icons/font-case.svg +5 -0
  421. package/skills/ppt-master/templates/icons/football.svg +4 -0
  422. package/skills/ppt-master/templates/icons/frame.svg +4 -0
  423. package/skills/ppt-master/templates/icons/funnel.svg +4 -0
  424. package/skills/ppt-master/templates/icons/g.svg +4 -0
  425. package/skills/ppt-master/templates/icons/game-controller.svg +4 -0
  426. package/skills/ppt-master/templates/icons/gauge-high.svg +4 -0
  427. package/skills/ppt-master/templates/icons/gauge-low.svg +4 -0
  428. package/skills/ppt-master/templates/icons/gauge-medium.svg +4 -0
  429. package/skills/ppt-master/templates/icons/gem.svg +4 -0
  430. package/skills/ppt-master/templates/icons/gemini.svg +4 -0
  431. package/skills/ppt-master/templates/icons/ghost.svg +4 -0
  432. package/skills/ppt-master/templates/icons/gift.svg +6 -0
  433. package/skills/ppt-master/templates/icons/git-branch.svg +4 -0
  434. package/skills/ppt-master/templates/icons/git-commit.svg +4 -0
  435. package/skills/ppt-master/templates/icons/git-compare.svg +5 -0
  436. package/skills/ppt-master/templates/icons/git-fork.svg +4 -0
  437. package/skills/ppt-master/templates/icons/git-merge.svg +4 -0
  438. package/skills/ppt-master/templates/icons/glasses.svg +4 -0
  439. package/skills/ppt-master/templates/icons/globe.svg +7 -0
  440. package/skills/ppt-master/templates/icons/grid-masonry.svg +7 -0
  441. package/skills/ppt-master/templates/icons/grid.svg +4 -0
  442. package/skills/ppt-master/templates/icons/grip-horizontal.svg +9 -0
  443. package/skills/ppt-master/templates/icons/grip-vertical.svg +9 -0
  444. package/skills/ppt-master/templates/icons/group.svg +15 -0
  445. package/skills/ppt-master/templates/icons/h.svg +4 -0
  446. package/skills/ppt-master/templates/icons/hammer.svg +5 -0
  447. package/skills/ppt-master/templates/icons/hand-tap.svg +7 -0
  448. package/skills/ppt-master/templates/icons/hand.svg +4 -0
  449. package/skills/ppt-master/templates/icons/hashtag.svg +4 -0
  450. package/skills/ppt-master/templates/icons/head-side.svg +4 -0
  451. package/skills/ppt-master/templates/icons/headlights.svg +7 -0
  452. package/skills/ppt-master/templates/icons/headphones.svg +4 -0
  453. package/skills/ppt-master/templates/icons/heart-broken.svg +4 -0
  454. package/skills/ppt-master/templates/icons/heart-half.svg +4 -0
  455. package/skills/ppt-master/templates/icons/heart.svg +4 -0
  456. package/skills/ppt-master/templates/icons/hexagon.svg +4 -0
  457. package/skills/ppt-master/templates/icons/hockey.svg +6 -0
  458. package/skills/ppt-master/templates/icons/home-1.svg +4 -0
  459. package/skills/ppt-master/templates/icons/home.svg +4 -0
  460. package/skills/ppt-master/templates/icons/hospital.svg +4 -0
  461. package/skills/ppt-master/templates/icons/hourglass-empty.svg +4 -0
  462. package/skills/ppt-master/templates/icons/hourglass-half-bottom.svg +4 -0
  463. package/skills/ppt-master/templates/icons/hourglass-half-top.svg +4 -0
  464. package/skills/ppt-master/templates/icons/i-cursor.svg +4 -0
  465. package/skills/ppt-master/templates/icons/i.svg +4 -0
  466. package/skills/ppt-master/templates/icons/ice-cream.svg +5 -0
  467. package/skills/ppt-master/templates/icons/icons_index.json +257 -0
  468. package/skills/ppt-master/templates/icons/image.svg +4 -0
  469. package/skills/ppt-master/templates/icons/images.svg +5 -0
  470. package/skills/ppt-master/templates/icons/inbox.svg +4 -0
  471. package/skills/ppt-master/templates/icons/indent.svg +8 -0
  472. package/skills/ppt-master/templates/icons/intersect.svg +4 -0
  473. package/skills/ppt-master/templates/icons/italic.svg +4 -0
  474. package/skills/ppt-master/templates/icons/j.svg +4 -0
  475. package/skills/ppt-master/templates/icons/jersey.svg +5 -0
  476. package/skills/ppt-master/templates/icons/joystick.svg +4 -0
  477. package/skills/ppt-master/templates/icons/k.svg +4 -0
  478. package/skills/ppt-master/templates/icons/key-skeleton.svg +4 -0
  479. package/skills/ppt-master/templates/icons/key.svg +4 -0
  480. package/skills/ppt-master/templates/icons/keyboard.svg +14 -0
  481. package/skills/ppt-master/templates/icons/keyhole.svg +4 -0
  482. package/skills/ppt-master/templates/icons/king.svg +4 -0
  483. package/skills/ppt-master/templates/icons/knight.svg +4 -0
  484. package/skills/ppt-master/templates/icons/l.svg +4 -0
  485. package/skills/ppt-master/templates/icons/label.svg +4 -0
  486. package/skills/ppt-master/templates/icons/ladder.svg +4 -0
  487. package/skills/ppt-master/templates/icons/lamp.svg +5 -0
  488. package/skills/ppt-master/templates/icons/language.svg +4 -0
  489. package/skills/ppt-master/templates/icons/laptop.svg +5 -0
  490. package/skills/ppt-master/templates/icons/laundry-machine.svg +4 -0
  491. package/skills/ppt-master/templates/icons/layers.svg +6 -0
  492. package/skills/ppt-master/templates/icons/leaf.svg +4 -0
  493. package/skills/ppt-master/templates/icons/leo.svg +4 -0
  494. package/skills/ppt-master/templates/icons/libra.svg +5 -0
  495. package/skills/ppt-master/templates/icons/life-ring.svg +4 -0
  496. package/skills/ppt-master/templates/icons/lightbulb.svg +4 -0
  497. package/skills/ppt-master/templates/icons/lines-magnifying-glass.svg +8 -0
  498. package/skills/ppt-master/templates/icons/lines-plus.svg +8 -0
  499. package/skills/ppt-master/templates/icons/lines.svg +7 -0
  500. package/skills/ppt-master/templates/icons/link.svg +6 -0
  501. package/skills/ppt-master/templates/icons/list-ordered.svg +9 -0
  502. package/skills/ppt-master/templates/icons/list.svg +11 -0
  503. package/skills/ppt-master/templates/icons/location-arrow-slash.svg +5 -0
  504. package/skills/ppt-master/templates/icons/location-arrow.svg +4 -0
  505. package/skills/ppt-master/templates/icons/location-target.svg +5 -0
  506. package/skills/ppt-master/templates/icons/lock-closed.svg +4 -0
  507. package/skills/ppt-master/templates/icons/lock-open.svg +4 -0
  508. package/skills/ppt-master/templates/icons/m.svg +4 -0
  509. package/skills/ppt-master/templates/icons/magnet.svg +6 -0
  510. package/skills/ppt-master/templates/icons/magnifying-glass.svg +4 -0
  511. package/skills/ppt-master/templates/icons/mailbox.svg +4 -0
  512. package/skills/ppt-master/templates/icons/map-pin.svg +4 -0
  513. package/skills/ppt-master/templates/icons/map.svg +6 -0
  514. package/skills/ppt-master/templates/icons/maximize.svg +5 -0
  515. package/skills/ppt-master/templates/icons/meeple.svg +4 -0
  516. package/skills/ppt-master/templates/icons/megaphone.svg +4 -0
  517. package/skills/ppt-master/templates/icons/meteor.svg +4 -0
  518. package/skills/ppt-master/templates/icons/microchip.svg +5 -0
  519. package/skills/ppt-master/templates/icons/microphone-slash.svg +6 -0
  520. package/skills/ppt-master/templates/icons/microphone.svg +5 -0
  521. package/skills/ppt-master/templates/icons/minimize.svg +5 -0
  522. package/skills/ppt-master/templates/icons/minus.svg +4 -0
  523. package/skills/ppt-master/templates/icons/mobile.svg +4 -0
  524. package/skills/ppt-master/templates/icons/money.svg +8 -0
  525. package/skills/ppt-master/templates/icons/moon-cloud.svg +6 -0
  526. package/skills/ppt-master/templates/icons/moon-fog.svg +7 -0
  527. package/skills/ppt-master/templates/icons/moon.svg +5 -0
  528. package/skills/ppt-master/templates/icons/mortarboard.svg +5 -0
  529. package/skills/ppt-master/templates/icons/mountains.svg +4 -0
  530. package/skills/ppt-master/templates/icons/mouse.svg +6 -0
  531. package/skills/ppt-master/templates/icons/move-down.svg +6 -0
  532. package/skills/ppt-master/templates/icons/move-up.svg +6 -0
  533. package/skills/ppt-master/templates/icons/mug.svg +7 -0
  534. package/skills/ppt-master/templates/icons/museum.svg +5 -0
  535. package/skills/ppt-master/templates/icons/music.svg +4 -0
  536. package/skills/ppt-master/templates/icons/n.svg +4 -0
  537. package/skills/ppt-master/templates/icons/newspaper.svg +4 -0
  538. package/skills/ppt-master/templates/icons/number-0-alt.svg +4 -0
  539. package/skills/ppt-master/templates/icons/number-0.svg +4 -0
  540. package/skills/ppt-master/templates/icons/number-1-alt.svg +4 -0
  541. package/skills/ppt-master/templates/icons/number-1.svg +4 -0
  542. package/skills/ppt-master/templates/icons/number-2-alt.svg +4 -0
  543. package/skills/ppt-master/templates/icons/number-2.svg +4 -0
  544. package/skills/ppt-master/templates/icons/number-3-alt.svg +4 -0
  545. package/skills/ppt-master/templates/icons/number-3.svg +4 -0
  546. package/skills/ppt-master/templates/icons/number-4-alt.svg +4 -0
  547. package/skills/ppt-master/templates/icons/number-4.svg +4 -0
  548. package/skills/ppt-master/templates/icons/number-5-alt.svg +4 -0
  549. package/skills/ppt-master/templates/icons/number-5.svg +4 -0
  550. package/skills/ppt-master/templates/icons/number-6-alt.svg +4 -0
  551. package/skills/ppt-master/templates/icons/number-6.svg +4 -0
  552. package/skills/ppt-master/templates/icons/number-7-alt.svg +4 -0
  553. package/skills/ppt-master/templates/icons/number-7.svg +4 -0
  554. package/skills/ppt-master/templates/icons/number-8-alt.svg +4 -0
  555. package/skills/ppt-master/templates/icons/number-8.svg +4 -0
  556. package/skills/ppt-master/templates/icons/number-9-alt.svg +4 -0
  557. package/skills/ppt-master/templates/icons/number-9.svg +4 -0
  558. package/skills/ppt-master/templates/icons/nut.svg +4 -0
  559. package/skills/ppt-master/templates/icons/o.svg +4 -0
  560. package/skills/ppt-master/templates/icons/octagon-exclamation.svg +4 -0
  561. package/skills/ppt-master/templates/icons/octagon.svg +4 -0
  562. package/skills/ppt-master/templates/icons/option.svg +5 -0
  563. package/skills/ppt-master/templates/icons/outdent.svg +8 -0
  564. package/skills/ppt-master/templates/icons/outlet.svg +4 -0
  565. package/skills/ppt-master/templates/icons/p.svg +4 -0
  566. package/skills/ppt-master/templates/icons/paint-bucket.svg +5 -0
  567. package/skills/ppt-master/templates/icons/paint-roller.svg +4 -0
  568. package/skills/ppt-master/templates/icons/painting.svg +5 -0
  569. package/skills/ppt-master/templates/icons/palette.svg +4 -0
  570. package/skills/ppt-master/templates/icons/pants.svg +4 -0
  571. package/skills/ppt-master/templates/icons/paper-plane.svg +4 -0
  572. package/skills/ppt-master/templates/icons/paperclip.svg +4 -0
  573. package/skills/ppt-master/templates/icons/pause.svg +5 -0
  574. package/skills/ppt-master/templates/icons/paw.svg +8 -0
  575. package/skills/ppt-master/templates/icons/pawn.svg +4 -0
  576. package/skills/ppt-master/templates/icons/pen-nib.svg +4 -0
  577. package/skills/ppt-master/templates/icons/pencil-square.svg +5 -0
  578. package/skills/ppt-master/templates/icons/pencil.svg +5 -0
  579. package/skills/ppt-master/templates/icons/percent.svg +6 -0
  580. package/skills/ppt-master/templates/icons/person-walking.svg +5 -0
  581. package/skills/ppt-master/templates/icons/person-wave.svg +5 -0
  582. package/skills/ppt-master/templates/icons/person.svg +5 -0
  583. package/skills/ppt-master/templates/icons/phone-slash.svg +5 -0
  584. package/skills/ppt-master/templates/icons/phone.svg +4 -0
  585. package/skills/ppt-master/templates/icons/pills.svg +6 -0
  586. package/skills/ppt-master/templates/icons/pisces.svg +4 -0
  587. package/skills/ppt-master/templates/icons/pizza.svg +5 -0
  588. package/skills/ppt-master/templates/icons/plane.svg +4 -0
  589. package/skills/ppt-master/templates/icons/planet.svg +5 -0
  590. package/skills/ppt-master/templates/icons/play-pause.svg +6 -0
  591. package/skills/ppt-master/templates/icons/play.svg +4 -0
  592. package/skills/ppt-master/templates/icons/playing-card.svg +4 -0
  593. package/skills/ppt-master/templates/icons/plug.svg +4 -0
  594. package/skills/ppt-master/templates/icons/plus.svg +4 -0
  595. package/skills/ppt-master/templates/icons/point-down.svg +4 -0
  596. package/skills/ppt-master/templates/icons/point-left.svg +4 -0
  597. package/skills/ppt-master/templates/icons/point-right.svg +4 -0
  598. package/skills/ppt-master/templates/icons/point-up.svg +4 -0
  599. package/skills/ppt-master/templates/icons/poop.svg +4 -0
  600. package/skills/ppt-master/templates/icons/potion-empty.svg +4 -0
  601. package/skills/ppt-master/templates/icons/potion-full.svg +4 -0
  602. package/skills/ppt-master/templates/icons/potion-half.svg +4 -0
  603. package/skills/ppt-master/templates/icons/power.svg +5 -0
  604. package/skills/ppt-master/templates/icons/printer.svg +5 -0
  605. package/skills/ppt-master/templates/icons/q.svg +4 -0
  606. package/skills/ppt-master/templates/icons/queen.svg +5 -0
  607. package/skills/ppt-master/templates/icons/question-mark.svg +5 -0
  608. package/skills/ppt-master/templates/icons/quote-left.svg +5 -0
  609. package/skills/ppt-master/templates/icons/quote-right.svg +5 -0
  610. package/skills/ppt-master/templates/icons/radar.svg +4 -0
  611. package/skills/ppt-master/templates/icons/radioactive.svg +4 -0
  612. package/skills/ppt-master/templates/icons/rainbow-cloud.svg +6 -0
  613. package/skills/ppt-master/templates/icons/rainbow.svg +5 -0
  614. package/skills/ppt-master/templates/icons/receipt.svg +4 -0
  615. package/skills/ppt-master/templates/icons/recycle.svg +6 -0
  616. package/skills/ppt-master/templates/icons/reflect-horizontal.svg +6 -0
  617. package/skills/ppt-master/templates/icons/reflect-vertical.svg +6 -0
  618. package/skills/ppt-master/templates/icons/rewind.svg +4 -0
  619. package/skills/ppt-master/templates/icons/robot.svg +4 -0
  620. package/skills/ppt-master/templates/icons/rocket.svg +5 -0
  621. package/skills/ppt-master/templates/icons/rook.svg +4 -0
  622. package/skills/ppt-master/templates/icons/route.svg +6 -0
  623. package/skills/ppt-master/templates/icons/rows.svg +5 -0
  624. package/skills/ppt-master/templates/icons/rss.svg +6 -0
  625. package/skills/ppt-master/templates/icons/ruler.svg +4 -0
  626. package/skills/ppt-master/templates/icons/s.svg +4 -0
  627. package/skills/ppt-master/templates/icons/sagittarius.svg +4 -0
  628. package/skills/ppt-master/templates/icons/scissors.svg +5 -0
  629. package/skills/ppt-master/templates/icons/scooter.svg +4 -0
  630. package/skills/ppt-master/templates/icons/scorpio.svg +4 -0
  631. package/skills/ppt-master/templates/icons/screencast.svg +6 -0
  632. package/skills/ppt-master/templates/icons/screw.svg +6 -0
  633. package/skills/ppt-master/templates/icons/screwdriver.svg +5 -0
  634. package/skills/ppt-master/templates/icons/scribble.svg +5 -0
  635. package/skills/ppt-master/templates/icons/seedling.svg +4 -0
  636. package/skills/ppt-master/templates/icons/server.svg +5 -0
  637. package/skills/ppt-master/templates/icons/service-bell.svg +5 -0
  638. package/skills/ppt-master/templates/icons/share-nodes.svg +4 -0
  639. package/skills/ppt-master/templates/icons/shield-check.svg +4 -0
  640. package/skills/ppt-master/templates/icons/shield-half.svg +4 -0
  641. package/skills/ppt-master/templates/icons/shield.svg +4 -0
  642. package/skills/ppt-master/templates/icons/shift.svg +4 -0
  643. package/skills/ppt-master/templates/icons/ship.svg +5 -0
  644. package/skills/ppt-master/templates/icons/shirt.svg +4 -0
  645. package/skills/ppt-master/templates/icons/shoe.svg +5 -0
  646. package/skills/ppt-master/templates/icons/shop.svg +5 -0
  647. package/skills/ppt-master/templates/icons/shopping-bag.svg +5 -0
  648. package/skills/ppt-master/templates/icons/shopping-basket.svg +4 -0
  649. package/skills/ppt-master/templates/icons/shopping-cart.svg +4 -0
  650. package/skills/ppt-master/templates/icons/shuffle.svg +5 -0
  651. package/skills/ppt-master/templates/icons/sidebar-left.svg +5 -0
  652. package/skills/ppt-master/templates/icons/sidebar-right.svg +5 -0
  653. package/skills/ppt-master/templates/icons/signal-fair.svg +5 -0
  654. package/skills/ppt-master/templates/icons/signal-good.svg +6 -0
  655. package/skills/ppt-master/templates/icons/signal-slash.svg +7 -0
  656. package/skills/ppt-master/templates/icons/signal-weak.svg +4 -0
  657. package/skills/ppt-master/templates/icons/signal.svg +7 -0
  658. package/skills/ppt-master/templates/icons/signpost.svg +5 -0
  659. package/skills/ppt-master/templates/icons/sink.svg +5 -0
  660. package/skills/ppt-master/templates/icons/skip-backward.svg +4 -0
  661. package/skills/ppt-master/templates/icons/skip-forward.svg +4 -0
  662. package/skills/ppt-master/templates/icons/skull.svg +4 -0
  663. package/skills/ppt-master/templates/icons/sliders.svg +5 -0
  664. package/skills/ppt-master/templates/icons/smartwatch.svg +4 -0
  665. package/skills/ppt-master/templates/icons/snow.svg +4 -0
  666. package/skills/ppt-master/templates/icons/soccer.svg +9 -0
  667. package/skills/ppt-master/templates/icons/soda.svg +5 -0
  668. package/skills/ppt-master/templates/icons/sort.svg +5 -0
  669. package/skills/ppt-master/templates/icons/spade.svg +4 -0
  670. package/skills/ppt-master/templates/icons/sparkles.svg +8 -0
  671. package/skills/ppt-master/templates/icons/square-checkmark.svg +4 -0
  672. package/skills/ppt-master/templates/icons/square-divide.svg +4 -0
  673. package/skills/ppt-master/templates/icons/square-equals.svg +4 -0
  674. package/skills/ppt-master/templates/icons/square-minus.svg +4 -0
  675. package/skills/ppt-master/templates/icons/square-plus.svg +4 -0
  676. package/skills/ppt-master/templates/icons/square-user.svg +5 -0
  677. package/skills/ppt-master/templates/icons/square-x.svg +4 -0
  678. package/skills/ppt-master/templates/icons/square.svg +4 -0
  679. package/skills/ppt-master/templates/icons/squares-horizontal.svg +6 -0
  680. package/skills/ppt-master/templates/icons/squares-vertical.svg +6 -0
  681. package/skills/ppt-master/templates/icons/star-half.svg +4 -0
  682. package/skills/ppt-master/templates/icons/star.svg +4 -0
  683. package/skills/ppt-master/templates/icons/sticky-note.svg +5 -0
  684. package/skills/ppt-master/templates/icons/stop.svg +4 -0
  685. package/skills/ppt-master/templates/icons/stopwatch.svg +4 -0
  686. package/skills/ppt-master/templates/icons/strikethrough.svg +5 -0
  687. package/skills/ppt-master/templates/icons/subtract.svg +4 -0
  688. package/skills/ppt-master/templates/icons/suitcase.svg +6 -0
  689. package/skills/ppt-master/templates/icons/sun-cloud.svg +9 -0
  690. package/skills/ppt-master/templates/icons/sun-fog.svg +12 -0
  691. package/skills/ppt-master/templates/icons/sun.svg +12 -0
  692. package/skills/ppt-master/templates/icons/sunglasses.svg +4 -0
  693. package/skills/ppt-master/templates/icons/swatches.svg +6 -0
  694. package/skills/ppt-master/templates/icons/sword.svg +4 -0
  695. package/skills/ppt-master/templates/icons/swords-crossed.svg +6 -0
  696. package/skills/ppt-master/templates/icons/t.svg +4 -0
  697. package/skills/ppt-master/templates/icons/table.svg +8 -0
  698. package/skills/ppt-master/templates/icons/tag.svg +4 -0
  699. package/skills/ppt-master/templates/icons/target-arrow.svg +6 -0
  700. package/skills/ppt-master/templates/icons/target.svg +5 -0
  701. package/skills/ppt-master/templates/icons/taurus.svg +4 -0
  702. package/skills/ppt-master/templates/icons/temperature-high.svg +8 -0
  703. package/skills/ppt-master/templates/icons/temperature-low.svg +8 -0
  704. package/skills/ppt-master/templates/icons/temperature-medium.svg +8 -0
  705. package/skills/ppt-master/templates/icons/tennis-ball.svg +6 -0
  706. package/skills/ppt-master/templates/icons/terminal.svg +5 -0
  707. package/skills/ppt-master/templates/icons/text.svg +4 -0
  708. package/skills/ppt-master/templates/icons/thumbs-down.svg +5 -0
  709. package/skills/ppt-master/templates/icons/thumbs-up.svg +5 -0
  710. package/skills/ppt-master/templates/icons/thumbtack.svg +5 -0
  711. package/skills/ppt-master/templates/icons/ticket.svg +4 -0
  712. package/skills/ppt-master/templates/icons/toggle-circle-left.svg +4 -0
  713. package/skills/ppt-master/templates/icons/toggle-circle-right.svg +4 -0
  714. package/skills/ppt-master/templates/icons/toolbox.svg +5 -0
  715. package/skills/ppt-master/templates/icons/traffic-cone.svg +6 -0
  716. package/skills/ppt-master/templates/icons/traffic-light.svg +4 -0
  717. package/skills/ppt-master/templates/icons/train.svg +4 -0
  718. package/skills/ppt-master/templates/icons/trash.svg +5 -0
  719. package/skills/ppt-master/templates/icons/tree-evergreen.svg +4 -0
  720. package/skills/ppt-master/templates/icons/tree.svg +4 -0
  721. package/skills/ppt-master/templates/icons/triangle-exclamation.svg +4 -0
  722. package/skills/ppt-master/templates/icons/triangle.svg +4 -0
  723. package/skills/ppt-master/templates/icons/trophy.svg +4 -0
  724. package/skills/ppt-master/templates/icons/truck.svg +4 -0
  725. package/skills/ppt-master/templates/icons/tv-retro.svg +4 -0
  726. package/skills/ppt-master/templates/icons/tv.svg +5 -0
  727. package/skills/ppt-master/templates/icons/u.svg +4 -0
  728. package/skills/ppt-master/templates/icons/ufo.svg +5 -0
  729. package/skills/ppt-master/templates/icons/umbrella.svg +4 -0
  730. package/skills/ppt-master/templates/icons/underline.svg +5 -0
  731. package/skills/ppt-master/templates/icons/unite.svg +4 -0
  732. package/skills/ppt-master/templates/icons/user.svg +5 -0
  733. package/skills/ppt-master/templates/icons/users.svg +7 -0
  734. package/skills/ppt-master/templates/icons/utensils.svg +5 -0
  735. package/skills/ppt-master/templates/icons/v.svg +4 -0
  736. package/skills/ppt-master/templates/icons/vector-circle.svg +4 -0
  737. package/skills/ppt-master/templates/icons/vector-curve.svg +4 -0
  738. package/skills/ppt-master/templates/icons/vector-line.svg +4 -0
  739. package/skills/ppt-master/templates/icons/vector-square.svg +4 -0
  740. package/skills/ppt-master/templates/icons/video-camera-slash.svg +5 -0
  741. package/skills/ppt-master/templates/icons/video-camera.svg +5 -0
  742. package/skills/ppt-master/templates/icons/video.svg +4 -0
  743. package/skills/ppt-master/templates/icons/virgo.svg +4 -0
  744. package/skills/ppt-master/templates/icons/volume-high.svg +6 -0
  745. package/skills/ppt-master/templates/icons/volume-low.svg +5 -0
  746. package/skills/ppt-master/templates/icons/volume-none.svg +4 -0
  747. package/skills/ppt-master/templates/icons/volume-slash.svg +5 -0
  748. package/skills/ppt-master/templates/icons/volume-x.svg +5 -0
  749. package/skills/ppt-master/templates/icons/vr.svg +4 -0
  750. package/skills/ppt-master/templates/icons/w.svg +4 -0
  751. package/skills/ppt-master/templates/icons/wallet.svg +4 -0
  752. package/skills/ppt-master/templates/icons/wand-with-sparkles.svg +7 -0
  753. package/skills/ppt-master/templates/icons/watch.svg +4 -0
  754. package/skills/ppt-master/templates/icons/water.svg +5 -0
  755. package/skills/ppt-master/templates/icons/waveform.svg +7 -0
  756. package/skills/ppt-master/templates/icons/wheelchair.svg +5 -0
  757. package/skills/ppt-master/templates/icons/wifi-low.svg +4 -0
  758. package/skills/ppt-master/templates/icons/wifi-medium.svg +5 -0
  759. package/skills/ppt-master/templates/icons/wifi-slash.svg +5 -0
  760. package/skills/ppt-master/templates/icons/wifi.svg +6 -0
  761. package/skills/ppt-master/templates/icons/wind.svg +5 -0
  762. package/skills/ppt-master/templates/icons/window.svg +6 -0
  763. package/skills/ppt-master/templates/icons/wine-glass.svg +4 -0
  764. package/skills/ppt-master/templates/icons/wrench.svg +4 -0
  765. package/skills/ppt-master/templates/icons/x-1.svg +4 -0
  766. package/skills/ppt-master/templates/icons/x.svg +4 -0
  767. package/skills/ppt-master/templates/icons/y.svg +4 -0
  768. package/skills/ppt-master/templates/icons/yen.svg +4 -0
  769. package/skills/ppt-master/templates/icons/z.svg +4 -0
  770. package/skills/ppt-master/templates/icons/zoom-in.svg +4 -0
  771. package/skills/ppt-master/templates/icons/zoom-out.svg +4 -0
  772. package/skills/ppt-master/templates/layouts/README.md +257 -0
  773. package/skills/ppt-master/templates/layouts/academic_defense/01_cover.svg +49 -0
  774. package/skills/ppt-master/templates/layouts/academic_defense/02_chapter.svg +36 -0
  775. package/skills/ppt-master/templates/layouts/academic_defense/02_toc.svg +63 -0
  776. package/skills/ppt-master/templates/layouts/academic_defense/03_content.svg +58 -0
  777. package/skills/ppt-master/templates/layouts/academic_defense/04_ending.svg +52 -0
  778. package/skills/ppt-master/templates/layouts/academic_defense/design_spec.md +294 -0
  779. package/skills/ppt-master/templates/layouts/ai_ops/01_cover.svg +65 -0
  780. package/skills/ppt-master/templates/layouts/ai_ops/02_chapter.svg +36 -0
  781. package/skills/ppt-master/templates/layouts/ai_ops/02_toc.svg +51 -0
  782. package/skills/ppt-master/templates/layouts/ai_ops/03_content.svg +37 -0
  783. package/skills/ppt-master/templates/layouts/ai_ops/04_ending.svg +59 -0
  784. package/skills/ppt-master/templates/layouts/ai_ops/design_spec.md +357 -0
  785. package/skills/ppt-master/templates/layouts/ai_ops/reference_style.svg +154 -0
  786. package/skills/ppt-master/templates/layouts/anthropic/01_cover.svg +105 -0
  787. package/skills/ppt-master/templates/layouts/anthropic/02_chapter.svg +75 -0
  788. package/skills/ppt-master/templates/layouts/anthropic/02_toc.svg +120 -0
  789. package/skills/ppt-master/templates/layouts/anthropic/03_content.svg +118 -0
  790. package/skills/ppt-master/templates/layouts/anthropic/04_ending.svg +107 -0
  791. package/skills/ppt-master/templates/layouts/anthropic/design_spec.md +243 -0
  792. package/skills/ppt-master/templates/layouts/exhibit/01_cover.svg +49 -0
  793. package/skills/ppt-master/templates/layouts/exhibit/02_chapter.svg +43 -0
  794. package/skills/ppt-master/templates/layouts/exhibit/02_toc.svg +82 -0
  795. package/skills/ppt-master/templates/layouts/exhibit/03_content.svg +38 -0
  796. package/skills/ppt-master/templates/layouts/exhibit/04_ending.svg +54 -0
  797. package/skills/ppt-master/templates/layouts/exhibit/design_spec.md +244 -0
  798. package/skills/ppt-master/templates/layouts/google_style/01_cover.svg +79 -0
  799. package/skills/ppt-master/templates/layouts/google_style/02_chapter.svg +62 -0
  800. package/skills/ppt-master/templates/layouts/google_style/02_toc.svg +89 -0
  801. package/skills/ppt-master/templates/layouts/google_style/03_content.svg +72 -0
  802. package/skills/ppt-master/templates/layouts/google_style/04_ending.svg +97 -0
  803. package/skills/ppt-master/templates/layouts/google_style/design_spec.md +303 -0
  804. package/skills/ppt-master/templates/layouts/government_blue/01_cover.svg +93 -0
  805. package/skills/ppt-master/templates/layouts/government_blue/02_chapter.svg +82 -0
  806. package/skills/ppt-master/templates/layouts/government_blue/02_toc.svg +107 -0
  807. package/skills/ppt-master/templates/layouts/government_blue/03_content.svg +78 -0
  808. package/skills/ppt-master/templates/layouts/government_blue/04_ending.svg +81 -0
  809. package/skills/ppt-master/templates/layouts/government_blue/design_spec.md +233 -0
  810. package/skills/ppt-master/templates/layouts/government_red/01_cover.svg +73 -0
  811. package/skills/ppt-master/templates/layouts/government_red/02_chapter.svg +66 -0
  812. package/skills/ppt-master/templates/layouts/government_red/02_toc.svg +88 -0
  813. package/skills/ppt-master/templates/layouts/government_red/03_content.svg +66 -0
  814. package/skills/ppt-master/templates/layouts/government_red/04_ending.svg +75 -0
  815. package/skills/ppt-master/templates/layouts/government_red/design_spec.md +227 -0
  816. package/skills/ppt-master/templates/layouts/layouts_index.json +204 -0
  817. package/skills/ppt-master/templates/layouts/mckinsey/01_cover.svg +84 -0
  818. package/skills/ppt-master/templates/layouts/mckinsey/02_chapter.svg +76 -0
  819. package/skills/ppt-master/templates/layouts/mckinsey/02_toc.svg +91 -0
  820. package/skills/ppt-master/templates/layouts/mckinsey/03_content.svg +92 -0
  821. package/skills/ppt-master/templates/layouts/mckinsey/04_ending.svg +87 -0
  822. package/skills/ppt-master/templates/layouts/mckinsey/design_spec.md +265 -0
  823. package/skills/ppt-master/templates/layouts/medical_university/01_cover.svg +71 -0
  824. package/skills/ppt-master/templates/layouts/medical_university/02_chapter.svg +50 -0
  825. package/skills/ppt-master/templates/layouts/medical_university/02_toc.svg +97 -0
  826. package/skills/ppt-master/templates/layouts/medical_university/03_content.svg +78 -0
  827. package/skills/ppt-master/templates/layouts/medical_university/04_ending.svg +79 -0
  828. package/skills/ppt-master/templates/layouts/medical_university/design_spec.md +292 -0
  829. package/skills/ppt-master/templates/layouts/netease_zhiqi/01_cover.svg +36 -0
  830. package/skills/ppt-master/templates/layouts/netease_zhiqi/02_chapter.svg +23 -0
  831. package/skills/ppt-master/templates/layouts/netease_zhiqi/02_toc.svg +42 -0
  832. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content.svg +28 -0
  833. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_architecture.svg +84 -0
  834. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_bullet.svg +77 -0
  835. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_cards.svg +123 -0
  836. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_comparison.svg +56 -0
  837. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_data.svg +69 -0
  838. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_gray.svg +34 -0
  839. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_image_full.svg +46 -0
  840. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_image_grid.svg +44 -0
  841. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_image_left.svg +43 -0
  842. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_logos.svg +86 -0
  843. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_table.svg +131 -0
  844. package/skills/ppt-master/templates/layouts/netease_zhiqi/03_content_timeline.svg +82 -0
  845. package/skills/ppt-master/templates/layouts/netease_zhiqi/04_ending.svg +26 -0
  846. package/skills/ppt-master/templates/layouts/netease_zhiqi/content_bg.png +0 -0
  847. package/skills/ppt-master/templates/layouts/netease_zhiqi/cover_bg.png +0 -0
  848. package/skills/ppt-master/templates/layouts/netease_zhiqi/design_spec.md +134 -0
  849. package/skills/ppt-master/templates/layouts/netease_zhiqi/ending_bg.png +0 -0
  850. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_000.svg +3 -0
  851. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_001.svg +3 -0
  852. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_002.svg +3 -0
  853. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_003.svg +3 -0
  854. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_004.svg +3 -0
  855. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_005.svg +3 -0
  856. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_006.svg +3 -0
  857. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_007.svg +3 -0
  858. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_008.svg +3 -0
  859. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_009.svg +3 -0
  860. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_010.svg +3 -0
  861. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_011.svg +3 -0
  862. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_012.svg +3 -0
  863. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_013.svg +3 -0
  864. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_014.svg +3 -0
  865. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_015.svg +3 -0
  866. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_016.svg +3 -0
  867. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_017.svg +3 -0
  868. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_018.svg +3 -0
  869. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_019.svg +3 -0
  870. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_020.svg +3 -0
  871. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_021.svg +3 -0
  872. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_022.svg +3 -0
  873. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_023.svg +3 -0
  874. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_024.svg +3 -0
  875. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_025.svg +3 -0
  876. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_026.svg +3 -0
  877. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_027.svg +3 -0
  878. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_028.svg +3 -0
  879. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_029.svg +3 -0
  880. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_030.svg +3 -0
  881. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_031.svg +3 -0
  882. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_032.svg +3 -0
  883. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_033.svg +3 -0
  884. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_034.svg +3 -0
  885. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_035.svg +3 -0
  886. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_036.svg +3 -0
  887. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_037.svg +3 -0
  888. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_038.svg +3 -0
  889. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_039.svg +3 -0
  890. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_040.svg +3 -0
  891. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_041.svg +3 -0
  892. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_042.svg +3 -0
  893. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_043.svg +3 -0
  894. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_044.svg +3 -0
  895. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_045.svg +3 -0
  896. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_046.svg +3 -0
  897. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_047.svg +3 -0
  898. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_048.svg +3 -0
  899. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_049.svg +3 -0
  900. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_050.svg +3 -0
  901. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_051.svg +3 -0
  902. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_052.svg +3 -0
  903. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_053.svg +3 -0
  904. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_054.svg +3 -0
  905. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_055.svg +3 -0
  906. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_056.svg +3 -0
  907. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_057.svg +3 -0
  908. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_058.svg +3 -0
  909. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_059.svg +3 -0
  910. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_060.svg +3 -0
  911. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_061.svg +3 -0
  912. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_062.svg +3 -0
  913. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_063.svg +3 -0
  914. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_064.svg +3 -0
  915. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_065.svg +3 -0
  916. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_066.svg +3 -0
  917. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_067.svg +3 -0
  918. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_068.svg +3 -0
  919. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_069.svg +3 -0
  920. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_070.svg +3 -0
  921. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_071.svg +3 -0
  922. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_072.svg +3 -0
  923. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_073.svg +3 -0
  924. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_074.svg +3 -0
  925. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_075.svg +3 -0
  926. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_076.svg +3 -0
  927. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_077.svg +3 -0
  928. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_078.svg +3 -0
  929. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_079.svg +3 -0
  930. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_080.svg +3 -0
  931. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_081.svg +3 -0
  932. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_082.svg +3 -0
  933. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_083.svg +3 -0
  934. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_084.svg +3 -0
  935. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_085.svg +3 -0
  936. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_086.svg +3 -0
  937. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_087.svg +3 -0
  938. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_088.svg +3 -0
  939. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_089.svg +3 -0
  940. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_090.svg +3 -0
  941. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_091.svg +3 -0
  942. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_092.svg +3 -0
  943. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_093.svg +3 -0
  944. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_094.svg +3 -0
  945. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_095.svg +3 -0
  946. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_096.svg +3 -0
  947. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_097.svg +3 -0
  948. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_098.svg +3 -0
  949. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_099.svg +3 -0
  950. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_100.svg +3 -0
  951. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_101.svg +3 -0
  952. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_102.svg +3 -0
  953. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_103.svg +3 -0
  954. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_104.svg +3 -0
  955. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_105.svg +3 -0
  956. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_106.svg +3 -0
  957. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_107.svg +3 -0
  958. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_108.svg +3 -0
  959. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_109.svg +3 -0
  960. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_110.svg +3 -0
  961. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_111.svg +3 -0
  962. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_112.svg +3 -0
  963. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_113.svg +3 -0
  964. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_114.svg +3 -0
  965. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_115.svg +3 -0
  966. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_116.svg +3 -0
  967. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_117.svg +3 -0
  968. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_118.svg +3 -0
  969. package/skills/ppt-master/templates/layouts/netease_zhiqi/icons/icon_119.svg +3 -0
  970. package/skills/ppt-master/templates/layouts/netease_zhiqi/logo_full.png +0 -0
  971. package/skills/ppt-master/templates/layouts/netease_zhiqi/logo_zhiqi.png +0 -0
  972. package/skills/ppt-master/templates/layouts/netease_zhiqi/toc_bg.png +0 -0
  973. package/skills/ppt-master/templates/layouts/pixel_retro/01_cover.svg +138 -0
  974. package/skills/ppt-master/templates/layouts/pixel_retro/02_chapter.svg +130 -0
  975. package/skills/ppt-master/templates/layouts/pixel_retro/02_toc.svg +130 -0
  976. package/skills/ppt-master/templates/layouts/pixel_retro/03_content.svg +50 -0
  977. package/skills/ppt-master/templates/layouts/pixel_retro/04_ending.svg +167 -0
  978. package/skills/ppt-master/templates/layouts/pixel_retro/design_spec.md +308 -0
  979. package/skills/ppt-master/templates/layouts/psychology_attachment/01_cover.svg +78 -0
  980. package/skills/ppt-master/templates/layouts/psychology_attachment/02_chapter.svg +82 -0
  981. package/skills/ppt-master/templates/layouts/psychology_attachment/02_toc.svg +115 -0
  982. package/skills/ppt-master/templates/layouts/psychology_attachment/03_content.svg +41 -0
  983. package/skills/ppt-master/templates/layouts/psychology_attachment/04_ending.svg +100 -0
  984. package/skills/ppt-master/templates/layouts/psychology_attachment/design_spec.md +394 -0
  985. package/skills/ppt-master/templates/layouts/smart_red/01_cover.svg +49 -0
  986. package/skills/ppt-master/templates/layouts/smart_red/02_chapter.svg +29 -0
  987. package/skills/ppt-master/templates/layouts/smart_red/02_toc.svg +59 -0
  988. package/skills/ppt-master/templates/layouts/smart_red/03_content.svg +59 -0
  989. package/skills/ppt-master/templates/layouts/smart_red/04_ending.svg +44 -0
  990. package/skills/ppt-master/templates/layouts/smart_red/design_spec.md +208 -0
  991. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/01_cover.svg +100 -0
  992. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/02_chapter.svg +81 -0
  993. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/02_toc.svg +112 -0
  994. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/03_content.svg +57 -0
  995. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/04_ending.svg +92 -0
  996. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204/design_spec.md +209 -0
  997. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//344/270/255/345/233/275/346/260/264/345/212/241logo.png +0 -0
  998. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//345/215/216/344/270/234/351/231/242logo.png +0 -0
  999. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//346/260/264/347/224/265/344/270/211/345/261/200logo.png +0 -0
  1000. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/345/270/270/350/247/204//347/224/265/345/273/272logo.png +0 -0
  1001. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/01_cover.svg +90 -0
  1002. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/02_chapter.svg +61 -0
  1003. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/02_toc.svg +131 -0
  1004. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/03_content.svg +77 -0
  1005. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/04_ending.svg +78 -0
  1006. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243/design_spec.md +177 -0
  1007. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//344/270/255/345/233/275/346/260/264/345/212/241logo.png +0 -0
  1008. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//345/215/216/344/270/234/351/231/242logo.png +0 -0
  1009. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//346/260/264/347/224/265/344/270/211/345/261/200logo.png +0 -0
  1010. package/skills/ppt-master/templates/layouts//344/270/255/345/233/275/347/224/265/345/273/272_/347/216/260/344/273/243//347/224/265/345/273/272logo.png +0 -0
  1011. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/01_cover.svg +83 -0
  1012. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/02_chapter.svg +55 -0
  1013. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/02_toc.svg +110 -0
  1014. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/03_content.svg +62 -0
  1015. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/04_ending.svg +60 -0
  1016. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241/design_spec.md +166 -0
  1017. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241//345/217/263/344/270/212/350/247/222 logo.png +0 -0
  1018. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/225/206/345/212/241//345/244/247/345/236/213 logo.png +0 -0
  1019. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/01_cover.svg +49 -0
  1020. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/02_chapter.svg +47 -0
  1021. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/02_toc.svg +73 -0
  1022. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/03_content.svg +57 -0
  1023. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/04_ending.svg +62 -0
  1024. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204/design_spec.md +214 -0
  1025. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204//345/217/263/344/270/212/350/247/222 logo.png +0 -0
  1026. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/345/270/270/350/247/204//345/244/247/345/236/213 logo.png +0 -0
  1027. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/01_cover.svg +89 -0
  1028. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/02_chapter.svg +55 -0
  1029. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/02_toc.svg +92 -0
  1030. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/03_content.svg +56 -0
  1031. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/04_ending.svg +64 -0
  1032. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243/design_spec.md +170 -0
  1033. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243//345/217/263/344/270/212/350/247/222 logo.png +0 -0
  1034. package/skills/ppt-master/templates/layouts//344/270/255/346/261/275/347/240/224_/347/216/260/344/273/243//345/244/247/345/236/213 logo.png +0 -0
  1035. package/skills/ppt-master/templates/layouts//346/213/233/345/225/206/351/223/266/350/241/214/01_cover.svg +113 -0
  1036. package/skills/ppt-master/templates/layouts//346/213/233/345/225/206/351/223/266/350/241/214/02_chapter.svg +90 -0
  1037. package/skills/ppt-master/templates/layouts//346/213/233/345/225/206/351/223/266/350/241/214/02_toc.svg +108 -0
  1038. package/skills/ppt-master/templates/layouts//346/213/233/345/225/206/351/223/266/350/241/214/03_content.svg +69 -0
  1039. package/skills/ppt-master/templates/layouts//346/213/233/345/225/206/351/223/266/350/241/214/04_ending.svg +120 -0
  1040. package/skills/ppt-master/templates/layouts//346/213/233/345/225/206/351/223/266/350/241/214/design_spec.md +209 -0
  1041. package/skills/ppt-master/templates/layouts//346/213/233/345/225/206/351/223/266/350/241/214//346/213/233/345/225/206/351/223/266/350/241/214/345/205/254/345/217/270/351/207/221/350/236/215.png +0 -0
  1042. package/skills/ppt-master/templates/layouts//347/247/221/346/212/200/350/223/235/345/225/206/345/212/241/01_cover.svg +52 -0
  1043. package/skills/ppt-master/templates/layouts//347/247/221/346/212/200/350/223/235/345/225/206/345/212/241/02_chapter.svg +50 -0
  1044. package/skills/ppt-master/templates/layouts//347/247/221/346/212/200/350/223/235/345/225/206/345/212/241/02_toc.svg +67 -0
  1045. package/skills/ppt-master/templates/layouts//347/247/221/346/212/200/350/223/235/345/225/206/345/212/241/03_content.svg +28 -0
  1046. package/skills/ppt-master/templates/layouts//347/247/221/346/212/200/350/223/235/345/225/206/345/212/241/04_ending.svg +52 -0
  1047. package/skills/ppt-master/templates/layouts//347/247/221/346/212/200/350/223/235/345/225/206/345/212/241/design_spec.md +206 -0
  1048. package/skills/ppt-master/templates/layouts//351/207/215/345/272/206/345/244/247/345/255/246/01_cover.svg +74 -0
  1049. package/skills/ppt-master/templates/layouts//351/207/215/345/272/206/345/244/247/345/255/246/02_chapter.svg +52 -0
  1050. package/skills/ppt-master/templates/layouts//351/207/215/345/272/206/345/244/247/345/255/246/02_toc.svg +80 -0
  1051. package/skills/ppt-master/templates/layouts//351/207/215/345/272/206/345/244/247/345/255/246/03_content.svg +56 -0
  1052. package/skills/ppt-master/templates/layouts//351/207/215/345/272/206/345/244/247/345/255/246/04_ending.svg +62 -0
  1053. package/skills/ppt-master/templates/layouts//351/207/215/345/272/206/345/244/247/345/255/246/design_spec.md +243 -0
  1054. package/skills/ppt-master/templates/layouts//351/207/215/345/272/206/345/244/247/345/255/246//351/207/215/345/272/206/345/244/247/345/255/246logo.png +0 -0
  1055. package/skills/ppt-master/templates/layouts//351/207/215/345/272/206/345/244/247/345/255/246//351/207/215/345/272/206/345/244/247/345/255/246logo2.png +0 -0
  1056. package/skills/ppt-master/workflows/create-template.md +173 -0
  1057. package/skills/speed-to-text/SKILL.md +64 -0
  1058. package/skills/tencent-meeting/SKILL.md +65 -0
  1059. package/skills/yidun-skill-sec/SKILL.md +838 -0
  1060. package/skills/smart-customer-service/docs//344/270/212/347/272/277/350/257/225/350/277/220/350/241/214/346/235/220/346/226/231.zip +0 -0
@@ -0,0 +1,850 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * web_to_md.cjs - Web Page to Markdown Converter (Enhanced)
4
+ *
5
+ * Usage:
6
+ * node skills/ppt-master/scripts/web_to_md.cjs <url> # Single URL
7
+ * node skills/ppt-master/scripts/web_to_md.cjs <url1> <url2> ... # Multiple URLs
8
+ * node skills/ppt-master/scripts/web_to_md.cjs -f urls.txt # Read URLs from file
9
+ * node skills/ppt-master/scripts/web_to_md.cjs <url> -o output.md # Specify output filename
10
+ */
11
+
12
+ const fs = require("fs").promises;
13
+ const path = require("path");
14
+ const https = require("https");
15
+ const http = require("http");
16
+
17
+ // ============ Config ============
18
+ const CONFIG = {
19
+ outputDir: "./projects",
20
+ timeout: 30000,
21
+ userAgent:
22
+ "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36",
23
+ };
24
+
25
+ // ============ HTTP Fetch with encoding detection ============
26
+ async function fetchUrl(url) {
27
+ return new Promise((resolve, reject) => {
28
+ const client = url.startsWith("https") ? https : http;
29
+ const options = {
30
+ headers: {
31
+ "User-Agent": CONFIG.userAgent,
32
+ Accept:
33
+ "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
34
+ "Accept-Language": "zh-CN,zh;q=0.9,en;q=0.8",
35
+ },
36
+ timeout: CONFIG.timeout,
37
+ };
38
+
39
+ const req = client.get(url, options, (res) => {
40
+ // Handle redirects
41
+ if (
42
+ res.statusCode >= 300 &&
43
+ res.statusCode < 400 &&
44
+ res.headers.location
45
+ ) {
46
+ const redirectUrl = new URL(res.headers.location, url).href;
47
+ return fetchUrl(redirectUrl).then(resolve).catch(reject);
48
+ }
49
+
50
+ if (res.statusCode !== 200) {
51
+ reject(new Error("HTTP " + res.statusCode));
52
+ return;
53
+ }
54
+
55
+ const chunks = [];
56
+ res.on("data", (chunk) => chunks.push(chunk));
57
+ res.on("end", () => {
58
+ const buffer = Buffer.concat(chunks);
59
+
60
+ // Detect encoding from Content-Type header or meta tag
61
+ let encoding = "utf-8";
62
+ const contentType = res.headers["content-type"] || "";
63
+ const charsetMatch = contentType.match(/charset=([^;]+)/i);
64
+ if (charsetMatch) {
65
+ encoding = charsetMatch[1].trim().toLowerCase();
66
+ }
67
+
68
+ // Try UTF-8 first, then check for charset in HTML
69
+ let html = buffer.toString("utf-8");
70
+
71
+ // Check for meta charset in HTML
72
+ const metaCharsetMatch = html.match(
73
+ /<meta[^>]*charset=["']?([^"'\s>]+)/i
74
+ );
75
+ if (metaCharsetMatch) {
76
+ const declaredEncoding = metaCharsetMatch[1].toLowerCase();
77
+ if (
78
+ declaredEncoding === "gbk" ||
79
+ declaredEncoding === "gb2312" ||
80
+ declaredEncoding === "gb18030"
81
+ ) {
82
+ // For Chinese GBK encoding, we'd need iconv-lite
83
+ // For now, UTF-8 usually works for modern sites
84
+ }
85
+ }
86
+
87
+ resolve(html);
88
+ });
89
+ });
90
+
91
+ req.on("error", reject);
92
+ req.on("timeout", () => {
93
+ req.destroy();
94
+ reject(new Error("Request timeout"));
95
+ });
96
+ });
97
+ }
98
+
99
+ // ============ Enhanced HTML Parser ============
100
+ function parseHTML(html) {
101
+ // Extract title
102
+ const titleMatch = html.match(/<title[^>]*>([\s\S]*?)<\/title>/i);
103
+ let title = titleMatch ? decodeHTMLEntities(titleMatch[1].trim()) : "";
104
+ // Clean title - remove site name suffix (e.g. Chinese government portal names)
105
+ title = title.replace(/[-_|].*?(政府|门户|网站|委员会).*$/g, "").trim();
106
+
107
+ // Extract meta tags
108
+ const metas = {};
109
+ const metaRegex = /<meta[^>]+>/gi;
110
+ let metaMatch;
111
+ while ((metaMatch = metaRegex.exec(html)) !== null) {
112
+ const tag = metaMatch[0];
113
+ const nameMatch = tag.match(/(?:name|property)=["']([^"']+)["']/i);
114
+ const contentMatch = tag.match(/content=["']([^"']+)["']/i);
115
+ if (nameMatch && contentMatch) {
116
+ metas[nameMatch[1].toLowerCase()] = decodeHTMLEntities(contentMatch[1]);
117
+ }
118
+ }
119
+
120
+ // Enhanced content extraction - try multiple strategies
121
+ let content = extractMainContent(html);
122
+
123
+ return { title, metas, content };
124
+ }
125
+
126
+ // ============ Enhanced Main Content Extraction ============
127
+ function extractMainContent(html) {
128
+ // Remove unwanted elements first
129
+ let cleanHtml = html;
130
+
131
+ // Remove script, style, nav, header, footer, sidebar, comments
132
+ cleanHtml = cleanHtml.replace(/<script[^>]*>[\s\S]*?<\/script>/gi, "");
133
+ cleanHtml = cleanHtml.replace(/<style[^>]*>[\s\S]*?<\/style>/gi, "");
134
+ cleanHtml = cleanHtml.replace(/<nav[^>]*>[\s\S]*?<\/nav>/gi, "");
135
+ cleanHtml = cleanHtml.replace(/<header[^>]*>[\s\S]*?<\/header>/gi, "");
136
+ cleanHtml = cleanHtml.replace(/<footer[^>]*>[\s\S]*?<\/footer>/gi, "");
137
+ cleanHtml = cleanHtml.replace(/<aside[^>]*>[\s\S]*?<\/aside>/gi, "");
138
+ cleanHtml = cleanHtml.replace(/<!--[\s\S]*?-->/g, "");
139
+
140
+ // Common content container patterns for Chinese government websites
141
+ const contentPatterns = [
142
+ // WeChat Public Account
143
+ /<div[^>]*class=["'][^"']*rich_media_content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
144
+ /<div[^>]*id=["']js_content["'][^>]*>([\s\S]*?)<\/div>/i,
145
+ // Hunan province gov sites
146
+ /<div[^>]*class=["'][^"']*tys-main-zt-show[^"']*["'][^>]?>([\s\S]*?)<\/div>\s*<\/div>\s*<\/div>/i,
147
+ /<div[^>]*class=["'][^"']*tys-main-zt-show[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
148
+ /<div[^>]*class=["'][^"']*tys-main[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
149
+ // Exact class matches for government sites
150
+ /<div[^>]*class=["'][^"']*TRS_Editor[^"']*["'][^>]*>([\s\S]*?)<\/div>\s*(?:<\/div>)?/i,
151
+ /<div[^>]*class=["'][^"']*TRS_UEDITOR[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
152
+ /<div[^>]*class=["'][^"']*ucontent[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
153
+ /<div[^>]*class=["'][^"']*article-content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
154
+ /<div[^>]*class=["'][^"']*news-content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
155
+ /<div[^>]*class=["'][^"']*detail-content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
156
+ /<div[^>]*class=["'][^"']*content-text[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
157
+ /<div[^>]*class=["'][^"']*pages_content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
158
+ /<div[^>]*class=["'][^"']*zwgk_content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
159
+ /<div[^>]*class=["'][^"']*content_detail[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
160
+ /<div[^>]*class=["'][^"']*text_content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
161
+ /<div[^>]*class=["'][^"']*main-content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
162
+ /<div[^>]*class=["'][^"']*main_content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
163
+ /<div[^>]*class=["'][^"']*view-content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
164
+ /<div[^>]*class=["'][^"']*info-content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
165
+ /<div[^>]*id=["']?Zoom["']?[^>]*>([\s\S]*?)<\/div>/i,
166
+ /<div[^>]*id=["']?content["']?[^>]*>([\s\S]*?)<\/div>/i,
167
+ /<div[^>]*id=["']?article["']?[^>]*>([\s\S]*?)<\/div>/i,
168
+ // ID-based patterns
169
+ /<div[^>]*id=["'][^"']*content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
170
+ /<div[^>]*id=["'][^"']*article[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
171
+ // Standard semantic elements
172
+ /<article[^>]*>([\s\S]*?)<\/article>/i,
173
+ /<main[^>]*>([\s\S]*?)<\/main>/i,
174
+ // Generic content divs (less specific)
175
+ /<div[^>]*class=["'][^"']*content[^"']*["'][^>]*>([\s\S]*?)<\/div>/i,
176
+ ];
177
+
178
+ // Try each pattern and find the one with most text content
179
+ let bestContent = "";
180
+ let bestTextLength = 0;
181
+
182
+ for (const pattern of contentPatterns) {
183
+ // Use a greedy matching approach for nested divs
184
+ const matches = findAllMatches(cleanHtml, pattern);
185
+ for (const match of matches) {
186
+ const textContent = stripTags(match).trim();
187
+ // Prefer content with Chinese characters (for gov sites)
188
+ const chineseChars = (textContent.match(/[\u4e00-\u9fa5]/g) || []).length;
189
+ const score = textContent.length + chineseChars * 2;
190
+ if (score > bestTextLength && textContent.length > 200) {
191
+ bestContent = match;
192
+ bestTextLength = score;
193
+ }
194
+ }
195
+ }
196
+
197
+ // If still not found, try to find content between common markers
198
+ if (!bestContent || bestTextLength < 500) {
199
+ // Look for content area by finding dense paragraph areas
200
+ const bodyMatch = cleanHtml.match(/<body[^>]*>([\s\S]*?)<\/body>/i);
201
+ if (bodyMatch) {
202
+ const bodyContent = bodyMatch[1];
203
+ // Find the area with most <p> tags
204
+ const areas = bodyContent.split(/<div[^>]*>/i);
205
+ for (const area of areas) {
206
+ const pCount = (area.match(/<p[^>]*>/gi) || []).length;
207
+ const textLen = stripTags(area).length;
208
+ if (pCount >= 2 && textLen > bestTextLength) {
209
+ bestContent = area;
210
+ bestTextLength = textLen;
211
+ }
212
+ }
213
+ }
214
+ }
215
+
216
+ // Fallback to body
217
+ if (!bestContent) {
218
+ const bodyMatch = cleanHtml.match(/<body[^>]*>([\s\S]*?)<\/body>/i);
219
+ bestContent = bodyMatch ? bodyMatch[1] : cleanHtml;
220
+ }
221
+
222
+ return bestContent;
223
+ }
224
+
225
+ // Helper function to find all regex matches
226
+ function findAllMatches(html, pattern) {
227
+ const results = [];
228
+ const globalPattern = new RegExp(pattern.source, "gi");
229
+ let match;
230
+ while ((match = globalPattern.exec(html)) !== null) {
231
+ if (match[1]) {
232
+ results.push(match[1]);
233
+ }
234
+ }
235
+ return results;
236
+ }
237
+
238
+ // Helper function to strip HTML tags for text length calculation
239
+ function stripTags(html) {
240
+ return html.replace(/<[^>]+>/g, " ").replace(/\s+/g, " ");
241
+ }
242
+
243
+ // ============ HTML Entity Decoder ============
244
+ function decodeHTMLEntities(str) {
245
+ const entities = {
246
+ "&amp;": "&",
247
+ "&lt;": "<",
248
+ "&gt;": ">",
249
+ "&quot;": '"',
250
+ "&#39;": "'",
251
+ "&nbsp;": " ",
252
+ "&mdash;": "\u2014",
253
+ "&ndash;": "\u2013",
254
+ "&copy;": "\u00A9",
255
+ "&reg;": "\u00AE",
256
+ "&trade;": "\u2122",
257
+ "&hellip;": "\u2026",
258
+ "&ldquo;": "\u201C",
259
+ "&rdquo;": "\u201D",
260
+ "&lsquo;": "\u2018",
261
+ "&rsquo;": "\u2019",
262
+ "&ensp;": " ",
263
+ "&emsp;": " ",
264
+ "&middot;": "\u00B7",
265
+ "&bull;": "\u2022",
266
+ "&times;": "\u00D7",
267
+ "&divide;": "\u00F7",
268
+ "&plusmn;": "\u00B1",
269
+ "&laquo;": "\u00AB",
270
+ "&raquo;": "\u00BB",
271
+ };
272
+ // Handle numeric entities
273
+ str = str.replace(/&#(\d+);/g, function (match, dec) {
274
+ return String.fromCharCode(dec);
275
+ });
276
+ str = str.replace(/&#x([0-9a-fA-F]+);/g, function (match, hex) {
277
+ return String.fromCharCode(parseInt(hex, 16));
278
+ });
279
+ // Handle named entities
280
+ return str.replace(/&[a-zA-Z]+;/g, function (match) {
281
+ return entities[match] || match;
282
+ });
283
+ }
284
+
285
+ // ============ Enhanced HTML to Markdown Converter ============
286
+ function htmlToMarkdown(html) {
287
+ let md = html;
288
+
289
+ // First pass: remove unwanted elements
290
+ md = md.replace(/<script[^>]*>[\s\S]*?<\/script>/gi, "");
291
+ md = md.replace(/<style[^>]*>[\s\S]*?<\/style>/gi, "");
292
+ md = md.replace(/<nav[^>]*>[\s\S]*?<\/nav>/gi, "");
293
+ md = md.replace(/<header[^>]*>[\s\S]*?<\/header>/gi, "");
294
+ md = md.replace(/<footer[^>]*>[\s\S]*?<\/footer>/gi, "");
295
+ md = md.replace(/<!--[\s\S]*?-->/g, "");
296
+
297
+ // Convert headings
298
+ md = md.replace(/<h1[^>]*>([\s\S]*?)<\/h1>/gi, "\n# $1\n");
299
+ md = md.replace(/<h2[^>]*>([\s\S]*?)<\/h2>/gi, "\n## $1\n");
300
+ md = md.replace(/<h3[^>]*>([\s\S]*?)<\/h3>/gi, "\n### $1\n");
301
+ md = md.replace(/<h4[^>]*>([\s\S]*?)<\/h4>/gi, "\n#### $1\n");
302
+ md = md.replace(/<h5[^>]*>([\s\S]*?)<\/h5>/gi, "\n##### $1\n");
303
+ md = md.replace(/<h6[^>]*>([\s\S]*?)<\/h6>/gi, "\n###### $1\n");
304
+
305
+ // Convert paragraphs
306
+ md = md.replace(/<p[^>]*>([\s\S]*?)<\/p>/gi, "\n$1\n");
307
+ md = md.replace(/<div[^>]*>([\s\S]*?)<\/div>/gi, "\n$1\n");
308
+ md = md.replace(/<br\s*\/?>/gi, "\n");
309
+ md = md.replace(/<hr\s*\/?>/gi, "\n---\n");
310
+
311
+ // Convert text formatting
312
+ md = md.replace(/<(strong|b)[^>]*>([\s\S]*?)<\/\1>/gi, "**$2**");
313
+ md = md.replace(/<(em|i)[^>]*>([\s\S]*?)<\/\1>/gi, "*$2*");
314
+ md = md.replace(/<u[^>]*>([\s\S]*?)<\/u>/gi, "$1");
315
+ md = md.replace(/<del[^>]*>([\s\S]*?)<\/del>/gi, "~~$1~~");
316
+ md = md.replace(/<s[^>]*>([\s\S]*?)<\/s>/gi, "~~$1~~");
317
+ md = md.replace(/<span[^>]*>([\s\S]*?)<\/span>/gi, "$1");
318
+
319
+ // Convert links - handle nested content properly
320
+ md = md.replace(
321
+ /<a[^>]*href=["']([^"']+)["'][^>]*>([\s\S]*?)<\/a>/gi,
322
+ function (match, url, text) {
323
+ const cleanText = text.replace(/<[^>]+>/g, "").trim();
324
+ if (!cleanText || url.startsWith("javascript:")) {
325
+ return cleanText;
326
+ }
327
+ return "[" + cleanText + "](" + url + ")";
328
+ }
329
+ );
330
+
331
+ // Convert images
332
+ md = md.replace(
333
+ /<img[^>]*src=["']([^"']+)["'][^>]*alt=["']([^"']*)["'][^>]*\/?>/gi,
334
+ "![$2]($1)"
335
+ );
336
+ md = md.replace(
337
+ /<img[^>]*alt=["']([^"']*)["'][^>]*src=["']([^"']+)["'][^>]*\/?>/gi,
338
+ "![$1]($2)"
339
+ );
340
+ md = md.replace(/<img[^>]*src=["']([^"']+)["'][^>]*\/?>/gi, "![]($1)");
341
+
342
+ // Convert lists
343
+ md = md.replace(/<li[^>]*>([\s\S]*?)<\/li>/gi, function (match, content) {
344
+ const cleanContent = content.replace(/<[^>]+>/g, "").trim();
345
+ return "- " + cleanContent + "\n";
346
+ });
347
+ md = md.replace(/<\/?[uo]l[^>]*>/gi, "\n");
348
+
349
+ // Convert code
350
+ md = md.replace(/<code[^>]*>([\s\S]*?)<\/code>/gi, "`$1`");
351
+ md = md.replace(/<pre[^>]*>([\s\S]*?)<\/pre>/gi, "\n```\n$1\n```\n");
352
+
353
+ // Convert blockquotes
354
+ md = md.replace(
355
+ /<blockquote[^>]*>([\s\S]*?)<\/blockquote>/gi,
356
+ function (match, content) {
357
+ const lines = content.replace(/<[^>]+>/g, "").split("\n");
358
+ return (
359
+ "\n" +
360
+ lines
361
+ .map(function (line) {
362
+ return "> " + line.trim();
363
+ })
364
+ .filter(function (l) {
365
+ return l.trim() !== ">";
366
+ })
367
+ .join("\n") +
368
+ "\n"
369
+ );
370
+ }
371
+ );
372
+
373
+ // Convert tables
374
+ md = md.replace(
375
+ /<table[^>]*>([\s\S]*?)<\/table>/gi,
376
+ function (match, content) {
377
+ let result = "\n";
378
+ const rows = content.match(/<tr[^>]*>[\s\S]*?<\/tr>/gi) || [];
379
+ rows.forEach(function (row, index) {
380
+ const cells = row.match(/<t[hd][^>]*>([\s\S]*?)<\/t[hd]>/gi) || [];
381
+ const cellContents = cells.map(function (cell) {
382
+ const cellMatch = cell.match(/<t[hd][^>]*>([\s\S]*?)<\/t[hd]>/i);
383
+ return cellMatch ? cellMatch[1].replace(/<[^>]+>/g, "").trim() : "";
384
+ });
385
+ if (cellContents.length > 0) {
386
+ result += "| " + cellContents.join(" | ") + " |\n";
387
+ if (index === 0) {
388
+ result +=
389
+ "| " +
390
+ cellContents
391
+ .map(function () {
392
+ return "---";
393
+ })
394
+ .join(" | ") +
395
+ " |\n";
396
+ }
397
+ }
398
+ });
399
+ return result;
400
+ }
401
+ );
402
+
403
+ // Clean remaining HTML tags
404
+ md = md.replace(/<[^>]+>/g, "");
405
+
406
+ // Decode HTML entities
407
+ md = decodeHTMLEntities(md);
408
+
409
+ // Clean up whitespace
410
+ md = md.replace(/\r\n/g, "\n");
411
+ md = md.replace(/\n{3,}/g, "\n\n");
412
+ md = md.replace(/[ \t]+$/gm, "");
413
+ md = md.replace(/^[ \t]+/gm, "");
414
+
415
+ // Remove lines that are just whitespace or single characters
416
+ md = md
417
+ .split("\n")
418
+ .filter(function (line) {
419
+ const trimmed = line.trim();
420
+ return trimmed.length > 1 || trimmed === "" || /^[-#>*|]/.test(trimmed);
421
+ })
422
+ .join("\n");
423
+
424
+ md = md.trim();
425
+
426
+ return md;
427
+ }
428
+
429
+ // ============ Extract Metadata ============
430
+ function extractMetadata(parsed, url) {
431
+ const title = parsed.title;
432
+ const metas = parsed.metas;
433
+
434
+ // Try to extract date from multiple sources
435
+ let date =
436
+ metas["article:published_time"] ||
437
+ metas["og:published_time"] ||
438
+ metas["pubdate"] ||
439
+ metas["publishdate"] ||
440
+ metas["date"] ||
441
+ "";
442
+
443
+ // Try to extract date from HTML content
444
+ if (!date) {
445
+ const content = parsed.content;
446
+ // Common date patterns in Chinese gov sites
447
+ const datePatterns = [
448
+ /发布[时日]间[::]\s*(\d{4}[-\/年]\d{1,2}[-\/月]\d{1,2}[日]?)/,
449
+ /日期[::]\s*(\d{4}[-\/年]\d{1,2}[-\/月]\d{1,2}[日]?)/,
450
+ /(\d{4}[-\/年]\d{1,2}[-\/月]\d{1,2}[日]?)\s*(?:发布|来源)/,
451
+ /时间[::]\s*(\d{4}[-\/]\d{1,2}[-\/]\d{1,2})/,
452
+ ];
453
+ for (const pattern of datePatterns) {
454
+ const match = content.match(pattern);
455
+ if (match) {
456
+ date = match[1].replace(/[年月]/g, "-").replace(/[日]/g, "");
457
+ break;
458
+ }
459
+ }
460
+ }
461
+
462
+ // Try to extract date from URL
463
+ if (!date) {
464
+ const urlDateMatch = url.match(/(\d{4})(\d{2})[\/_](?:t\d+_)?/i);
465
+ if (urlDateMatch) {
466
+ date = urlDateMatch[1] + "-" + urlDateMatch[2];
467
+ } else {
468
+ const urlDateMatch2 = url.match(/(\d{4})[-\/](\d{2})[-\/](\d{2})/);
469
+ if (urlDateMatch2) {
470
+ date =
471
+ urlDateMatch2[1] + "-" + urlDateMatch2[2] + "-" + urlDateMatch2[3];
472
+ }
473
+ }
474
+ }
475
+
476
+ const description =
477
+ metas["description"] ||
478
+ metas["og:description"] ||
479
+ metas["twitter:description"] ||
480
+ "";
481
+
482
+ const author = metas["author"] || metas["article:author"] || "";
483
+
484
+ const keywords = metas["keywords"] || "";
485
+
486
+ // Extract source/publisher from content
487
+ let source = "";
488
+ const sourcePatterns = [
489
+ /来源[::]\s*([^\s<]+)/,
490
+ /发布(?:单位|机构)[::]\s*([^\s<]+)/,
491
+ ];
492
+ for (const pattern of sourcePatterns) {
493
+ const match = parsed.content.match(pattern);
494
+ if (match) {
495
+ source = match[1];
496
+ break;
497
+ }
498
+ }
499
+
500
+ return {
501
+ title: title || metas["og:title"] || "",
502
+ date: date,
503
+ description: description,
504
+ author: author || source,
505
+ keywords: keywords,
506
+ sourceUrl: url,
507
+ };
508
+ }
509
+
510
+ // ============ Sanitize Filename ============
511
+ function sanitizeFilename(name) {
512
+ return name
513
+ .replace(/\s+/g, "_")
514
+ .replace(/[^\u4e00-\u9fa5a-zA-Z0-9_]/g, "")
515
+ .replace(/_+/g, "_")
516
+ .substring(0, 80);
517
+ }
518
+
519
+ // ============ Image Downloader & Processor ============
520
+ function downloadImage(url, savePath) {
521
+ return new Promise((resolve, reject) => {
522
+ const client = url.startsWith("https") ? https : http;
523
+ const req = client.get(
524
+ url,
525
+ {
526
+ headers: {
527
+ "User-Agent": CONFIG.userAgent,
528
+ Accept: "image/*,*/*",
529
+ },
530
+ timeout: CONFIG.timeout,
531
+ },
532
+ (res) => {
533
+ if (res.statusCode !== 200) {
534
+ res.resume();
535
+ return reject(new Error("Status " + res.statusCode));
536
+ }
537
+ const fileStream = require("fs").createWriteStream(savePath);
538
+ res.pipe(fileStream);
539
+ fileStream.on("finish", () => {
540
+ fileStream.close();
541
+ resolve();
542
+ });
543
+ fileStream.on("error", (err) => {
544
+ reject(err);
545
+ });
546
+ }
547
+ );
548
+ req.on("error", (err) => reject(err));
549
+ req.on("timeout", () => {
550
+ req.destroy();
551
+ reject(new Error("Timeout"));
552
+ });
553
+ });
554
+ }
555
+
556
+ function buildImageFilename(urlStr, index) {
557
+ try {
558
+ const u = new URL(urlStr);
559
+ const basename = path.basename(u.pathname);
560
+ let ext = path.extname(basename);
561
+ let name = path.basename(basename, ext);
562
+
563
+ name = sanitizeFilename(name);
564
+ if (!name) name = "image_" + index;
565
+ // Basic extension check
566
+ if (!ext || ext.length > 5 || !/^\.[a-z0-9]+$/i.test(ext)) ext = ".jpg";
567
+
568
+ return name + ext;
569
+ } catch (e) {
570
+ return "image_" + index + ".jpg";
571
+ }
572
+ }
573
+
574
+ async function processImages(html, pageUrl, imageDir, relPrefix) {
575
+ const imgRegex = /<img[^>]+src=["']([^"']+)["'][^>]*>/gi;
576
+ const matches = [...html.matchAll(imgRegex)];
577
+
578
+ if (matches.length === 0) return html;
579
+
580
+ console.log(" [Processing] Found " + matches.length + " images...");
581
+
582
+ // Ensure image dir exists
583
+ await fs.mkdir(imageDir, { recursive: true });
584
+
585
+ const urlMap = new Map();
586
+ const uniqueUrls = new Set();
587
+
588
+ for (const m of matches) {
589
+ if (m[1]) uniqueUrls.add(m[1]);
590
+ }
591
+
592
+ let idx = 0;
593
+ for (const src of uniqueUrls) {
594
+ if (src.startsWith("data:") || src.startsWith("#")) continue;
595
+
596
+ try {
597
+ // Resolve absolute URL
598
+ const absUrl = new URL(src, pageUrl).href;
599
+ // Generate filename
600
+ const filename = buildImageFilename(absUrl, idx++);
601
+
602
+ // Avoid overwriting existing files with same name but different content?
603
+ // For now, simpler collision avoidance
604
+ let saveName = filename;
605
+ let counter = 1;
606
+
607
+ // Note: This collision check is basic.
608
+ while (true) {
609
+ try {
610
+ await fs.access(path.join(imageDir, saveName));
611
+ const parsed = path.parse(filename);
612
+ saveName = parsed.name + "_" + counter++ + parsed.ext;
613
+ } catch {
614
+ break; // file does not exist
615
+ }
616
+ }
617
+
618
+ const savePath = path.join(imageDir, saveName);
619
+ await downloadImage(absUrl, savePath);
620
+
621
+ // Relative path for Markdown
622
+ const relPath = relPrefix
623
+ ? path.join(relPrefix, saveName)
624
+ : saveName;
625
+
626
+ // Force forward slashes for Markdown compatibility
627
+ urlMap.set(src, relPath.replace(/\\/g, "/"));
628
+ } catch (e) {
629
+ console.log(" [WARN] Image fail " + src + ": " + e.message);
630
+ }
631
+ }
632
+
633
+ // Replace src in HTML
634
+ return html.replace(imgRegex, (match, src) => {
635
+ if (urlMap.has(src)) {
636
+ // Replace only the src part of the match
637
+ // Simplest robust way is to replace the exact src string within the match
638
+ // but we must be careful not to replace other attributes' values if identical.
639
+ // A safer way is to reconstruct, but regex is tricky.
640
+ // Current approach: replace the FIRST occurrence of src in the match?
641
+ // No, src is what we extracted.
642
+
643
+ // Let's replace `src="URL"` with `src="NEW_URL"`?
644
+ // Match structure is roughly `<img ... src="URL" ...>`
645
+ // We can look for `src=["']URL["']` inside `match`.
646
+
647
+ // Create a regex for this specific src in this tag
648
+ // Escape special regex chars in src
649
+ const escapedSrc = src.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
650
+ const srcReplaceRegex = new RegExp(`(src=["'])(${escapedSrc})(["'])`, "i");
651
+ return match.replace(srcReplaceRegex, `$1${urlMap.get(src)}$3`);
652
+ }
653
+ return match;
654
+ });
655
+ }
656
+
657
+ // ============ Process Single URL ============
658
+ // ============ Process Single URL ============
659
+ async function processUrl(url, outputPath) {
660
+ console.log("\n[Fetching] " + url);
661
+
662
+ try {
663
+ const html = await fetchUrl(url);
664
+ console.log(" [OK] Fetched (" + (html.length / 1024).toFixed(1) + " KB)");
665
+
666
+ const parsed = parseHTML(html);
667
+ const metadata = extractMetadata(parsed, url);
668
+ console.log(" [OK] Title: " + (metadata.title || "(not found)"));
669
+ if (metadata.date) console.log(" [OK] Date: " + metadata.date);
670
+
671
+ // Determine output path EARLY so we can determine image path
672
+ if (!outputPath) {
673
+ await fs.mkdir(CONFIG.outputDir, { recursive: true });
674
+ const filename = sanitizeFilename(metadata.title || "untitled") + ".md";
675
+ outputPath = path.join(CONFIG.outputDir, filename);
676
+ }
677
+
678
+ // Set up image directory
679
+ const outputDir = path.dirname(outputPath);
680
+ await fs.mkdir(outputDir, { recursive: true });
681
+
682
+ const baseName = path.basename(outputPath, path.extname(outputPath));
683
+ const imageDirName = baseName + "_files"; // Using string concatenation
684
+ const imageDir = path.join(outputDir, imageDirName);
685
+ const relImagePrefix = imageDirName;
686
+
687
+ // Process Images
688
+ let contentToConvert = parsed.content;
689
+ try {
690
+ contentToConvert = await processImages(parsed.content, url, imageDir, relImagePrefix);
691
+ } catch (e) {
692
+ console.warn(" [WARN] Image processing failed, continuing: " + e.message);
693
+ }
694
+
695
+ const markdown = htmlToMarkdown(contentToConvert);
696
+ console.log(" [OK] Content: " + markdown.length + " chars");
697
+
698
+ // Generate output
699
+ let output = "";
700
+ output += "<!-- \n";
701
+ output += " Source: " + url + "\n";
702
+ output += " Crawled: " + new Date().toISOString() + "\n";
703
+ if (metadata.date) output += " Published: " + metadata.date + "\n";
704
+ if (metadata.author) output += " Author: " + metadata.author + "\n";
705
+ output += "-->\n\n";
706
+
707
+ if (metadata.title) {
708
+ output += "# " + metadata.title + "\n\n";
709
+ }
710
+
711
+ if (metadata.description) {
712
+ output += "> " + metadata.description + "\n\n";
713
+ }
714
+
715
+ output += markdown;
716
+
717
+ await fs.writeFile(outputPath, output, "utf-8");
718
+ console.log(" [OK] Saved: " + outputPath);
719
+
720
+ return {
721
+ success: true,
722
+ url: url,
723
+ outputPath: outputPath,
724
+ metadata: metadata,
725
+ };
726
+ } catch (error) {
727
+ console.error(" [ERROR] " + error.message);
728
+ return { success: false, url: url, error: error.message };
729
+ }
730
+ }
731
+
732
+ // ============ Main Function ============
733
+ async function main() {
734
+ const args = process.argv.slice(2);
735
+
736
+ if (args.length === 0) {
737
+ console.log("");
738
+ console.log("=".repeat(60));
739
+ console.log(" Web to Markdown - Enhanced Web Page Crawler & Converter");
740
+ console.log("=".repeat(60));
741
+ console.log("");
742
+ console.log(" Usage:");
743
+ console.log(" node skills/ppt-master/scripts/web_to_md.cjs <url>");
744
+ console.log(" node skills/ppt-master/scripts/web_to_md.cjs <url1> <url2> ...");
745
+ console.log(" node skills/ppt-master/scripts/web_to_md.cjs -f urls.txt");
746
+ console.log(" node skills/ppt-master/scripts/web_to_md.cjs <url> -o output.md");
747
+ console.log("");
748
+ console.log(" Options:");
749
+ console.log(" -f, --file <file> Read URLs from file (one per line)");
750
+ console.log(
751
+ " -o, --output <file> Specify output filename (single URL only)"
752
+ );
753
+ console.log(
754
+ " -d, --dir <dir> Specify output directory (default: ./output)"
755
+ );
756
+ console.log(" -h, --help Show help");
757
+ console.log("");
758
+ console.log("=".repeat(60));
759
+ process.exit(0);
760
+ }
761
+
762
+ let urls = [];
763
+ let outputFile = null;
764
+
765
+ // Parse arguments
766
+ for (let i = 0; i < args.length; i++) {
767
+ const arg = args[i];
768
+
769
+ if (arg === "-h" || arg === "--help") {
770
+ args.length = 0;
771
+ await main();
772
+ return;
773
+ }
774
+
775
+ if (arg === "-f" || arg === "--file") {
776
+ const filePath = args[++i];
777
+ if (!filePath) {
778
+ console.error("Error: -f requires a file path");
779
+ process.exit(1);
780
+ }
781
+ const content = await fs.readFile(filePath, "utf-8");
782
+ const lines = content
783
+ .split("\n")
784
+ .map(function (l) {
785
+ return l.trim();
786
+ })
787
+ .filter(function (l) {
788
+ return l && !l.startsWith("#");
789
+ });
790
+ urls = urls.concat(lines);
791
+ continue;
792
+ }
793
+
794
+ if (arg === "-o" || arg === "--output") {
795
+ outputFile = args[++i];
796
+ continue;
797
+ }
798
+
799
+ if (arg === "-d" || arg === "--dir") {
800
+ CONFIG.outputDir = args[++i];
801
+ continue;
802
+ }
803
+
804
+ if (arg.startsWith("http://") || arg.startsWith("https://")) {
805
+ urls.push(arg);
806
+ }
807
+ }
808
+
809
+ if (urls.length === 0) {
810
+ console.error("Error: No valid URLs provided");
811
+ process.exit(1);
812
+ }
813
+
814
+ console.log("\n[Start] Processing " + urls.length + " URL(s)...");
815
+
816
+ const results = [];
817
+ for (let i = 0; i < urls.length; i++) {
818
+ const result = await processUrl(
819
+ urls[i],
820
+ urls.length === 1 ? outputFile : null
821
+ );
822
+ results.push(result);
823
+ }
824
+
825
+ // Summary
826
+ const success = results.filter(function (r) {
827
+ return r.success;
828
+ }).length;
829
+ const failed = results.filter(function (r) {
830
+ return !r.success;
831
+ }).length;
832
+
833
+ console.log("\n" + "=".repeat(50));
834
+ console.log(
835
+ "[Done] Success: " + success + "/" + urls.length + ", Failed: " + failed
836
+ );
837
+
838
+ if (failed > 0) {
839
+ console.log("\n[Failed URLs]:");
840
+ results
841
+ .filter(function (r) {
842
+ return !r.success;
843
+ })
844
+ .forEach(function (r) {
845
+ console.log(" - " + r.url + ": " + r.error);
846
+ });
847
+ }
848
+ }
849
+
850
+ main().catch(console.error);