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,319 @@
1
+ # 高架线路监测专题(高架区间 / 桥梁 / 出入场线)
2
+
3
+ 当**既有轨道交通结构为高架区间、出入场线高架段、车辆段高架引桥、或高架车站**时,本方案与地下盾构区间方案的差异是结构性的——**收敛**不再适用,**倾斜监测**升格为核心项;测点对象从环片改为墩柱/盖梁/梁端/承台。
4
+
5
+ > **触发条件**:从 `phase0-intake.md` 拿到的轨道线路图显示"高架区间""高架车站""出入场线高架""车辆段引桥"——立即加载本文件。
6
+ > **配套**:高架方案仍走模板 A(运营线路强制)。本文件**只替换/补充**与高架相关的章节段落,其它通用内容仍按 `technical-standards.md`、`phase1-drafting.md`。
7
+
8
+ ---
9
+
10
+ ## 一、高架 vs 地下:方案级差异速查
11
+
12
+ | 维度 | 地下盾构区间 | 高架区间 |
13
+ |---|---|---|
14
+ | **监测项目** | 沉降 + 水平位移 + **收敛**(环片)+ 巡视 | 沉降 + 水平位移 + **倾斜**(桥墩)+ 巡视 |
15
+ | **是否有收敛** | 必有 | **无**(误写=评审硬伤) |
16
+ | **新增项目** | — | **桥墩倾斜监测**(沿桥纵向 + 横向) |
17
+ | **沉降对象** | 道床 + 环片结构 | 桥墩(墩顶/墩底/承台)、盖梁、梁端、桥面道床(若铺) |
18
+ | **水平位移对象** | 环片 L 棱镜 | 墩顶/盖梁/梁端棱镜 |
19
+ | **基准网** | 隧道内对中架 | 桥下/桥外远端深基础、邻近建筑稳定墩柱 |
20
+ | **典型施工** | 顶管下穿、盾构穿越、基坑紧邻 | **桥梁还建、桥下基坑、管廊上跨、桥下道路、邻近建筑/桥桩** |
21
+ | **桥面道床** | 必有 | **不一定有**(辅桥常无)——必须现场调查 |
22
+ | **风/温干扰** | 微弱 | 显著(昼夜温差、风载) |
23
+ | **作业窗口** | 天窗点 + 隧道内 | 天窗点 + **登高 + 接触网约束** |
24
+ | **审查必问** | 收敛精度、环号 | **风险等级、辅桥道床、共用点、墩号** |
25
+
26
+ > **铁律**:高架方案**严禁**出现"环片收敛""管片螺栓""5 环 1 断面"等地下用语;起草前对模板 grep 一遍。
27
+
28
+ ---
29
+
30
+ ## 二、高架特有的资料索取项(叠加到 `phase0-intake.md` 清单)
31
+
32
+ | 资料 | 用途 | 缺失后果 |
33
+ |---|---|---|
34
+ | **桥梁设计总图(CAD)** | 1.2 桥梁结构、附图 | 墩号、桥跨、墩高、桥型无依据 |
35
+ | **桥梁结构计算书摘要** | 1.7、11.1 倾斜限值 | 倾斜报警值无项目化依据 |
36
+ | **桥墩明细表**(墩号 / 墩高 / 墩柱形式 / 桩长) | 1.2 / 5.1 测点布设 | 测点位置无法落到具体墩 |
37
+ | **桥面铺装与道床状态调查**(主桥/辅桥分别) | 3.2 监测项目裁剪 | 道床监测项目是否纳入判断错误 |
38
+ | **主辅桥关系图**(共线/独立/拼宽) | 1.3 / 5.1 共用点 | 共用点策略错误 |
39
+ | **桥梁近 1–3 年养护检测资料** | 1.7 区间沉降数据 | 工后稳定性无基线 |
40
+ | **桥下既有道路/河道/管线断面图** | 1.4 周边环境 | 重车荷载、车辆碰撞风险无法识别 |
41
+ | **接触网平面与停电计划** | 10 轨行区作业 | 登高 / 自动化布设无法排程 |
42
+ | **桥梁专项安评报告** | 1.8、11.1 | 倾斜/差异沉降限值无出处 |
43
+
44
+ ### 资料索取邮件话术(拼接在 phase0-intake.md 模板末尾)
45
+
46
+ ```
47
+ 【高架线路补充资料 / 必须项】
48
+ H1. 桥梁设计总图(含墩号、桥跨、墩高、桥型)
49
+ H2. 桥墩明细表(墩号 / 墩高 / 墩柱形式 / 承台尺寸 / 桩长)
50
+ H3. 桥面铺装与道床状态调查表(主桥/辅桥分别注明是否铺道床)
51
+ H4. 主辅桥关系图(共线 / 独立 / 拼宽)
52
+ H5. 桥梁近 1-3 年养护检测资料(含外观普查、墩柱倾斜历史值)
53
+ H6. 桥下既有道路 / 河道 / 管线断面图
54
+ H7. 接触网平面与本项目工期内的停电计划
55
+ H8. 桥梁专项的对轨道交通结构安全影响评估报告
56
+ ```
57
+
58
+ ### 关键调查项(评审会必问,方案前必须落实)
59
+
60
+ | 调查项 | 不调查的代价 | 调查方法 |
61
+ |---|---|---|
62
+ | **辅桥是否铺设道床** | 评审打回("调查辅桥是否有铺设道床情况" — 已有真实审查意见) | 现场踏勘 + 设计院书面回复 |
63
+ | **桥墩编号体系** | 测点统计表无法编排 | 设计院出图 + 现场核对 |
64
+ | **接触网热滑时间** | 监测设备撤场冲突,工后监测被迫中断 | 运营调度处书面确认 |
65
+ | **桥下重车通行路径** | 巡视项缺失 | 施工方书面方案 |
66
+ | **风险等级** | 频率与报警值定不下来("明确该项目风险等级,并按风险等级完善监测频率" — 真实审查意见) | 安评 + 业主签认 |
67
+
68
+ ---
69
+
70
+ ## 三、监测项目与仪器精度(高架版)
71
+
72
+ 替换 `technical-standards.md` §2 表格中的相应行,写章节 3.2 时直接套:
73
+
74
+ | 序号 | 监测项目 | 监测方式 | 仪器 | 精度 | 备注 |
75
+ |---|---|---|---|---|---|
76
+ | 1 | **桥墩沉降**(墩顶/墩底/承台) | 人工 | 电子水准仪 | ±0.3 mm/km | 主项 |
77
+ | 2 | **梁端沉降**(梁端与盖梁交接处) | 人工 | 电子水准仪 | ±0.3 mm/km | 简支梁必测 |
78
+ | 3 | **桥面/道床沉降**(若铺道床) | 人工 / 自动化 | 电子水准仪 / 全站仪 | ±0.3 mm/km / ±0.5 mm | 辅桥无道床时不设 |
79
+ | 4 | **墩顶水平位移** | 人工 / 自动化 | 全站仪+棱镜 | ±(0.6mm+1ppm·D) | 沿桥纵 / 横分别给出 |
80
+ | 5 | **梁端水平位移** | 人工 | 全站仪+棱镜 | 同上 | 跨缝相对位移 |
81
+ | 6 | **墩柱倾斜(推荐方法)** | 人工 | 全站仪 + 上下棱镜组 | 角度 ≤ 1/4000 | 沿桥纵/横两轴 |
82
+ | 6' | 墩柱倾斜(自动化备选) | 自动化 | 双轴倾角计 | ±0.001°(≈3.6″) | 振动环境慎用 |
83
+ | 7 | 梁缝相对位移(如有) | 人工 | 游标测缝针 | ±0.1 mm | 连续梁/简支梁交界 |
84
+ | 8 | 裂缝监测(如发现) | 人工 | 裂缝仪 / 测缝针 | ±0.1 mm | 巡视触发增设 |
85
+ | 9 | 振动监测(如打拔/桩基) | 自动化 | 拾振器+采集 | — | 钢板桩打拔阶段 |
86
+ | 10 | 巡视巡查 | 人工 | 目视+拍照 | — | **必须覆盖桥面、墩柱、梁底三面** |
87
+
88
+ > **不写"环片收敛"**——出现一次=方案被退回。
89
+ > **道床沉降是否设**:辅桥常无道床;评审会问"辅桥是否有铺道床情况",写之前查 H3。
90
+
91
+ ---
92
+
93
+ ## 四、测点布设原则(高架版,替换章节 5.1)
94
+
95
+ ### 4.1 布设密度
96
+ - **每个桥墩**:墩顶沉降 1 点 + 墩底/承台沉降 1 点 + 墩身倾斜上下两点(沿桥纵向 1 组,必要时横向 1 组)
97
+ - **每跨梁**:梁端两侧各 1 个沉降点(跨缝两侧成对,便于差异沉降)
98
+ - **盖梁**:每盖梁中部 1 个沉降点(连续梁/复杂支座必布)
99
+ - **桥面道床**(若有):参照地下道床方法,间距 6 m
100
+ - **辅桥**(独立结构):与主桥独立体系,密度同主桥
101
+ - **拼宽桥**:拼缝两侧成对布沉降,新增"拼缝相对位移"点
102
+
103
+ ### 4.2 测点埋设
104
+ - **墩顶/盖梁沉降**:钻 Φ14 mm × 70 mm 孔,植入不锈钢测钉,外露 2–3 mm;建议同侧加 L 型小棱镜便于全站仪复核
105
+ - **墩身倾斜**:墩身上下各贴反射片 / 钉测钉 1 对,竖向间距 ≥ 墩高 1/3,最小 3 m;全站仪测两点平面坐标差反推垂直度
106
+ - **倾角计(如选)**:表面螺栓+磁吸基座,沿桥纵向安装;引线沿墩柱固定至下方采集箱
107
+ - **梁端测点**:在梁端顶面或侧面贴 L 型棱镜;优先选背阳面避免温度漂移
108
+ - **保护**:墩顶/盖梁测点上方加防雨盖;墩身倾斜反射片加防晒膜
109
+ - **登高作业**:所有高架测点埋设必须用桥检车 / 蜘蛛人 / 高空作业车,写入章节 13.2 安全保障
110
+
111
+ ### 4.3 命名约定(示例,可直接套)
112
+ ```
113
+ 1#墩-顶沉降点:1D-CJD-T
114
+ 1#墩-底沉降点:1D-CJD-B
115
+ 1#墩-倾斜上点:1D-QX-U
116
+ 1#墩-倾斜下点:1D-QX-D
117
+ 1#墩-顶水平位移:1D-WY-T
118
+ 1跨-A 侧梁端沉降:1KA-LD
119
+ 辅桥 1#墩-顶沉降:F1D-CJD-T
120
+ ```
121
+
122
+ ---
123
+
124
+ ## 五、控制网建立(高架版,替换章节 4)
125
+
126
+ ### 5.1 平面控制网
127
+ - **首级控制点**:选在**桥外远端**深基础部位(建筑物外墙、远离施工的桥台),上下行/主辅桥分别成网;**不**布在桥墩本体(桥墩是被测对象)
128
+ - **工作基点**:可放置在远离施工 50 m 外的稳定桥墩底部或承台上,但需做长期联测核查
129
+ - **典型数量**:上下行高架共用一组首级网,控制点 6–8 个;工作基点 6–10 个
130
+ - **自动化测站**:选位高于桥面 1–2 m,通视主桥+辅桥两侧棱镜
131
+
132
+ ### 5.2 高程控制网
133
+ - **高程基准点**:埋设在桥外建筑物深基础或地表稳定桥台,**至少 4 个**组成闭合环
134
+ - **不**在桥面/墩顶设高程基准(桥面会因温度/重车产生 mm 级位移)
135
+ - **联测**:每月 1 次工作基点 ↔ 基准点联测;阶段切换时强制联测
136
+ - 一等水准引测至每墩工作基点;现场作业按 aBFFB 步序
137
+
138
+ ### 5.3 高架场地踏勘特殊事项
139
+ - 测站位置必须避开接触网带电区(≥ 1.5 m 安全距,方案中明文)
140
+ - 桥下若为河道,工作基点不可设在围堰外侧(围堰随基坑变形)
141
+ - 跨高速 / 城市主干道路段,工作基点避开行车线投影
142
+ - 测站到目标棱镜的距离 ≤ 200 m(高架开阔环境距离易过大)
143
+ - 避免日间高温时段(>11:00–15:00)视线穿过桥下高温空气区(折光)
144
+ - 风荷载:**6 级及以上风停测**,方案中明文写入
145
+
146
+ ---
147
+
148
+ ## 六、监测频率(高架版,替换章节 3.4)
149
+
150
+ ### 6.1 常规频率(二级监测等级默认)
151
+
152
+ | 监测方式 | 监测项目 | 常规频率 |
153
+ |---|---|---|
154
+ | 人工 | 桥墩沉降、水平位移、倾斜、桥面沉降(如有) | 1 次/7 天 |
155
+ | 巡视 | 桥墩 / 支座 / 梁端 / 桥面 | 1 次/7 天 |
156
+ | 控制网 | 平面、高程 | 1 次/月 |
157
+ | 工后阶段 | 全部 | 1 次/15 天(工后第 3 个月) |
158
+
159
+ ### 6.2 加密频率(高架专属敏感工序)
160
+
161
+ | 工序 | 自动化加密 | 人工加密 | 触发依据 |
162
+ |---|---|---|---|
163
+ | 桥下/桥侧基坑开挖至坑底 / 拆撑 | 12 次/天 | 1 次/3 天 | 卸荷反弹 |
164
+ | 桥下管廊顶管 / 注浆 | 12 次/天 | 1 次/3 天 | 既有荷载扰动 |
165
+ | 桥侧/桥下新建桥桩成孔 / 灌注 | 6–12 次/天 | 1 次/3 天 | 桩孔卸荷 + 振动 |
166
+ | 钢板桩 / 拉森桩 打拔 | 12 次/天 | 1 次/2 天 | 振动叠加 |
167
+ | 桥梁还建 卸荷 / 顶升 / 落梁 | 12 次/天 | 1 次/3 天 | 倾斜频率同步加密 |
168
+ | 桥下通道开挖 / 既有桥台拆除 | 12 次/天 | 1 次/3 天 | 临邻扰动 |
169
+ | 既有桥梁迁移 / 焊接合龙 | 6 次/天 | 1 次/2 天 | 温度 + 力系突变 |
170
+ | 防汛防台预警 | 暴雨前后 ≥1 次/h | 暴雨后 24 h 内人工复核 | 高架对风/雨敏感 |
171
+ | 出现报警 | 1 次/h 起 | 加密复核 | — |
172
+
173
+ ### 6.3 倾斜独立频率
174
+ 倾斜可与水平位移同次采集;但**关键工序**必须单独成行写"倾斜:1 次/3 天人工 + 自动化(若有)12 次/天",避免被合并隐藏。
175
+
176
+ > **频率表必须按施工阶段独立成表**,表名格式 `表 3.4-N 阶段 X:XXX 施工期间监测频率`。
177
+
178
+ ---
179
+
180
+ ## 七、报警值(高架版,替换 §11.1 表)
181
+
182
+ | 监测项目 | 速率预警 | 累计预警 | 累计报警 | 累计控制 | 出处 |
183
+ |---|---|---|---|---|---|
184
+ | 桥墩沉降 | ±0.5 mm/d | ±3 mm | ±5 mm | ±10 mm | DB33/T 1139-2017 / 安评 |
185
+ | 桥墩水平位移 | ±0.5 mm/d | ±3 mm | ±5 mm | ±10 mm | DB33/T 1139-2017 |
186
+ | 相邻墩**差异沉降** | — | ±3 mm | ±4 mm | **±5 mm** | 跨内/跨间,地铁保护管理手册 |
187
+ | 梁端差异沉降 | — | — | — | ±2 mm/m | GB 50157 / 项目安评 |
188
+ | **墩柱倾斜(垂直度变化)** | 1/4000 /d | 1/3000 | 1/2000 | **1/1000** | DB33/T 1139-2017 / 安评 |
189
+ | 梁缝相对位移 | — | — | — | 支座允许位移的 70 % | 桥梁设计文件 |
190
+ | 道床沉降(若有) | ±1 mm/d | ±5 mm | ±7 mm | ±10 mm | 同地下段 |
191
+
192
+ > 倾斜"1/N"表示墩高范围内偏斜值与墩高之比;例如墩高 8 m、控制值 1/1000 → 累计偏斜 ≤ 8 mm。
193
+ > 桥梁专项安评若给出更严的限值,**按安评执行**,方案中注明出处。
194
+
195
+ ---
196
+
197
+ ## 八、高架项目重难点(接 `key-difficulties.md` 灵感库)
198
+
199
+ ### G. 高架区间 / 桥梁结构监测(新增工况)
200
+
201
+ **可能的独特性**(用于 Step 1 卡片):
202
+ - 主辅桥共线/独立,结构刚度差异引发数据不同步
203
+ - 辅桥是否铺道床直接影响监测项目种类
204
+ - 桥面无连续路径,测站设置受限
205
+ - 接触网带电环境限制登高作业
206
+ - 温度/风/重车荷载导致 mm 级日变化干扰真值
207
+ - 简支梁 vs 连续梁结构差异引起的梁端位移特征不同
208
+ - 桥下河道/重车荷载附加扰动
209
+ - 桥墩高 / 桩长 / 桩端持力层(影响沉降敏感度)
210
+ - 接触网热滑时间窗约束自动化撤场
211
+
212
+ **典型项目化条目**:
213
+ - **辅桥未铺道床**:辅桥未铺道床(设计回复确认),沉降监测仅设结构(墩顶/盖梁)测点,桥面不设道床点(§3.2-2、附图 5.1-2)
214
+ - **共用点策略**:主辅桥距离 3.5 m,{N} 个墩为共用点(沉降 + 倾斜共点位);编号采用"主-辅"双标记(§5.1)
215
+ - **温度漂移**:高架昼夜温差达 15 ℃,原始数据采用"日内两次同时段采集"消除热效应;自动化时段固定 02:00 / 14:00(§6.6)
216
+ - **登高 + 接触网**:所有高架测点埋设安排在 24 h 停电天窗,登高人员持作业票,与接触网工区双签认(§10.2)
217
+ - **倾斜与差异沉降耦合**:墩柱倾斜与相邻墩差异沉降是同一变形两种表征,**报警以严者为准**(§11.1)
218
+ - **跨高速施工警示**:桥下为高速公路,测点埋设/巡视安排夜间封道窗口;巡视记录加入"重车碰撞撞击痕迹"专项(§7.1)
219
+
220
+ **应对措施样例**:
221
+ ```
222
+ (X)本项目高架段主桥已铺无砟道床,辅桥(距主桥 3.5 m)未铺道床,
223
+ 且辅桥为简支梁、主桥为连续梁,刚度与温度响应特征不一致。
224
+
225
+ 应对措施(X):
226
+ 1) 主桥沉降按"道床沉降 + 结构沉降"双层布设,辅桥仅设结构层(墩顶/盖梁);
227
+ 2) 主辅桥共线 {N} 个墩位采用"共用点"策略,沉降+倾斜共点位但分别编号;
228
+ 3) 数据处理时主辅桥分组评定,**报警不互相替代**,任一组触发即上报;
229
+ 4) 报告中固定列出"主桥同期 vs 辅桥同期"对比图(§6.6)。
230
+ ```
231
+
232
+ ---
233
+
234
+ ## 九、轨行区作业管理 — 高架差异(§10 增写)
235
+
236
+ 1. **风险点**:
237
+ - 高空坠物、临边坠落(防护绳/安全带)
238
+ - 接触网带电(**1.5 m 安全距离硬约束**)
239
+ - 列车通过时人员避让位置(避让台 / 桥下平台)
240
+ - 大风、雷电、雨雪天气(高架更敏感)
241
+
242
+ 2. **作业流程差异**:
243
+ - 申请作业令时必须注明"高架段"、"是否需停电挂地"、"风速实时报"
244
+ - 上桥通道(爬梯/检修门)权限单独审批
245
+ - 桥面照明(夜间作业)需自带且不得遮挡信号
246
+
247
+ 3. **章节 10 应增写 10.5 高架段专项作业要求**:天气阈值、上下桥通道、接触网安全距离、列车通过避让点
248
+
249
+ ---
250
+
251
+ ## 十、章节级高架定制清单(写方案时逐章对照)
252
+
253
+ | 章节 | 高架版需要的改动 |
254
+ |---|---|
255
+ | 1.1 工程概述 | 注明"高架区间"、跨度、墩高、梁型;桥号/墩号体系 |
256
+ | 1.2 轨道线路概况 | 区间名/上下行/桥墩编号起讫;**辅桥情况说明**;接触网形式 |
257
+ | 1.3 工程地质 | 桥墩桩基持力层、桩端阻力、桩侧摩阻力 |
258
+ | 1.4 周边环境 | 桥下道路、桥侧河流、重车通行路线,**接触网净距** |
259
+ | 1.5 施工筹划 | 加入桥桩、钢板桩、桥下基坑、卸土回填、合龙焊接等节点 |
260
+ | 1.6 监测等级 | 桥下基坑深度 H 与桥墩桩端距 D 的比值参与判定 |
261
+ | 1.7 区间沉降数据 | 改为"区间**桥墩**沉降数据";含倾斜竣工值(若有) |
262
+ | 1.8 安评 | 桥墩沉降/倾斜的安评预测值 |
263
+ | 3.2 监测项目 | **删除收敛行**,新增**倾斜监测**行;仪器选型相应调整 |
264
+ | 3.5 工作量 | 测点统计按"桥墩数 × 单墩点数"算 |
265
+ | 4 控制网 | 改为桥外/桥下地面布网;通视与天气约束写入 |
266
+ | 5 测点布设 | 沉降+位移+**倾斜**三类;桥面道床有/无两套方案 |
267
+ | 6 监测方法 | 6.5 新增"桥墩倾斜监测";**删除收敛节** |
268
+ | 7 巡视 | 按本文 §三-10 巡视项重写 |
269
+ | 10 轨行区 | 加 10.5 高架专项要求 |
270
+ | 11 报警值 | 用本文 §七 的报警值表 |
271
+ | 13 保障措施 | 加入风速实时监控、接触网安全、临边防护、登高资质 |
272
+
273
+ ---
274
+
275
+ ## 十一、提交前自检(在 `review-checklist.md` 基础上的高架增项)
276
+
277
+ - [ ] 监测项目表**无**"环片收敛",**有**"墩柱倾斜"
278
+ - [ ] 倾斜监测在 §3.2 / §5.1 / §6 / §11.1 四处全部出现且**自洽**
279
+ - [ ] 辅桥道床状态在 §3.2 / §5.1 / 评审回复中明确
280
+ - [ ] 主辅桥共用点策略在 §5.1 + 附图说明
281
+ - [ ] 控制网基准**不**设在桥本体,且高架场地踏勘段明确说明
282
+ - [ ] 倾斜限值给出"1/N"形式,并附墩高换算后的 mm 值
283
+ - [ ] 频率表中加密阶段包含桥梁还建/桥下基坑/桥桩等高架工序
284
+ - [ ] 巡视项目包含"桥面、墩柱、梁底三面 + 重车撞击痕迹"
285
+ - [ ] 登高作业安全章节(§13.2)覆盖蜘蛛人/桥检车/接触网停电
286
+ - [ ] 防汛防台章节明确高架对风/雨敏感且频率加密
287
+ - [ ] **风险等级**明确(一级/二级/三级),并与监测频率挂钩
288
+ - [ ] 接触网热滑时间窗在 §1.2 / §10 / §12.4 三处自洽
289
+
290
+ ---
291
+
292
+ ## 十二、附图要求(高架版)
293
+
294
+ | 编号 | 名称 | 必要性 |
295
+ |---|---|---|
296
+ | 附图 H1 | 桥梁纵立面图 + 与本项目位置关系 | 必有 |
297
+ | 附图 H2 | 桥墩布置平面图(标注墩号、共用点) | 必有 |
298
+ | 附图 H3 | **单墩监测点立面图**(标注沉降+倾斜+水平位移点) | **必有;评审最关注** |
299
+ | 附图 H4 | 主辅桥关系断面图(标注共用点 / 拼缝) | 主辅桥并存时必有 |
300
+ | 附图 H5 | 平面控制网图(基准点在桥外) | 必有 |
301
+ | 附图 H6 | 高程控制网图(基准在桥外深基础) | 必有 |
302
+ | 附图 H7 | 桥下施工对应位置专项断面图(基坑/管廊/桥桩) | 工程对应必有 |
303
+
304
+ ---
305
+
306
+ ## 十三、常见踩坑(高架专属)
307
+
308
+ | 坑 | 表现 | 规避 |
309
+ |---|---|---|
310
+ | **照搬地下方案** | 保留"环片收敛""管片螺栓"用语 | 起草前 grep 这些词,统一替换或删除 |
311
+ | **辅桥道床状态未调查** | 评审打回(真实案例见审查意见) | 方案前现场踏勘 + 设计院书面回复留档 |
312
+ | **倾斜监测无基线** | 报警跑不通 | 监测开始前 2 周内连续 3 次取初始倾斜值,与设计竣工垂直度核对 |
313
+ | **桥墩差异沉降未单列** | 评审会问"相邻墩怎么控" | §11 报警值表必须有"相邻墩差异沉降"行,控制值 ±5 mm |
314
+ | **接触网约束未写** | 自动化撤场计划被打乱 | §1.2 注明热滑时间,§10 注明安全距离 |
315
+ | **风荷载停测条件未写** | 数据可信度被质疑 | §13 质量保障加入"6 级及以上风停测"硬规则 |
316
+ | **首级控制点架在桥墩上** | 桥墩本身在变形,基准漂移 | 首级控制点必须在桥外稳定地坪或外部建筑 |
317
+ | **风险等级与频率未挂钩** | 评审打回(真实案例:自贸基地审查意见) | §1.6 明确等级 + §3.4 频率表标注按几级编制 |
318
+ | **桥面道床有无未交代** | 测点数与图不对应 | §1.2 / §5 统一交代主桥/辅桥铺设状态 |
319
+ | **桥面水平位移误设** | 上行案例评审意见"桥面只采用沉降监测,不进行水平位移监测" | 桥面无连续刚度时仅测沉降 |
@@ -0,0 +1,216 @@
1
+ # 监测重难点及应对措施 —— 诊断→推演→生成工作流
2
+
3
+ 这是初稿阶段最难、评审最敏感的章节。**不要直接抄条目库**。本文档给出一套思考工具,确保你写出的重难点能通过两条检验:
4
+
5
+ 1. ✅ **项目化**——只适用于本项目,换个项目这段话就不成立
6
+ 2. ✅ **可执行**——每条重难点都有具体可落地的应对措施,不是套话
7
+
8
+ ## 一、为什么这一章这么难写?
9
+
10
+ 九份方案的统计显示,**重难点章节是评审会议被点名最多的章节**。常见的差评关键词:
11
+
12
+ - "重难点应突出**本项目的重中之重**"(段塘大桥案例)
13
+ - "重难点应**针对项目特点**"(普遍意见)
14
+ - "应对措施应**对应解决问题**"(普遍)
15
+ - "条目**与其他项目雷同**"(隐性的最伤)
16
+
17
+ 根本原因是:写的人没真正消化资料,直接套用了一个万能条目库。
18
+
19
+ ## 二、诊断→推演→生成三步工作流
20
+
21
+ ### Step 1 诊断:列项目的"独特性卡片"(10 分钟)
22
+
23
+ 打开一张白纸(或新建笔记),按下面 7 个维度,**给本项目每个维度填一句话**。只填"和别的项目不一样"的部分:
24
+
25
+ | 维度 | 问自己 | 项目化举例 |
26
+ |---|---|---|
27
+ | **工程类型** | 是基坑还是顶管?是邻近还是下穿? | "顶管在 8 号线区间正上方平移 23 m,最小净距 4.2 m" |
28
+ | **既有线状态** | 运营 / 建设?运营多久? | "8 号线试运营仅 4 个月,结构变形未充分稳定" |
29
+ | **空间关系** | 平面/竖向投影、净距 | "新桥桩距盾构区间外皮 6.8 m" |
30
+ | **施工工序** | 哪些工序对轨道交通最敏感? | "钢板桩打拔同时进行的振动叠加" |
31
+ | **时间窗** | 工期紧 / 跨季节 / 接触网热滑 | "8 号线热滑时间在 9 月 15 日,监测设备 9 月 14 日前必须撤场" |
32
+ | **现场约束** | 通电、通网、轨行区作业、隧道病害 | "区间未开通,自动化设备无市电供应" |
33
+ | **协同约束** | 多方交叉、多个建设单位 | "本项目同时涉及运营分公司与建设分公司两套审批口径" |
34
+
35
+ **输出**:3–7 张独特性卡片。注意——**只记下与"常规项目"不同的点**。"既有线沉降稳定"这种话不要写(这是常态,不是难点)。
36
+
37
+ ### Step 2 推演:每张卡片推一个"如果不防会发生什么"(10 分钟)
38
+
39
+ 对每张卡片,问三连问:
40
+
41
+ 1. **会引发什么物理风险?**(沉降?水平位移?开裂?渗漏?)
42
+ 2. **会引发什么数据风险?**(基准点扰动?精度不够?阶段衔接?)
43
+ 3. **会引发什么管理风险?**(沟通滞后?审批冲突?资料缺失?)
44
+
45
+ 举例 —— **卡片"试运营仅 4 个月"** 的推演:
46
+
47
+ | 维度 | 推演结果 |
48
+ |---|---|
49
+ | 物理 | 既有结构工后变形未稳定,叠加本项目扰动可能放大 |
50
+ | 数据 | 基准点本身在沉降,传统"远端稳定点法"失效 |
51
+ | 管理 | 运营单位对数据敏感度极高,警情容忍度低 |
52
+
53
+ → 这就是**项目化重难点**的雏形。
54
+
55
+ ### Step 3 生成:把推演结果配对成"重难点 → 应对措施"对子
56
+
57
+ 每张卡片至少出一条"重难点-应对措施"配对,按下面格式写:
58
+
59
+ ```
60
+ (X){重难点描述:什么场景下,什么会被影响}。
61
+
62
+ 应对措施(X):{具体动作(含频率/数量/方法)+ 责任分工 + 验证方式}。
63
+ ```
64
+
65
+ 接续上例:
66
+
67
+ ```
68
+ (3)8 号线尚处试运营阶段(投运仅 4 个月),区间结构与道床的工后沉降未充分稳定,
69
+ 近 6 个月沉降速率仍达 0.08 mm/d,本项目顶管扰动可能与既有变形叠加放大。
70
+
71
+ 应对措施(3):
72
+ 1) 在监测范围两侧 30 m / 36 m 外各设 1 个"远端基准断面",
73
+ 每周通过水准联测核查工作基点稳定性,发现位移即重新引测;
74
+ 2) 报警值采用"绝对值 + 速率"双控,沉降速率达 0.5 mm/d(< 标准 1 mm/d)即预警,
75
+ 不等累计值触发;
76
+ 3) 监测数据每日 18:00 前同步运营分公司地保车间,
77
+ 并约定每周三现场会议复盘,建立快速响应通道。
78
+ ```
79
+
80
+ ---
81
+
82
+ ## 三、九份方案的"通用条目"——只作兜底使用
83
+
84
+ 下面这些是**任何项目都可保留**的条目,但**不要超过 2 条**,主菜必须是 Step 1-3 推演出来的项目化条目。否则会被评为"雷同"。
85
+
86
+ ### 通用兜底条目(任选 1–2 条)
87
+
88
+ 1. **数据连续性与阶段衔接**:项目监测周期跨多个施工阶段,前后阶段数据衔接(含控制点选取和高程基准点联测)十分重要。
89
+ - 应对:分阶段实施时,争取不移动全站仪;分阶段临时基准点考虑用远处搭接点替代;保证不新增或移动测点。
90
+
91
+ 2. **狭长空间组网难点**:监测范围较长,工作基点和监测点布设于地铁狭长空间,隧道存在曲率,自动化仪器组网在仪器搭接和网形质量方面存在困难。
92
+ - 应对:全站仪间多组搭接点布设在隧道两侧多个位置,通过控制测量保证点位坐标准确。
93
+
94
+ 3. **多方协同复杂性**:项目可能横跨建设、运营多阶段,涉及多部门,现场交底与测点保护信息联络反馈较为复杂。
95
+ - 应对:建立多方协同联络机制(应急联络名单),根据进度动态更新。
96
+
97
+ ---
98
+
99
+ ## 四、按工况分类的"项目化条目灵感库"
100
+
101
+ 下面按工况列出**典型独特性卡片 + 配套应对措施**,**仅供 Step 1 灵感参考**,**不要照抄**。
102
+
103
+ ### A. 基坑开挖(紧邻既有线)
104
+
105
+ **可能的独特性**:
106
+ - 基坑深度 H 与净距 D 的比值(H/D 越大风险越高)
107
+ - 围护形式(地连墙 / 钻孔桩 / SMW 工法 / 钢板桩)的差异
108
+ - 重车停放位置是否在轨道交通投影内
109
+ - 与既有车站附属(出入口、风亭)位置关系
110
+
111
+ **典型条目**:
112
+ - 开挖至坑底 / 换撑 / 拆撑节点 → 加密频率 12 次/天 + 1 次/3 天人工
113
+ - 重车停放位置标注 → 章节 1.4 附图 + 章节 7 巡视项加入"重车位置确认"
114
+ - 围护抽测 → 增设围护变形抽测点(注明频率与位置)
115
+
116
+ ### B. 顶管施工
117
+
118
+ **可能的独特性**:
119
+ - 顶管与轨道是正穿、斜穿、还是上跨/下穿
120
+ - 顶管长度、口径、覆土厚度
121
+ - 是否有工作井、工作井距既有结构距离
122
+ - 注浆置换工艺
123
+
124
+ **典型条目**:
125
+ - 顶进至关键轴线 → 加密自动化 1 次/2 h
126
+ - 注浆置换阶段最敏感 → 增设静力水准
127
+ - 工作井邻近既有结构 → 增设工作井四周抽测点
128
+
129
+ ### C. 综合管廊 / 上跨工程
130
+
131
+ **可能的独特性**:
132
+ - 卸土回弹效应 vs 重车荷载
133
+ - 工作井(沉井)施工的局部沉降
134
+
135
+ **典型条目**:
136
+ - 卸土阶段与重车阶段分别加密
137
+ - 工作井四周抽测
138
+ - 沿管廊轴线投影分段监测
139
+
140
+ ### D. 桥梁迁建 / 桥桩施工
141
+
142
+ **可能的独特性**:
143
+ - 钢板桩打拔、新桥桩施工、桥下通道开挖、隧道上方平移多个工序叠加
144
+ - 围堰、河坎钢板桩等外部结构
145
+
146
+ **典型条目**:
147
+ - 每个工序自动化加密到 12 次/天
148
+ - 外部抽测项目:围堰外水位、围堰位移、桥桩水平位移、护岸沉降
149
+ - 老桥迁移阶段补充围堰、河坎钢板桩变形监测点
150
+
151
+ ### E. 盾构区间施工(建设期)
152
+
153
+ **可能的独特性**:
154
+ - 区间未通电通网,自动化设备供电供网困难
155
+ - 道床未铺设时无法埋设测钉
156
+ - 多方交叉施工,机械材料堆放凌乱
157
+ - 既有线热滑时间制约监测方法选择
158
+
159
+ **典型条目**:
160
+ - 临时电力 / 网络线路 + 防破坏交底
161
+ - 道床未完成区段先用临时点位,待铺道床后正式埋点
162
+ - 错峰作业 + 每日协调机制
163
+ - 热滑期间切换全人工监测,不使用自动化
164
+
165
+ ### G. 高架区间 / 桥梁结构监测
166
+
167
+ 详见 `elevated-line.md` §八。要点速查:
168
+
169
+ **可能的独特性**:
170
+ - 主辅桥共线/独立、辅桥有无道床、温度/风/重车干扰、接触网带电、登高约束、桥下卸荷工序敏感、热滑时间窗
171
+
172
+ **典型条目方向**:
173
+ - 辅桥道床状态前置调查与监测项目裁剪
174
+ - 主辅桥共用点策略与编号双标记
175
+ - 温度漂移用日内同时段两次采集消除
176
+ - 倾斜与差异沉降耦合,报警以严者为准
177
+ - 风荷载 6 级及以上停测硬规则
178
+ - 首级控制点设在桥外,不在桥本体
179
+
180
+ 详细应对措施模板见 `elevated-line.md`。
181
+
182
+ ---
183
+
184
+ ### F. 邻近建筑 / 地下结构施工
185
+
186
+ **可能的独特性**:
187
+ - 既有线运营多年,工后稳定,新增扰动需识别趋势
188
+ - 多地块交叉施工,叠加效应
189
+
190
+ **典型条目**:
191
+ - 重视长期工后监测数据作基线
192
+ - 分地块、分阶段评估叠加变形
193
+ - 增设远端稳定参考断面(监测区外 30 m / 36 m 各 1 点)
194
+
195
+ ---
196
+
197
+ ## 五、自检:写完后用这 5 个问题考自己
198
+
199
+ 把写好的重难点章节复制到一张纸上,逐条问:
200
+
201
+ 1. **替换检验**:把"本项目"换成"段塘大桥""6 号线市中医院""通途西路"等其他项目名,**这段话是否仍然成立**?
202
+ - 仍然成立 → 重写!这是套话
203
+ - 不成立 → ✅ 项目化
204
+
205
+ 2. **数据检验**:每条重难点是否含至少 1 个**具体数字**?(净距 X m、速率 X mm/d、阶段时长 X 个月、净距比 H/D = X)
206
+ - 没有 → 增加项目数据
207
+
208
+ 3. **可验证检验**:应对措施是否**别人能据此检查**?("加强沟通" ❌ vs "每周三 10:00 现场协调会" ✅)
209
+
210
+ 4. **对应检验**:重难点 (N) 和应对措施 (N) 是否**一一对应**?
211
+ - 措施有,难点没列 → 删
212
+ - 难点列了,措施没写 → 补
213
+
214
+ 5. **数量检验**:重难点是否在 **5–8 条**之间?
215
+ - < 5 条 → 显得敷衍
216
+ - > 8 条 → 显得无主次