railwise-darwin-x64 1.2.29

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 (380) hide show
  1. package/bin/agent/adjustment_computer.md +44 -0
  2. package/bin/agent/chief_manager.md +82 -0
  3. package/bin/agent/commercial_specialist.md +39 -0
  4. package/bin/agent/cpiii_specialist.md +42 -0
  5. package/bin/agent/data_analyst.md +55 -0
  6. package/bin/agent/knowledge_curator.md +41 -0
  7. package/bin/agent/norm_librarian.md +38 -0
  8. package/bin/agent/qa_inspector.md +58 -0
  9. package/bin/agent/qa_reviewer.md +49 -0
  10. package/bin/agent/solution_architect.md +44 -0
  11. package/bin/agent/source_ingestor.md +38 -0
  12. package/bin/agent/technical_writer.md +50 -0
  13. package/bin/command/bid-prepare.md +21 -0
  14. package/bin/command/daily-report.md +20 -0
  15. package/bin/command/data-check.md +19 -0
  16. package/bin/command/emergency-response.md +62 -0
  17. package/bin/command/monthly-report.md +32 -0
  18. package/bin/command/payment-reminder.md +22 -0
  19. package/bin/command/safety-check.md +18 -0
  20. package/bin/command/trend-analysis.md +35 -0
  21. package/bin/railwise +0 -0
  22. package/bin/railwise.json +4 -0
  23. package/bin/rw +2 -0
  24. package/bin/skill/THIRD_PARTY_NOTICES.md +405 -0
  25. package/bin/skill/algorithmic-art/LICENSE.txt +202 -0
  26. package/bin/skill/algorithmic-art/SKILL.md +405 -0
  27. package/bin/skill/algorithmic-art/templates/generator_template.js +223 -0
  28. package/bin/skill/algorithmic-art/templates/viewer.html +599 -0
  29. package/bin/skill/bidding-knowledge/SKILL.md +67 -0
  30. package/bin/skill/brand-guidelines/LICENSE.txt +202 -0
  31. package/bin/skill/brand-guidelines/SKILL.md +73 -0
  32. package/bin/skill/bun-file-io/SKILL.md +42 -0
  33. package/bin/skill/canvas-design/SKILL.md +141 -0
  34. package/bin/skill/claude-api/LICENSE.txt +202 -0
  35. package/bin/skill/claude-api/SKILL.md +325 -0
  36. package/bin/skill/claude-api/csharp/claude-api.md +402 -0
  37. package/bin/skill/claude-api/curl/examples.md +216 -0
  38. package/bin/skill/claude-api/curl/managed-agents.md +336 -0
  39. package/bin/skill/claude-api/go/claude-api.md +421 -0
  40. package/bin/skill/claude-api/go/managed-agents/README.md +561 -0
  41. package/bin/skill/claude-api/java/claude-api.md +432 -0
  42. package/bin/skill/claude-api/java/managed-agents/README.md +442 -0
  43. package/bin/skill/claude-api/php/claude-api.md +375 -0
  44. package/bin/skill/claude-api/php/managed-agents/README.md +435 -0
  45. package/bin/skill/claude-api/python/claude-api/README.md +420 -0
  46. package/bin/skill/claude-api/python/claude-api/batches.md +185 -0
  47. package/bin/skill/claude-api/python/claude-api/files-api.md +165 -0
  48. package/bin/skill/claude-api/python/claude-api/streaming.md +162 -0
  49. package/bin/skill/claude-api/python/claude-api/tool-use.md +590 -0
  50. package/bin/skill/claude-api/python/managed-agents/README.md +332 -0
  51. package/bin/skill/claude-api/ruby/claude-api.md +113 -0
  52. package/bin/skill/claude-api/ruby/managed-agents/README.md +389 -0
  53. package/bin/skill/claude-api/shared/agent-design.md +101 -0
  54. package/bin/skill/claude-api/shared/error-codes.md +213 -0
  55. package/bin/skill/claude-api/shared/live-sources.md +135 -0
  56. package/bin/skill/claude-api/shared/managed-agents-api-reference.md +378 -0
  57. package/bin/skill/claude-api/shared/managed-agents-client-patterns.md +209 -0
  58. package/bin/skill/claude-api/shared/managed-agents-core.md +238 -0
  59. package/bin/skill/claude-api/shared/managed-agents-environments.md +215 -0
  60. package/bin/skill/claude-api/shared/managed-agents-events.md +195 -0
  61. package/bin/skill/claude-api/shared/managed-agents-memory.md +197 -0
  62. package/bin/skill/claude-api/shared/managed-agents-multiagent.md +99 -0
  63. package/bin/skill/claude-api/shared/managed-agents-onboarding.md +114 -0
  64. package/bin/skill/claude-api/shared/managed-agents-outcomes.md +106 -0
  65. package/bin/skill/claude-api/shared/managed-agents-overview.md +68 -0
  66. package/bin/skill/claude-api/shared/managed-agents-self-hosted-sandboxes.md +173 -0
  67. package/bin/skill/claude-api/shared/managed-agents-tools.md +321 -0
  68. package/bin/skill/claude-api/shared/managed-agents-webhooks.md +110 -0
  69. package/bin/skill/claude-api/shared/model-migration.md +879 -0
  70. package/bin/skill/claude-api/shared/models.md +124 -0
  71. package/bin/skill/claude-api/shared/prompt-caching.md +171 -0
  72. package/bin/skill/claude-api/shared/tool-use-concepts.md +327 -0
  73. package/bin/skill/claude-api/typescript/claude-api/README.md +333 -0
  74. package/bin/skill/claude-api/typescript/claude-api/batches.md +106 -0
  75. package/bin/skill/claude-api/typescript/claude-api/files-api.md +98 -0
  76. package/bin/skill/claude-api/typescript/claude-api/streaming.md +178 -0
  77. package/bin/skill/claude-api/typescript/claude-api/tool-use.md +527 -0
  78. package/bin/skill/claude-api/typescript/managed-agents/README.md +359 -0
  79. package/bin/skill/data-analysis/SKILL.md +79 -0
  80. package/bin/skill/doc-coauthoring/SKILL.md +375 -0
  81. package/bin/skill/docx/LICENSE.txt +30 -0
  82. package/bin/skill/docx/SKILL.md +590 -0
  83. package/bin/skill/docx/scripts/__init__.py +1 -0
  84. package/bin/skill/docx/scripts/accept_changes.py +135 -0
  85. package/bin/skill/docx/scripts/comment.py +318 -0
  86. package/bin/skill/docx/scripts/office/helpers/__init__.py +0 -0
  87. package/bin/skill/docx/scripts/office/helpers/merge_runs.py +199 -0
  88. package/bin/skill/docx/scripts/office/helpers/simplify_redlines.py +197 -0
  89. package/bin/skill/docx/scripts/office/pack.py +159 -0
  90. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  91. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  92. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  93. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  94. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  95. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  96. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  97. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  98. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  99. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  100. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  101. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  102. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  103. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  104. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  105. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  106. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  107. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  108. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  109. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  110. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  111. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  112. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  113. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  114. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  115. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  116. package/bin/skill/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  117. package/bin/skill/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  118. package/bin/skill/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  119. package/bin/skill/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  120. package/bin/skill/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  121. package/bin/skill/docx/scripts/office/schemas/mce/mc.xsd +75 -0
  122. package/bin/skill/docx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  123. package/bin/skill/docx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  124. package/bin/skill/docx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  125. package/bin/skill/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  126. package/bin/skill/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  127. package/bin/skill/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  128. package/bin/skill/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  129. package/bin/skill/docx/scripts/office/soffice.py +183 -0
  130. package/bin/skill/docx/scripts/office/unpack.py +132 -0
  131. package/bin/skill/docx/scripts/office/validate.py +111 -0
  132. package/bin/skill/docx/scripts/office/validators/__init__.py +15 -0
  133. package/bin/skill/docx/scripts/office/validators/base.py +847 -0
  134. package/bin/skill/docx/scripts/office/validators/docx.py +446 -0
  135. package/bin/skill/docx/scripts/office/validators/pptx.py +275 -0
  136. package/bin/skill/docx/scripts/office/validators/redlining.py +247 -0
  137. package/bin/skill/docx/scripts/templates/comments.xml +3 -0
  138. package/bin/skill/docx/scripts/templates/commentsExtended.xml +3 -0
  139. package/bin/skill/docx/scripts/templates/commentsExtensible.xml +3 -0
  140. package/bin/skill/docx/scripts/templates/commentsIds.xml +3 -0
  141. package/bin/skill/docx/scripts/templates/people.xml +3 -0
  142. package/bin/skill/docx-generation/SKILL.md +160 -0
  143. package/bin/skill/excel-operations/SKILL.md +121 -0
  144. package/bin/skill/frontend-design/SKILL.md +151 -0
  145. package/bin/skill/humanizer/SKILL.md +90 -0
  146. package/bin/skill/internal-comms/LICENSE.txt +202 -0
  147. package/bin/skill/internal-comms/SKILL.md +32 -0
  148. package/bin/skill/internal-comms/examples/3p-updates.md +47 -0
  149. package/bin/skill/internal-comms/examples/company-newsletter.md +65 -0
  150. package/bin/skill/internal-comms/examples/faq-answers.md +30 -0
  151. package/bin/skill/internal-comms/examples/general-comms.md +16 -0
  152. package/bin/skill/mcp-builder/LICENSE.txt +202 -0
  153. package/bin/skill/mcp-builder/SKILL.md +236 -0
  154. package/bin/skill/mcp-builder/reference/evaluation.md +602 -0
  155. package/bin/skill/mcp-builder/reference/mcp_best_practices.md +249 -0
  156. package/bin/skill/mcp-builder/reference/node_mcp_server.md +970 -0
  157. package/bin/skill/mcp-builder/reference/python_mcp_server.md +719 -0
  158. package/bin/skill/mcp-builder/scripts/connections.py +151 -0
  159. package/bin/skill/mcp-builder/scripts/evaluation.py +373 -0
  160. package/bin/skill/mcp-builder/scripts/example_evaluation.xml +22 -0
  161. package/bin/skill/mcp-builder/scripts/requirements.txt +2 -0
  162. package/bin/skill/monitoring-design/SKILL.md +79 -0
  163. package/bin/skill/operational-monitoring/SKILL.md +135 -0
  164. package/bin/skill/operational-monitoring/assets/checklists/archive-self-check.md +54 -0
  165. package/bin/skill/operational-monitoring/assets/schemas/convergence-result-table.csv +5 -0
  166. package/bin/skill/operational-monitoring/assets/schemas/horizontal-result-table.csv +3 -0
  167. package/bin/skill/operational-monitoring/assets/schemas/settlement-result-table.csv +7 -0
  168. package/bin/skill/operational-monitoring/assets/scripts/init-archive-tree.sh +65 -0
  169. package/bin/skill/operational-monitoring/assets/templates/control-network-report.md +102 -0
  170. package/bin/skill/operational-monitoring/assets/templates/daily-log.md +47 -0
  171. package/bin/skill/operational-monitoring/assets/templates/i-angle-check.md +38 -0
  172. package/bin/skill/operational-monitoring/assets/templates/monitoring-scheme.md +234 -0
  173. package/bin/skill/operational-monitoring/assets/templates/period-report.md +95 -0
  174. package/bin/skill/operational-monitoring/assets/templates/point-acceptance-record.md +51 -0
  175. package/bin/skill/operational-monitoring/assets/templates/point-installation-record.md +38 -0
  176. package/bin/skill/operational-monitoring/assets/templates/summary-report.md +89 -0
  177. package/bin/skill/operational-monitoring/assets/templates/warning-bulletin.md +61 -0
  178. package/bin/skill/operational-monitoring/assets/templates/weekly-monthly-report.md +46 -0
  179. package/bin/skill/operational-monitoring/references/archive-and-delivery.md +146 -0
  180. package/bin/skill/operational-monitoring/references/baseline-network.md +131 -0
  181. package/bin/skill/operational-monitoring/references/convergence-monitoring.md +134 -0
  182. package/bin/skill/operational-monitoring/references/data-processing.md +178 -0
  183. package/bin/skill/operational-monitoring/references/horizontal-displacement.md +128 -0
  184. package/bin/skill/operational-monitoring/references/monitoring-points.md +132 -0
  185. package/bin/skill/operational-monitoring/references/monitoring-scheme.md +178 -0
  186. package/bin/skill/operational-monitoring/references/period-report.md +108 -0
  187. package/bin/skill/operational-monitoring/references/regulations-and-frequency.md +127 -0
  188. package/bin/skill/operational-monitoring/references/settlement-monitoring.md +116 -0
  189. package/bin/skill/operational-monitoring/references/summary-report.md +128 -0
  190. package/bin/skill/operational-monitoring/references/warning-and-disposal.md +118 -0
  191. package/bin/skill/pdf/LICENSE.txt +30 -0
  192. package/bin/skill/pdf/SKILL.md +314 -0
  193. package/bin/skill/pdf/forms.md +294 -0
  194. package/bin/skill/pdf/reference.md +612 -0
  195. package/bin/skill/pdf/scripts/check_bounding_boxes.py +65 -0
  196. package/bin/skill/pdf/scripts/check_fillable_fields.py +11 -0
  197. package/bin/skill/pdf/scripts/convert_pdf_to_images.py +33 -0
  198. package/bin/skill/pdf/scripts/create_validation_image.py +37 -0
  199. package/bin/skill/pdf/scripts/extract_form_field_info.py +122 -0
  200. package/bin/skill/pdf/scripts/extract_form_structure.py +115 -0
  201. package/bin/skill/pdf/scripts/fill_fillable_fields.py +98 -0
  202. package/bin/skill/pdf/scripts/fill_pdf_form_with_annotations.py +107 -0
  203. package/bin/skill/pptx/LICENSE.txt +30 -0
  204. package/bin/skill/pptx/SKILL.md +232 -0
  205. package/bin/skill/pptx/editing.md +205 -0
  206. package/bin/skill/pptx/pptxgenjs.md +420 -0
  207. package/bin/skill/pptx/scripts/__init__.py +0 -0
  208. package/bin/skill/pptx/scripts/add_slide.py +195 -0
  209. package/bin/skill/pptx/scripts/clean.py +286 -0
  210. package/bin/skill/pptx/scripts/office/helpers/__init__.py +0 -0
  211. package/bin/skill/pptx/scripts/office/helpers/merge_runs.py +199 -0
  212. package/bin/skill/pptx/scripts/office/helpers/simplify_redlines.py +197 -0
  213. package/bin/skill/pptx/scripts/office/pack.py +159 -0
  214. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  215. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  216. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  217. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  218. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  219. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  220. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  221. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  222. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  223. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  224. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  225. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  226. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  227. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  228. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  229. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  230. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  231. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  232. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  233. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  234. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  235. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  236. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  237. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  238. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  239. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  240. package/bin/skill/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  241. package/bin/skill/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  242. package/bin/skill/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  243. package/bin/skill/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  244. package/bin/skill/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  245. package/bin/skill/pptx/scripts/office/schemas/mce/mc.xsd +75 -0
  246. package/bin/skill/pptx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  247. package/bin/skill/pptx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  248. package/bin/skill/pptx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  249. package/bin/skill/pptx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  250. package/bin/skill/pptx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  251. package/bin/skill/pptx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  252. package/bin/skill/pptx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  253. package/bin/skill/pptx/scripts/office/soffice.py +183 -0
  254. package/bin/skill/pptx/scripts/office/unpack.py +132 -0
  255. package/bin/skill/pptx/scripts/office/validate.py +111 -0
  256. package/bin/skill/pptx/scripts/office/validators/__init__.py +15 -0
  257. package/bin/skill/pptx/scripts/office/validators/base.py +847 -0
  258. package/bin/skill/pptx/scripts/office/validators/docx.py +446 -0
  259. package/bin/skill/pptx/scripts/office/validators/pptx.py +275 -0
  260. package/bin/skill/pptx/scripts/office/validators/redlining.py +247 -0
  261. package/bin/skill/pptx/scripts/thumbnail.py +289 -0
  262. package/bin/skill/rail-monitoring-plan/SKILL.md +147 -0
  263. package/bin/skill/rail-monitoring-plan/assets/plan-template.md +673 -0
  264. package/bin/skill/rail-monitoring-plan/references/elevated-line.md +319 -0
  265. package/bin/skill/rail-monitoring-plan/references/key-difficulties.md +216 -0
  266. package/bin/skill/rail-monitoring-plan/references/phase0-intake.md +169 -0
  267. package/bin/skill/rail-monitoring-plan/references/phase1-drafting.md +185 -0
  268. package/bin/skill/rail-monitoring-plan/references/phase2-internal-review.md +166 -0
  269. package/bin/skill/rail-monitoring-plan/references/review-checklist.md +140 -0
  270. package/bin/skill/rail-monitoring-plan/references/review-response-template.md +87 -0
  271. package/bin/skill/rail-monitoring-plan/references/scoping-and-pricing.md +214 -0
  272. package/bin/skill/rail-monitoring-plan/references/technical-standards.md +188 -0
  273. package/bin/skill/rail-monitoring-plan/references/toc-template-A.md +142 -0
  274. package/bin/skill/rail-monitoring-plan/references/toc-template-B.md +100 -0
  275. package/bin/skill/report-writing/SKILL.md +103 -0
  276. package/bin/skill/skill-creator/LICENSE.txt +202 -0
  277. package/bin/skill/skill-creator/SKILL.md +485 -0
  278. package/bin/skill/skill-creator/agents/analyzer.md +274 -0
  279. package/bin/skill/skill-creator/agents/comparator.md +202 -0
  280. package/bin/skill/skill-creator/agents/grader.md +223 -0
  281. package/bin/skill/skill-creator/assets/eval_review.html +146 -0
  282. package/bin/skill/skill-creator/eval-viewer/generate_review.py +471 -0
  283. package/bin/skill/skill-creator/eval-viewer/viewer.html +1325 -0
  284. package/bin/skill/skill-creator/references/schemas.md +430 -0
  285. package/bin/skill/skill-creator/scripts/__init__.py +0 -0
  286. package/bin/skill/skill-creator/scripts/aggregate_benchmark.py +401 -0
  287. package/bin/skill/skill-creator/scripts/generate_report.py +326 -0
  288. package/bin/skill/skill-creator/scripts/improve_description.py +247 -0
  289. package/bin/skill/skill-creator/scripts/package_skill.py +136 -0
  290. package/bin/skill/skill-creator/scripts/quick_validate.py +103 -0
  291. package/bin/skill/skill-creator/scripts/run_eval.py +310 -0
  292. package/bin/skill/skill-creator/scripts/run_loop.py +328 -0
  293. package/bin/skill/skill-creator/scripts/utils.py +47 -0
  294. package/bin/skill/slack-gif-creator/LICENSE.txt +202 -0
  295. package/bin/skill/slack-gif-creator/SKILL.md +254 -0
  296. package/bin/skill/slack-gif-creator/core/easing.py +234 -0
  297. package/bin/skill/slack-gif-creator/core/frame_composer.py +176 -0
  298. package/bin/skill/slack-gif-creator/core/gif_builder.py +269 -0
  299. package/bin/skill/slack-gif-creator/core/validators.py +136 -0
  300. package/bin/skill/slack-gif-creator/requirements.txt +4 -0
  301. package/bin/skill/standard-reference/SKILL.md +89 -0
  302. package/bin/skill/theme-factory/LICENSE.txt +202 -0
  303. package/bin/skill/theme-factory/SKILL.md +59 -0
  304. package/bin/skill/theme-factory/theme-showcase.pdf +0 -0
  305. package/bin/skill/theme-factory/themes/arctic-frost.md +19 -0
  306. package/bin/skill/theme-factory/themes/botanical-garden.md +19 -0
  307. package/bin/skill/theme-factory/themes/desert-rose.md +19 -0
  308. package/bin/skill/theme-factory/themes/forest-canopy.md +19 -0
  309. package/bin/skill/theme-factory/themes/golden-hour.md +19 -0
  310. package/bin/skill/theme-factory/themes/midnight-galaxy.md +19 -0
  311. package/bin/skill/theme-factory/themes/modern-minimalist.md +19 -0
  312. package/bin/skill/theme-factory/themes/ocean-depths.md +19 -0
  313. package/bin/skill/theme-factory/themes/sunset-boulevard.md +19 -0
  314. package/bin/skill/theme-factory/themes/tech-innovation.md +19 -0
  315. package/bin/skill/web-artifacts-builder/LICENSE.txt +202 -0
  316. package/bin/skill/web-artifacts-builder/SKILL.md +74 -0
  317. package/bin/skill/web-artifacts-builder/scripts/bundle-artifact.sh +54 -0
  318. package/bin/skill/web-artifacts-builder/scripts/init-artifact.sh +322 -0
  319. package/bin/skill/web-artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
  320. package/bin/skill/webapp-testing/LICENSE.txt +202 -0
  321. package/bin/skill/webapp-testing/SKILL.md +96 -0
  322. package/bin/skill/webapp-testing/examples/console_logging.py +35 -0
  323. package/bin/skill/webapp-testing/examples/element_discovery.py +40 -0
  324. package/bin/skill/webapp-testing/examples/static_html_automation.py +33 -0
  325. package/bin/skill/webapp-testing/scripts/with_server.py +106 -0
  326. package/bin/skill/xlsx/LICENSE.txt +30 -0
  327. package/bin/skill/xlsx/SKILL.md +292 -0
  328. package/bin/skill/xlsx/scripts/office/helpers/__init__.py +0 -0
  329. package/bin/skill/xlsx/scripts/office/helpers/merge_runs.py +199 -0
  330. package/bin/skill/xlsx/scripts/office/helpers/simplify_redlines.py +197 -0
  331. package/bin/skill/xlsx/scripts/office/pack.py +159 -0
  332. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  333. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  334. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  335. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  336. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  337. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  338. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  339. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  340. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  341. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  342. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  343. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  344. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  345. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  346. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  347. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  348. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  349. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  350. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  351. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  352. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  353. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  354. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  355. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  356. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  357. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  358. package/bin/skill/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  359. package/bin/skill/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  360. package/bin/skill/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  361. package/bin/skill/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  362. package/bin/skill/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  363. package/bin/skill/xlsx/scripts/office/schemas/mce/mc.xsd +75 -0
  364. package/bin/skill/xlsx/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  365. package/bin/skill/xlsx/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  366. package/bin/skill/xlsx/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  367. package/bin/skill/xlsx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  368. package/bin/skill/xlsx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  369. package/bin/skill/xlsx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  370. package/bin/skill/xlsx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  371. package/bin/skill/xlsx/scripts/office/soffice.py +183 -0
  372. package/bin/skill/xlsx/scripts/office/unpack.py +132 -0
  373. package/bin/skill/xlsx/scripts/office/validate.py +111 -0
  374. package/bin/skill/xlsx/scripts/office/validators/__init__.py +15 -0
  375. package/bin/skill/xlsx/scripts/office/validators/base.py +847 -0
  376. package/bin/skill/xlsx/scripts/office/validators/docx.py +446 -0
  377. package/bin/skill/xlsx/scripts/office/validators/pptx.py +275 -0
  378. package/bin/skill/xlsx/scripts/office/validators/redlining.py +247 -0
  379. package/bin/skill/xlsx/scripts/recalc.py +184 -0
  380. package/package.json +14 -0
@@ -0,0 +1,160 @@
1
+ ---
2
+ name: docx-generation
3
+ description: Word 文档生成技能。当需要将监测报告、技术方案或投标文件导出为正式 .docx 文件时加载此技能,获取排版规范、章节结构和工具调用指引。
4
+ ---
5
+
6
+ ## 适用场景
7
+
8
+ - 监测日报/周报/月报导出为 Word 文件
9
+ - 技术方案书定稿输出
10
+ - 投标技术标文件排版
11
+ - 工程勘察报告正式版导出
12
+ - 任何需要提交给业主、监理或政府审批的正式文档
13
+
14
+ ## 核心工作流
15
+
16
+ ```
17
+ 1. 内容准备 → 2. Markdown 排版 → 3. 调用 report_export 工具 → 4. 确认输出
18
+ ```
19
+
20
+ ### 步骤详解
21
+
22
+ **第一步:内容准备**
23
+ 确保报告内容已经过完整的编制流程(`technical_writer` 撰写 + `qa_reviewer` 审核通过)。未经审核的内容禁止直接导出。
24
+
25
+ **第二步:Markdown 排版**
26
+ 将最终审核通过的内容整理为标准 Markdown 格式。`report_export` 工具支持以下 Markdown 元素:
27
+
28
+ | 元素 | 语法 | 导出效果 |
29
+ | -------- | ---------- | -------------------------------- |
30
+ | 一级标题 | `# 标题` | Word 标题1(加粗,16pt) |
31
+ | 二级标题 | `## 标题` | Word 标题2(加粗,14pt) |
32
+ | 三级标题 | `### 标题` | Word 标题3(加粗,12pt) |
33
+ | 加粗 | `**文字**` | Word 加粗 |
34
+ | 无序列表 | `- 项目` | Word 项目符号列表 |
35
+ | 有序列表 | `1. 项目` | Word 编号列表 |
36
+ | 引用块 | `> 内容` | Word 引用段落(左缩进+灰色竖线) |
37
+ | 普通段落 | 直接文字 | Word 正文(宋体/仿宋,12pt) |
38
+
39
+ **第三步:调用工具**
40
+
41
+ ```
42
+ 调用 report_export 工具,传入参数:
43
+ - markdown: 完整的 Markdown 报告正文
44
+ - markdownPath: 可选,已有 Markdown 文件路径;适合把 output 中的草稿转成 Word
45
+ - title: 文档标题(将作为文件名)
46
+ - outputPath: 可选,指定输出路径;默认写入 output/runs/<session>/reports/
47
+ - referenceDoc: 可选,Pandoc --reference-doc 模板 .docx 路径
48
+ - luaFilter: 可选,Pandoc --lua-filter 路径
49
+ - engine: auto | pandoc | native,默认 auto
50
+ ```
51
+
52
+ 当用户要求“套 Word 模板”“按企业模板导出”“参考模板导出”时,优先使用 `referenceDoc`,由 Pandoc 生成正式 .docx。模板可来自企业自有模板,也可指向 `railwise-cn/pandoc_docx_template` fork 中的中文参考模板。未提供模板时,工具会使用 RAILWISE 原生 DOCX 生成作为兜底。
53
+
54
+ **第四步:确认输出**
55
+ 工具返回文件路径和统计信息后,向用户报告导出结果。
56
+
57
+ ## 排版规范(国企/甲方交付标准)
58
+
59
+ ### 文件命名
60
+
61
+ 格式:`[项目简称]-[文档类型]-[日期].docx`
62
+
63
+ 示例:
64
+
65
+ - `望京SOHO基坑-监测日报-20250301.docx`
66
+ - `地铁16号线-第三方监测月报-202502.docx`
67
+ - `中关村大厦-变形监测总结报告.docx`
68
+
69
+ ### 报告头部必备要素
70
+
71
+ 每份正式报告必须包含以下信息(作为 Markdown 正文开头):
72
+
73
+ ```markdown
74
+ # [项目全称] [报告类型]
75
+
76
+ **报告编号**:RW-[年份]-[项目编码]-[序号]
77
+ **委托单位**:[甲方名称]
78
+ **监测单位**:深圳市睿威智测科技有限公司
79
+ **编制日期**:[年月日]
80
+
81
+ ---
82
+ ```
83
+
84
+ ### 页面结构
85
+
86
+ | 部分 | 说明 |
87
+ | -------- | --------------------------------------------------------- |
88
+ | 封面信息 | 项目名称、报告类型、编号、日期、编制单位 |
89
+ | 目录提示 | 在正文前写一行 `> 注:正式提交时请在 Word 中插入自动目录` |
90
+ | 正文章节 | 按标题层级组织 |
91
+ | 附件说明 | 在报告末尾注明需附的图纸和数据表 |
92
+
93
+ ## 常见文档类型模板
94
+
95
+ ### 监测日报
96
+
97
+ ```markdown
98
+ # [项目名称] 第三方监测日报
99
+
100
+ **报告编号**:RW-2025-XXX-NNN
101
+ **监测日期**:2025年XX月XX日
102
+ **天气**:晴,气温15~22℃
103
+
104
+ ---
105
+
106
+ ## 1. 本日监测概况
107
+
108
+ [概况文字]
109
+
110
+ ## 2. 监测成果
111
+
112
+ ### 2.1 [监测项目]
113
+
114
+ [数据表格,使用 Markdown 表格]
115
+
116
+ ## 3. 预警情况
117
+
118
+ [预警或"本日无预警"]
119
+
120
+ ## 4. 结论与建议
121
+
122
+ [结论]
123
+ ```
124
+
125
+ ### 技术方案
126
+
127
+ ```markdown
128
+ # [项目名称] 自动化监测技术方案
129
+
130
+ ## 1. 项目概况
131
+
132
+ ## 2. 编制依据
133
+
134
+ ## 3. 监测内容与方法
135
+
136
+ ### 3.1 监测项目
137
+
138
+ ### 3.2 测点布设
139
+
140
+ ### 3.3 仪器设备
141
+
142
+ ## 4. 监测频率
143
+
144
+ ## 5. 预警值与控制标准
145
+
146
+ ## 6. 数据处理与信息化
147
+
148
+ ## 7. 质量保证措施
149
+
150
+ ## 8. 安全保障措施
151
+
152
+ ## 9. 人员与设备配置
153
+ ```
154
+
155
+ ## 注意事项
156
+
157
+ - `report_export` 未传入 `referenceDoc` 时会生成基础排版 Word;传入模板后,标题、正文、列表、表格等样式由 Pandoc reference-doc 控制
158
+ - 表格数据量大时(超过 20 行),建议使用 `excel_export` 工具导出 Excel 附件,报告正文仅保留摘要表
159
+ - 图表(趋势图等)需先用 `chart_generator` 工具生成 SVG,再由用户手动插入 Word
160
+ - 文件默认输出到 `output/runs/<session>/reports/`,可通过 `outputPath` 参数指定其他路径
@@ -0,0 +1,121 @@
1
+ ---
2
+ name: excel-operations
3
+ description: Excel 报表生成技能。当需要导出监测数据表、统计汇总表或多期对比表为 .xlsx 文件时加载此技能,获取数据组织规范和工具调用指引。
4
+ ---
5
+
6
+ ## 适用场景
7
+
8
+ - 监测日报/周报数据附表导出
9
+ - 多测点多期次变形数据汇总表
10
+ - 基坑支撑轴力统计表
11
+ - 地下水位观测记录表
12
+ - 测斜仪深层位移数据表
13
+ - 任何需要以 Excel 格式交付给甲方或存档的结构化数据
14
+
15
+ ## 可用工具
16
+
17
+ 系统提供两个 Excel 导出工具,按场景选择:
18
+
19
+ ### `excel_export`(通用导出)
20
+
21
+ 自由定义 Sheet 结构,适用于自定义格式的数据表。
22
+
23
+ 参数说明:
24
+
25
+ | 参数 | 类型 | 说明 |
26
+ |------|------|------|
27
+ | `sheets` | 数组 | 工作表列表,每个包含 name/headers/rows |
28
+ | `sheets[].name` | 字符串 | Sheet 名称,如"沉降监测"、"轴力统计" |
29
+ | `sheets[].headers` | 字符串数组 | 列标题 |
30
+ | `sheets[].rows` | 二维数组 | 数据行,元素可为字符串/数字/布尔/null |
31
+ | `sheets[].columnWidths` | 数字数组 | 可选,各列宽度(字符数) |
32
+ | `sheets[].freezeRow` | 数字 | 冻结前N行,默认1(冻结表头) |
33
+ | `title` | 字符串 | 文件名(不含扩展名) |
34
+ | `outputPath` | 字符串 | 可选,输出路径 |
35
+
36
+ ### `monitoring_table_export`(监测数据快捷导出)
37
+
38
+ 专为监测数据设计,直接传入测点数据即可生成带预警标识的规范化报表。
39
+
40
+ 参数说明:
41
+
42
+ | 参数 | 类型 | 说明 |
43
+ |------|------|------|
44
+ | `projectName` | 字符串 | 项目名称 |
45
+ | `monitoringType` | 枚举 | settlement/displacement/axial_force/water_level/inclinometer/convergence |
46
+ | `date` | 字符串 | 报表日期 YYYY-MM-DD |
47
+ | `points` | 数组 | 测点数据列表 |
48
+ | `warningValue` | 数字 | 可选,预警值 |
49
+ | `alarmValue` | 数字 | 可选,报警值 |
50
+
51
+ ## 数据组织规范
52
+
53
+ ### Sheet 命名
54
+
55
+ | 场景 | 推荐名称 |
56
+ |------|---------|
57
+ | 地表沉降 | 地表沉降监测数据 |
58
+ | 桩顶位移 | 桩顶水平位移数据 |
59
+ | 深层位移 | 测斜仪深层位移 |
60
+ | 支撑轴力 | 支撑轴力监测数据 |
61
+ | 地下水位 | 地下水位观测记录 |
62
+ | 管片收敛 | 隧道收敛量测数据 |
63
+ | 数据汇总 | 监测数据汇总表 |
64
+
65
+ ### 表头规范
66
+
67
+ 标准监测数据表的列顺序:
68
+
69
+ ```
70
+ 测点编号 | 断面位置 | 初始值(mm) | 上期值(mm) | 本期值(mm) | 本期变化量(mm) | 累计变化量(mm) | 变化速率(mm/d) | 预警值(mm) | 状态
71
+ ```
72
+
73
+ 关键要求:
74
+ - 数值列必须注明单位(mm、kN、m 等)
75
+ - 变化量保留小数点后1位
76
+ - 速率保留小数点后2位
77
+ - 超限数据在"状态"列标注"⚠️预警"或"🔴报警"
78
+
79
+ ### 多期数据对比表
80
+
81
+ 当需要展示多期次数据变化时,按以下结构组织:
82
+
83
+ ```
84
+ 测点编号 | 第1期(日期) | 第2期(日期) | ... | 第N期(日期) | 累计变化量 | 状态
85
+ ```
86
+
87
+ ## 典型调用示例
88
+
89
+ ### 沉降监测日报数据表
90
+
91
+ ```
92
+ 调用 excel_export,传入:
93
+ sheets: [{
94
+ name: "地表沉降监测数据",
95
+ headers: ["测点编号", "里程桩号", "初始值(mm)", "上期值(mm)", "本期值(mm)", "本期变化量(mm)", "累计变化量(mm)", "变化速率(mm/d)", "预警值(mm)", "状态"],
96
+ rows: [具体数据行],
97
+ freezeRow: 1
98
+ }]
99
+ title: "XX项目-沉降监测数据-20250301"
100
+ ```
101
+
102
+ ### 多项目汇总(多 Sheet)
103
+
104
+ ```
105
+ 调用 excel_export,传入多个 sheet:
106
+ sheets: [
107
+ { name: "沉降监测", headers: [...], rows: [...] },
108
+ { name: "位移监测", headers: [...], rows: [...] },
109
+ { name: "轴力监测", headers: [...], rows: [...] },
110
+ { name: "汇总统计", headers: [...], rows: [...] }
111
+ ]
112
+ title: "XX项目-监测数据周报-第12周"
113
+ ```
114
+
115
+ ## 注意事项
116
+
117
+ - 数据量大于 50 行时,优先使用 `excel_export` 而非在 Markdown 中写大表格
118
+ - 报告正文(Word)中只放摘要表(关键测点、最大值、超限点),完整数据以 Excel 附件形式交付
119
+ - `monitoring_table_export` 会自动根据预警值/报警值标注状态,优先使用
120
+ - Excel 文件默认输出到当前工作目录
121
+ - 工具生成的 .xlsx 文件兼容 WPS Office 和 Microsoft Excel
@@ -0,0 +1,151 @@
1
+ ---
2
+ name: frontend-design
3
+ description: 前端界面设计技能。当需要为监测平台、数据看板或内部管理系统设计 Web 前端界面时加载此技能,获取工程行业 UI 规范和组件设计指引。
4
+ ---
5
+
6
+ ## 适用场景
7
+
8
+ - 自动化监测云平台的数据看板页面
9
+ - 项目管理后台界面
10
+ - 监测预警大屏展示页面
11
+ - 移动端巡检记录 H5 页面
12
+ - 内部工具系统(数据上传、报表查看、审批流程)
13
+
14
+ ## 设计原则
15
+
16
+ ### 1. 工程行业 UI 特点
17
+
18
+ 工程监测平台不同于消费类产品,用户是项目经理、监测工程师和甲方负责人。核心诉求:
19
+
20
+ | 优先级 | 需求 | 设计要求 |
21
+ |--------|------|---------|
22
+ | 最高 | 数据清晰可读 | 大字号数据展示,表格行高充足,关键数据突出 |
23
+ | 高 | 预警醒目 | 红/橙/黄/绿四色预警体系贯穿全局 |
24
+ | 高 | 快速定位异常 | 异常数据置顶或高亮,无需翻页查找 |
25
+ | 中 | 操作简单 | 目标用户非技术人员,减少操作步骤 |
26
+ | 低 | 视觉美观 | 专业稳重风格,避免花哨动效 |
27
+
28
+ ### 2. 配色体系
29
+
30
+ #### 预警四色系统(全平台统一)
31
+
32
+ | 等级 | 颜色 | Hex | 含义 |
33
+ |------|------|-----|------|
34
+ | 正常 | 绿色 | `#16a34a` | 各项指标在安全范围内 |
35
+ | 提示 | 黄色 | `#ca8a04` | 达到控制值 70%,需关注 |
36
+ | 预警 | 橙色 | `#ea580c` | 达到控制值 85%,需加密观测 |
37
+ | 报警 | 红色 | `#dc2626` | 达到或超过控制值,启动应急预案 |
38
+
39
+ #### 基础配色
40
+
41
+ | 用途 | 色值 | 说明 |
42
+ |------|------|------|
43
+ | 主色 | `#2563eb` | 品牌蓝,导航栏、主按钮 |
44
+ | 背景 | `#f8fafc` | 浅灰白,页面底色 |
45
+ | 卡片 | `#ffffff` | 纯白,内容卡片 |
46
+ | 文字主色 | `#1e293b` | 深灰蓝,正文 |
47
+ | 文字辅色 | `#64748b` | 中灰,标签和说明文字 |
48
+ | 边框 | `#e2e8f0` | 浅灰,卡片和表格边框 |
49
+
50
+ ### 3. 字体与排版
51
+
52
+ ```
53
+ 标题: 16-20px, font-weight: 600, color: #1e293b
54
+ 数据大字: 28-36px, font-weight: 700, font-variant-numeric: tabular-nums
55
+ 正文: 14px, line-height: 1.6
56
+ 表格内容: 13-14px, font-variant-numeric: tabular-nums
57
+ 标签: 12px, color: #64748b
58
+ ```
59
+
60
+ 数值展示必须使用等宽数字(`tabular-nums`),确保列对齐。
61
+
62
+ ## 常用页面结构
63
+
64
+ ### 监测数据看板
65
+
66
+ ```
67
+ ┌─────────────────────────────────────────┐
68
+ │ 导航栏(项目名称 / 日期选择 / 预警统计) │
69
+ ├───────┬─────────────────────────────────┤
70
+ │ │ 统计卡片区(4列) │
71
+ │ 侧 │ ┌──────┬──────┬──────┬──────┐ │
72
+ │ 边 │ │正常XX │提示XX │预警XX │报警XX│ │
73
+ │ 栏 │ └──────┴──────┴──────┴──────┘ │
74
+ │ │ │
75
+ │ 项 │ 趋势图区域 │
76
+ │ 目 │ ┌─────────────────────────────┐│
77
+ │ 列 │ │ chart_generator SVG 嵌入 ││
78
+ │ 表 │ └─────────────────────────────┘│
79
+ │ │ │
80
+ │ │ 数据表格区域 │
81
+ │ │ ┌─────────────────────────────┐│
82
+ │ │ │ 测点 │ 本期 │ 累计 │ 状态 ││
83
+ │ │ │ ... │ ... │ ... │ ... ││
84
+ │ │ └─────────────────────────────┘│
85
+ └───────┴─────────────────────────────────┘
86
+ ```
87
+
88
+ ### 预警大屏
89
+
90
+ ```
91
+ ┌─────────────────────────────────────────┐
92
+ │ 顶部标题栏(项目名 + 实时时间 + 天气) │
93
+ ├─────────────┬───────────┬───────────────┤
94
+ │ 左侧面板 │ 中央地图 │ 右侧面板 │
95
+ │ 预警列表 │ 测点分布 │ 趋势图表 │
96
+ │ (按等级 │ (地图标点 │ (选中测点 │
97
+ │ 排序) │ 颜色=等级) │ 的时序曲线) │
98
+ ├─────────────┴───────────┴───────────────┤
99
+ │ 底部:滚动公告栏(最近预警事件 + 施工动态) │
100
+ └─────────────────────────────────────────┘
101
+ ```
102
+
103
+ ## 组件设计规范
104
+
105
+ ### 数据卡片
106
+
107
+ ```
108
+ 宽度:自适应(grid 等分)
109
+ 高度:100-120px
110
+ 内容:指标名称(12px灰色) + 数值(28-36px加粗) + 单位(14px) + 变化箭头
111
+ 边框:1px solid #e2e8f0,圆角 8px
112
+ 阴影:0 1px 3px rgba(0,0,0,0.1)
113
+ 预警态:左边框 4px 对应预警色
114
+ ```
115
+
116
+ ### 数据表格
117
+
118
+ ```
119
+ 表头:背景 #f1f5f9,font-weight: 600,粘性定位
120
+ 行高:40-44px(确保可点击)
121
+ 斑马纹:奇数行 #ffffff,偶数行 #f8fafc
122
+ 超限行:背景 #fef2f2(红色浅底),左边框 3px #dc2626
123
+ hover:背景 #eff6ff
124
+ ```
125
+
126
+ ### 状态标签
127
+
128
+ ```html
129
+ 正常:background: #dcfce7; color: #166534; border-radius: 4px; padding: 2px 8px;
130
+ 提示:background: #fef9c3; color: #854d0e;
131
+ 预警:background: #ffedd5; color: #9a3412;
132
+ 报警:background: #fee2e2; color: #991b1b; font-weight: 600;
133
+ ```
134
+
135
+ ## 技术选型建议
136
+
137
+ | 场景 | 推荐方案 |
138
+ |------|---------|
139
+ | 数据看板 | React + Tailwind CSS + Recharts |
140
+ | 预警大屏 | React + ECharts(地图能力) |
141
+ | 移动端 H5 | React + Ant Design Mobile |
142
+ | 内部工具 | React + Ant Design Pro |
143
+ | 快速原型 | HTML + Tailwind CDN |
144
+
145
+ ## 注意事项
146
+
147
+ - 监测平台用户多为 Windows + Chrome/Edge 环境,确保兼容性
148
+ - 大屏页面需适配 1920×1080 和 3840×2160 两种分辨率
149
+ - 表格数据可能很长(200+ 行),必须使用虚拟滚动或分页
150
+ - 图表使用 `chart_generator` 工具生成 SVG 后可直接嵌入页面
151
+ - 中文字体优先使用系统字体栈:`"PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif`
@@ -0,0 +1,90 @@
1
+ ---
2
+ name: humanizer
3
+ description: 工程文档人性化润色技能。当 AI 生成的报告、方案或标书读起来"太像机器写的"时加载此技能,将文本转化为资深工程师的行文风格。
4
+ ---
5
+
6
+ ## 适用场景
7
+
8
+ - AI 生成的监测报告读起来生硬、模板化
9
+ - 投标技术标文件需要体现"实战经验"而非"教科书腔"
10
+ - 甲方/专家评审倾向于"看起来像人写的"文档
11
+ - 需要在规范框架内增加工程判断和经验表述
12
+
13
+ ## 核心原则
14
+
15
+ ### 1. 消除 AI 典型痕迹
16
+
17
+ | AI 常见写法 | 工程师写法 |
18
+ |------------|-----------|
19
+ | 根据XXX规范,我们需要... | 依据XXX规范(第X.X.X条),本项目采用... |
20
+ | 综上所述,各项指标均在安全范围内 | 综合本期监测成果,各测点累计变化量均未达到预警值的70%,结构整体处于稳定状态 |
21
+ | 首先...其次...最后... | (直接按逻辑推进,不用这类过渡词堆砌) |
22
+ | 值得注意的是 | (删除,直接陈述事实) |
23
+ | 需要指出的是 | (删除,直接陈述事实) |
24
+ | 这表明/这说明 | 监测数据表明... / 计算结果显示... |
25
+
26
+ ### 2. 增加工程判断色彩
27
+
28
+ 资深工程师的文本特征:
29
+ - **带因果推理**:不只报数据,还解释"为什么"
30
+ - **有工况关联**:变形数据与施工进度关联分析
31
+ - **含经验判断**:在规范允许范围内给出倾向性建议
32
+ - **提风险预判**:基于当前趋势预判下一阶段可能的变化
33
+
34
+ 示例对比:
35
+
36
+ ❌ AI 风格:
37
+ > 本周期 DB-03 测点沉降量为 2.1mm,累计沉降量为 15.3mm,未超过预警值 30mm。
38
+
39
+ ✅ 工程师风格:
40
+ > DB-03 测点本周期沉降量 2.1mm,较上周期(1.8mm)略有增大,累计达 15.3mm。考虑到该测点位于基坑东南角,紧邻第三道支撑拆除区域,沉降加速与近期拆撑施工具有时空相关性。目前累计值占控制值的 51%,建议拆撑完成后加密观测 3 天,确认变形收敛后恢复正常频率。
41
+
42
+ ### 3. 术语自然化(非降级)
43
+
44
+ 保持专业性但避免"机械复读":
45
+ - 不需要每次都写"根据《城市轨道交通工程监测技术规范》GB 50911",首次引用后可简称"监测规范"
46
+ - 不需要每个数据后都括号注明单位,表头已标注的可省略正文重复
47
+ - 避免同一段落中反复出现"监测"二字(如"监测数据监测结果显示监测值正常")
48
+
49
+ ## 润色操作指南
50
+
51
+ ### 第一步:识别 AI 痕迹
52
+
53
+ 扫描文本中以下特征:
54
+ - 过度使用"首先/其次/最后/综上所述"
55
+ - 每段开头都是"根据XXX"
56
+ - 大量"值得注意的是"、"需要指出的是"、"具体来说"
57
+ - 同一句式反复出现(如每个测点的描述句型完全一致)
58
+ - 结论空洞(只说"在安全范围内"但不给具体判断)
59
+
60
+ ### 第二步:注入工程思维
61
+
62
+ 对每个分析段落检查:
63
+ - [ ] 是否关联了施工工况?("本周期正在进行第X层土方开挖")
64
+ - [ ] 是否有趋势判断?("沉降速率呈收敛趋势"而非仅报数值)
65
+ - [ ] 是否给出具体建议?("建议加密至1次/天"而非"建议加强监测")
66
+ - [ ] 超限数据是否分析了原因?("初步判断与XX因素有关,建议XX")
67
+
68
+ ### 第三步:句式变化
69
+
70
+ 同一份报告中描述不同测点时,主动变换句式:
71
+
72
+ ```
73
+ 测点A:DB-01 本期沉降 0.8mm,累计 12.3mm,变形趋于稳定。
74
+ 测点B:位于基坑北侧的 DB-05 累计沉降已达 22.1mm(控制值的 73.7%),本期变化量 1.5mm 为全场最大值,需重点关注。
75
+ 测点C:管线监测点 GX-02 本期无明显变化(0.1mm),与前3期一致,管线安全。
76
+ ```
77
+
78
+ 而非千篇一律的:
79
+ ```
80
+ DB-01 本期变化量为 0.8mm,累计变化量为 12.3mm,未超过控制值。
81
+ DB-05 本期变化量为 1.5mm,累计变化量为 22.1mm,未超过控制值。
82
+ GX-02 本期变化量为 0.1mm,累计变化量为 X.Xmm,未超过控制值。
83
+ ```
84
+
85
+ ## 禁止事项
86
+
87
+ - **不得编造数据**:润色只改文字表达,不改动任何数值
88
+ - **不得降低专业性**:不能为了"像人话"而删除必要的技术术语
89
+ - **不得添加主观情绪**:工程报告保持客观,不加"令人欣慰的是"等表达
90
+ - **不得违反规范要求**:行文风格可调整,但规范引用、精度要求、预警标准等硬性内容不得修改