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,135 @@
1
+ # Live Documentation Sources
2
+
3
+ This file contains WebFetch URLs for fetching current information from platform.claude.com and Agent SDK repositories. Use these when users need the latest data that may have changed since the cached content was last updated.
4
+
5
+ ## When to Use WebFetch
6
+
7
+ - User explicitly asks for "latest" or "current" information
8
+ - Cached data seems incorrect
9
+ - User asks about features not covered in cached content
10
+ - User needs specific API details or examples
11
+
12
+ ## Claude API Documentation URLs
13
+
14
+ ### Models & Pricing
15
+
16
+ | Topic | URL | Extraction Prompt |
17
+ | --------------- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
18
+ | Models Overview | `https://platform.claude.com/docs/en/about-claude/models/overview.md` | "Extract current model IDs, context windows, and pricing for all Claude models" |
19
+ | Migration Guide | `https://platform.claude.com/docs/en/about-claude/models/migration-guide.md` | "Extract breaking changes, deprecated parameters, and per-model migration steps when moving to a newer Claude model" |
20
+ | Pricing | `https://platform.claude.com/docs/en/pricing.md` | "Extract current pricing per million tokens for input and output" |
21
+
22
+ ### Core Features
23
+
24
+ | Topic | URL | Extraction Prompt |
25
+ | ----------------- | ---------------------------------------------------------------------------- | -------------------------------------------------------------------------------------- |
26
+ | Extended Thinking | `https://platform.claude.com/docs/en/build-with-claude/extended-thinking.md` | "Extract extended thinking parameters, budget_tokens requirements, and usage examples" |
27
+ | Adaptive Thinking | `https://platform.claude.com/docs/en/build-with-claude/adaptive-thinking.md` | "Extract adaptive thinking setup, effort levels, and Claude Opus 4.8 usage examples" |
28
+ | Effort Parameter | `https://platform.claude.com/docs/en/build-with-claude/effort.md` | "Extract effort levels, cost-quality tradeoffs, and interaction with thinking" |
29
+ | Tool Use | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/overview.md` | "Extract tool definition schema, tool_choice options, and handling tool results" |
30
+ | Streaming | `https://platform.claude.com/docs/en/build-with-claude/streaming.md` | "Extract streaming event types, SDK examples, and best practices" |
31
+ | Prompt Caching | `https://platform.claude.com/docs/en/build-with-claude/prompt-caching.md` | "Extract cache_control usage, pricing benefits, and implementation examples" |
32
+
33
+ ### Media & Files
34
+
35
+ | Topic | URL | Extraction Prompt |
36
+ | ----------- | ---------------------------------------------------------------------- | ----------------------------------------------------------------- |
37
+ | Vision | `https://platform.claude.com/docs/en/build-with-claude/vision.md` | "Extract supported image formats, size limits, and code examples" |
38
+ | PDF Support | `https://platform.claude.com/docs/en/build-with-claude/pdf-support.md` | "Extract PDF handling capabilities, limits, and examples" |
39
+
40
+ ### API Operations
41
+
42
+ | Topic | URL | Extraction Prompt |
43
+ | ---------------- | --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
44
+ | Batch Processing | `https://platform.claude.com/docs/en/build-with-claude/batch-processing.md` | "Extract batch API endpoints, request format, and polling for results" |
45
+ | Files API | `https://platform.claude.com/docs/en/build-with-claude/files.md` | "Extract file upload, download, and referencing in messages, including supported types and beta header" |
46
+ | Token Counting | `https://platform.claude.com/docs/en/build-with-claude/token-counting.md` | "Extract token counting API usage and examples" |
47
+ | Rate Limits | `https://platform.claude.com/docs/en/api/rate-limits.md` | "Extract current rate limits by tier and model" |
48
+ | Errors | `https://platform.claude.com/docs/en/api/errors.md` | "Extract HTTP error codes, meanings, and retry guidance" |
49
+
50
+ ### Tools
51
+
52
+ | Topic | URL | Extraction Prompt |
53
+ | -------------- | -------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
54
+ | Code Execution | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/code-execution-tool.md` | "Extract code execution tool setup, file upload, container reuse, and response handling" |
55
+ | Computer Use | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/computer-use.md` | "Extract computer use tool setup, capabilities, and implementation examples" |
56
+ | Bash Tool | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/bash-tool.md` | "Extract bash tool schema, reference implementation, and security considerations" |
57
+ | Text Editor | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/text-editor-tool.md` | "Extract text editor tool commands, schema, and reference implementation" |
58
+ | Memory Tool | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/memory-tool.md` | "Extract memory tool commands, directory structure, and implementation patterns" |
59
+ | Tool Search | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/tool-search-tool.md` | "Extract tool search setup, when to use, and cache interaction" |
60
+ | Programmatic Tool Calling | `https://platform.claude.com/docs/en/agents-and-tools/tool-use/programmatic-tool-calling.md` | "Extract PTC setup, script execution model, and tool invocation from code" |
61
+ | Skills | `https://platform.claude.com/docs/en/agents-and-tools/skills.md` | "Extract skill folder structure, SKILL.md format, and loading behavior" |
62
+
63
+ ### Advanced Features
64
+
65
+ | Topic | URL | Extraction Prompt |
66
+ | ------------------ | ----------------------------------------------------------------------------- | --------------------------------------------------- |
67
+ | Structured Outputs | `https://platform.claude.com/docs/en/build-with-claude/structured-outputs.md` | "Extract output_config.format usage and schema enforcement" |
68
+ | Compaction | `https://platform.claude.com/docs/en/build-with-claude/compaction.md` | "Extract compaction setup, trigger config, and streaming with compaction" |
69
+ | Context Editing | `https://platform.claude.com/docs/en/build-with-claude/context-editing.md` | "Extract context editing thresholds, what gets cleared, and configuration" |
70
+ | Citations | `https://platform.claude.com/docs/en/build-with-claude/citations.md` | "Extract citation format and implementation" |
71
+ | Context Windows | `https://platform.claude.com/docs/en/build-with-claude/context-windows.md` | "Extract context window sizes and token management" |
72
+
73
+ ### Managed Agents
74
+
75
+ Use these when a managed-agents binding, behavior, or wire-level detail isn't covered in the cached `shared/managed-agents-*.md` concept files or in `{lang}/managed-agents/README.md`.
76
+
77
+ | Topic | URL | Extraction Prompt |
78
+ | --------------------- | -------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
79
+ | Overview | `https://platform.claude.com/docs/en/managed-agents/overview.md` | "Extract the high-level architecture and how agents/sessions/environments/vaults fit together" |
80
+ | Quickstart | `https://platform.claude.com/docs/en/managed-agents/quickstart.md` | "Extract the minimal end-to-end agent → environment → session → stream code path" |
81
+ | Agent Setup | `https://platform.claude.com/docs/en/managed-agents/agent-setup.md` | "Extract agent create/update/list-versions/archive lifecycle and parameters" |
82
+ | Define Outcomes | `https://platform.claude.com/docs/en/managed-agents/define-outcomes.md` | "Extract outcome definitions, evaluation hooks, and success criteria configuration" |
83
+ | Sessions | `https://platform.claude.com/docs/en/managed-agents/sessions.md` | "Extract session lifecycle, status transitions, idle/terminated semantics, and resume rules" |
84
+ | Environments | `https://platform.claude.com/docs/en/managed-agents/environments.md` | "Extract environment config (cloud/networking), management endpoints, and reuse model" |
85
+ | Self-Hosted Sandboxes | `https://platform.claude.com/docs/en/managed-agents/self-hosted-sandboxes.md` | "Extract config:{type:self_hosted}, ANTHROPIC_ENVIRONMENT_KEY, EnvironmentWorker.run/run_one, beta_agent_toolset, ant beta:worker poll/run, webhook-driven wake" |
86
+ | Self-Hosted Sandboxes — Security | `https://platform.claude.com/docs/en/managed-agents/self-hosted-sandboxes-security.md` | "Extract what the customer owns (hardening, egress, key custody, trust boundaries) vs what Anthropic cannot do" |
87
+ | Events and Streaming | `https://platform.claude.com/docs/en/managed-agents/events-and-streaming.md` | "Extract event stream types, stream-first ordering, reconnect/dedupe, and steering patterns" |
88
+ | Tools | `https://platform.claude.com/docs/en/managed-agents/tools.md` | "Extract built-in toolset, custom tool definitions, and tool result wire format" |
89
+ | Files | `https://platform.claude.com/docs/en/managed-agents/files.md` | "Extract file upload, mount paths, session resources, and listing/downloading session outputs" |
90
+ | Permission Policies | `https://platform.claude.com/docs/en/managed-agents/permission-policies.md` | "Extract permission policy types (allow/deny/confirm) and per-tool config" |
91
+ | Multi-Agent | `https://platform.claude.com/docs/en/managed-agents/multi-agent.md` | "Extract multi-agent composition patterns, sub-agent invocation, and result handoff" |
92
+ | Observability | `https://platform.claude.com/docs/en/managed-agents/observability.md` | "Extract logging, tracing, and usage telemetry exposed by managed agents" |
93
+ | Webhooks | `https://platform.claude.com/docs/en/managed-agents/webhooks.md` | "Extract webhook endpoint registration, HMAC signature verification, supported event types, and delivery semantics" |
94
+ | GitHub | `https://platform.claude.com/docs/en/managed-agents/github.md` | "Extract github_repository resource shape, multi-repo mounting, and token rotation" |
95
+ | MCP Connector | `https://platform.claude.com/docs/en/managed-agents/mcp-connector.md` | "Extract MCP server declaration on agents and vault-based credential injection at session" |
96
+ | Vaults | `https://platform.claude.com/docs/en/managed-agents/vaults.md` | "Extract vault create, credential add/rotate, OAuth refresh shape, and archive" |
97
+ | Skills | `https://platform.claude.com/docs/en/managed-agents/skills.md` | "Extract skill packaging and loading model for managed agents" |
98
+ | Memory | `https://platform.claude.com/docs/en/managed-agents/memory.md` | "Extract memory resource shape, scoping, and lifecycle" |
99
+ | Onboarding | `https://platform.claude.com/docs/en/managed-agents/onboarding.md` | "Extract first-run setup, prerequisites, and account/region requirements" |
100
+ | Cloud Containers | `https://platform.claude.com/docs/en/managed-agents/cloud-containers.md` | "Extract cloud container runtime, image config, and network/storage knobs" |
101
+ | Migration | `https://platform.claude.com/docs/en/managed-agents/migration.md` | "Extract migration paths from earlier APIs/preview shapes to GA managed agents" |
102
+
103
+ ### Anthropic CLI
104
+
105
+ The `ant` CLI provides terminal access to the Claude API. Every API resource is exposed as a subcommand. It is one convenient way to create agents, environments, sessions, and other resources from version-controlled YAML, and to inspect responses interactively.
106
+
107
+ | Topic | URL | Extraction Prompt |
108
+ | ------------- | ------------------------------------------------------- | -------------------------------------------------------------------------------------------------- |
109
+ | Anthropic CLI | `https://platform.claude.com/docs/en/api/sdks/cli.md` | "Extract CLI install, authentication, command structure, and the beta:agents/environments/sessions commands" |
110
+
111
+ ---
112
+
113
+ ## Claude API SDK Repositories
114
+
115
+ WebFetch these when a binding (class, method, namespace, field) isn't covered in the cached `{lang}/` skill files or in the managed-agents docs above. The SDKs include beta managed-agents support for `/v1/agents`, `/v1/sessions`, `/v1/environments`, and related resources — search the repo for `BetaManagedAgents`, `beta.agents`, `beta.sessions`, or the equivalent namespace for that language.
116
+
117
+ | SDK | URL | Extraction Prompt |
118
+ | ---------- | -------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
119
+ | Python | `https://github.com/anthropics/anthropic-sdk-python` | "Extract beta managed-agents namespaces, classes, and method signatures (`client.beta.agents`, `client.beta.sessions`)" |
120
+ | TypeScript | `https://github.com/anthropics/anthropic-sdk-typescript` | "Extract beta managed-agents namespaces, classes, and method signatures (`client.beta.agents`, `client.beta.sessions`)" |
121
+ | Java | `https://github.com/anthropics/anthropic-sdk-java` | "Extract beta managed-agents classes, builders, and method signatures (`client.beta().agents()`, `BetaManagedAgents*`)" |
122
+ | Go | `https://github.com/anthropics/anthropic-sdk-go` | "Extract beta managed-agents types and method signatures (`client.Beta.Agents`, `BetaManagedAgents*` event types)" |
123
+ | Ruby | `https://github.com/anthropics/anthropic-sdk-ruby` | "Extract beta managed-agents methods and parameter shapes (`client.beta.agents`, `client.beta.sessions`)" |
124
+ | C# | `https://github.com/anthropics/anthropic-sdk-csharp` | "Extract beta managed-agents classes and method signatures (NuGet package, `BetaManagedAgents*` types)" |
125
+ | PHP | `https://github.com/anthropics/anthropic-sdk-php` | "Extract beta managed-agents classes and method signatures (`$client->beta->agents`, `BetaManagedAgents*` params)" |
126
+
127
+ ---
128
+
129
+ ## Fallback Strategy
130
+
131
+ If WebFetch fails (network issues, URL changed):
132
+
133
+ 1. Use cached content from the language-specific files (note the cache date)
134
+ 2. Inform user the data may be outdated
135
+ 3. Suggest they check platform.claude.com or the GitHub repos directly
@@ -0,0 +1,378 @@
1
+ # Managed Agents — Endpoint Reference
2
+
3
+ All endpoints require `x-api-key` and `anthropic-version: 2023-06-01` headers. Managed Agents endpoints additionally require the `anthropic-beta` header.
4
+
5
+ ## Beta Headers
6
+
7
+ ```
8
+ anthropic-beta: managed-agents-2026-04-01
9
+ ```
10
+
11
+ The SDK adds this header automatically for all `client.beta.{agents,environments,sessions,vaults,memory_stores}.*` calls. Skills endpoints use `skills-2025-10-02`; Files endpoints use `files-api-2025-04-14`.
12
+
13
+ ---
14
+
15
+ ## SDK Method Reference
16
+
17
+ All resources are under the `beta` namespace. Python and TypeScript share identical method names.
18
+
19
+ | Resource | Python / TypeScript (`client.beta.*`) | Go (`client.Beta.*`) |
20
+ | --- | --- | --- |
21
+ | Agents | `agents.create` / `retrieve` / `update` / `list` / `archive` | `Agents.New` / `Get` / `Update` / `List` / `Archive` |
22
+ | Agent Versions | `agents.versions.list` | `Agents.Versions.List` |
23
+ | Environments | `environments.create` / `retrieve` / `update` / `list` / `delete` / `archive` | `Environments.New` / `Get` / `Update` / `List` / `Delete` / `Archive` |
24
+ | Environment Work (self-hosted) | `environments.work.poller` / `stats` / `stop` | See `shared/managed-agents-self-hosted-sandboxes.md` |
25
+ | Sessions | `sessions.create` / `retrieve` / `update` / `list` / `delete` / `archive` | `Sessions.New` / `Get` / `Update` / `List` / `Delete` / `Archive` |
26
+ | Session Events | `sessions.events.list` / `send` / `stream` | `Sessions.Events.List` / `Send` / `StreamEvents` |
27
+ | Session Threads | `sessions.threads.list` / `retrieve` / `archive`; `sessions.threads.events.list` / `stream` | `Sessions.Threads.List` / `Get` / `Archive`; `Sessions.Threads.Events.List` / `StreamEvents` |
28
+ | Session Resources | `sessions.resources.add` / `retrieve` / `update` / `list` / `delete` | `Sessions.Resources.Add` / `Get` / `Update` / `List` / `Delete` |
29
+ | Vaults | `vaults.create` / `retrieve` / `update` / `list` / `delete` / `archive` | `Vaults.New` / `Get` / `Update` / `List` / `Delete` / `Archive` |
30
+ | Credentials | `vaults.credentials.create` / `retrieve` / `update` / `list` / `delete` / `archive` / `mcp_oauth_validate` | `Vaults.Credentials.New` / `Get` / `Update` / `List` / `Delete` / `Archive` / `McpOauthValidate` |
31
+ | Memory Stores | `memory_stores.create` / `retrieve` / `update` / `list` / `delete` / `archive` | `MemoryStores.New` / `Get` / `Update` / `List` / `Delete` / `Archive` |
32
+ | Memories | `memory_stores.memories.create` / `retrieve` / `update` / `list` / `delete` | `MemoryStores.Memories.New` / `Get` / `Update` / `List` / `Delete` |
33
+ | Memory Versions | `memory_stores.memory_versions.list` / `retrieve` / `redact` | `MemoryStores.MemoryVersions.List` / `Get` / `Redact` |
34
+
35
+ **Naming quirks to watch for:**
36
+ - Agents and Session Threads have **no delete** — only `archive`. Archive is **permanent**: the agent becomes read-only, new sessions cannot reference it, and there is no unarchive. Confirm with the user before archiving a production agent. Environments, Sessions, Vaults, Credentials, and Memory Stores have both `delete` and `archive`; Session Resources, Files, Skills, and Memories are `delete`-only; Memory Versions have neither — only `redact`.
37
+ - Session resources use `add` (not `create`).
38
+ - Go's event stream is `StreamEvents` (not `Stream`).
39
+ - The self-hosted worker is **not** under `client.beta.*` — it's `EnvironmentWorker` from `anthropic.lib.environments` / `@anthropic-ai/sdk/helpers/beta/environments`; only `environments.work.poller/stats/stop` are client methods.
40
+
41
+ **Agent shorthand:** `agent` on session create accepts either a bare string (`agent="agent_abc123"` — uses latest version) or the full reference object (`{type: "agent", id: "agent_abc123", version: 123}`).
42
+
43
+ **Model shorthand:** `model` on agent create accepts either a bare string (`model="claude-opus-4-8"` — uses `standard` speed) or the full config object (`{id: "claude-opus-4-6", speed: "fast"}`). Note: `speed: "fast"` is only supported on Opus 4.6.
44
+
45
+ ---
46
+
47
+ ## Agents
48
+
49
+ **Step one of every flow.** Sessions require a pre-created agent — there is no inline agent config under `managed-agents-2026-04-01`.
50
+
51
+ | Method | Path | Operation | Description |
52
+ | -------- | ------------------------------------------------ | ---------------- | ---------------------------------------- |
53
+ | `GET` | `/v1/agents` | ListAgents | List agents |
54
+ | `POST` | `/v1/agents` | CreateAgent | Create a saved agent configuration |
55
+ | `GET` | `/v1/agents/{agent_id}` | GetAgent | Get agent details |
56
+ | `POST` | `/v1/agents/{agent_id}` | UpdateAgent | Update agent configuration |
57
+ | `POST` | `/v1/agents/{agent_id}/archive` | ArchiveAgent | Archive an agent. Makes it **read-only**; existing sessions continue, new sessions cannot reference it. No unarchive — this is the terminal state. |
58
+ | `GET` | `/v1/agents/{agent_id}/versions` | ListAgentVersions | List agent versions |
59
+
60
+ ## Sessions
61
+
62
+ | Method | Path | Operation | Description |
63
+ | -------- | ------------------------------------------------ | ---------------- | ---------------------------------------- |
64
+ | `GET` | `/v1/sessions` | ListSessions | List sessions (paginated) |
65
+ | `POST` | `/v1/sessions` | CreateSession | Create a new session |
66
+ | `GET` | `/v1/sessions/{session_id}` | GetSession | Get session details |
67
+ | `POST` | `/v1/sessions/{session_id}` | UpdateSession | Update session `metadata`/`title`, or `agent.tools`/`agent.mcp_servers`/`vault_ids` (session-local override; session must be `idle`). See `shared/managed-agents-core.md` → Updating the agent configuration mid-session. |
68
+ | `DELETE` | `/v1/sessions/{session_id}` | DeleteSession | Delete a session |
69
+ | `POST` | `/v1/sessions/{session_id}/archive` | ArchiveSession | Archive a session |
70
+
71
+ ## Events
72
+
73
+ | Method | Path | Operation | Description |
74
+ | -------- | ------------------------------------------------ | ---------------- | ---------------------------------------- |
75
+ | `GET` | `/v1/sessions/{session_id}/events` | ListEvents | List events (polling, paginated) |
76
+ | `POST` | `/v1/sessions/{session_id}/events` | SendEvents | Send events (user message, tool result) |
77
+ | `GET` | `/v1/sessions/{session_id}/events/stream` | StreamEvents | Stream events via SSE |
78
+
79
+ ## Session Threads
80
+
81
+ Per-subagent event streams in multiagent sessions. See `shared/managed-agents-multiagent.md`.
82
+
83
+ | Method | Path | Operation | Description |
84
+ | -------- | ------------------------------------------------ | ---------------- | ---------------------------------------- |
85
+ | `GET` | `/v1/sessions/{session_id}/threads` | ListThreads | List threads (paginated) |
86
+ | `GET` | `/v1/sessions/{session_id}/threads/{thread_id}` | GetThread | Retrieve one thread (carries `agent` snapshot, `status`, `parent_thread_id`, `stats`, `usage`) |
87
+ | `POST` | `/v1/sessions/{session_id}/threads/{thread_id}/archive` | ArchiveThread | Archive a thread |
88
+ | `GET` | `/v1/sessions/{session_id}/threads/{thread_id}/events` | ListThreadEvents | List past events for one thread (paginated) |
89
+ | `GET` | `/v1/sessions/{session_id}/threads/{thread_id}/stream` | StreamThreadEvents | Stream one thread via SSE (SDK: `threads.events.stream`) |
90
+
91
+ ## Session Resources
92
+
93
+ | Method | Path | Operation | Description |
94
+ | -------- | ------------------------------------------------------- | ---------------- | ---------------------------------------- |
95
+ | `GET` | `/v1/sessions/{session_id}/resources` | ListResources | List resources attached to session |
96
+ | `POST` | `/v1/sessions/{session_id}/resources` | AddResource | Attach `file` or `github_repository` resource (SDK method: `add`, not `create`). `memory_store` resources attach at session-create time only. |
97
+ | `GET` | `/v1/sessions/{session_id}/resources/{resource_id}` | GetResource | Get a single resource |
98
+ | `POST` | `/v1/sessions/{session_id}/resources/{resource_id}` | UpdateResource | Update resource |
99
+ | `DELETE` | `/v1/sessions/{session_id}/resources/{resource_id}` | DeleteResource | Remove resource from session |
100
+
101
+ ## Environments
102
+
103
+ | Method | Path | Operation | Description |
104
+ | -------- | ---------------------------------------------------------------- | -------------------- | ----------------------------------- |
105
+ | `POST` | `/v1/environments` | CreateEnvironment | Create environment |
106
+ | `GET` | `/v1/environments` | ListEnvironments | List environments |
107
+ | `GET` | `/v1/environments/{environment_id}` | GetEnvironment | Get environment details |
108
+ | `POST` | `/v1/environments/{environment_id}` | UpdateEnvironment | Update environment |
109
+ | `DELETE` | `/v1/environments/{environment_id}` | DeleteEnvironment | Delete environment. Returns 204. |
110
+ | `POST` | `/v1/environments/{environment_id}/archive` | ArchiveEnvironment | Archive environment. Makes it **read-only**; existing sessions continue, new sessions cannot reference it. No unarchive — this is the terminal state. |
111
+ | `GET` | `/v1/environments/{environment_id}/work/stats` | WorkQueueStats | Self-hosted work-queue depth/pending/workers. `x-api-key` auth. See `shared/managed-agents-self-hosted-sandboxes.md`. |
112
+ | `POST` | `/v1/environments/{environment_id}/work/{work_id}/stop` | StopWork | Self-hosted: stop a claimed work item. `x-api-key` auth. |
113
+
114
+ For `type: "self_hosted"`, `config` is the bare `{"type": "self_hosted"}` — `networking` and `packages` do not apply.
115
+
116
+ ## Vaults
117
+
118
+ Vaults store MCP credentials that Anthropic manages on your behalf — OAuth credentials with auto-refresh, or static bearer tokens. Attach to sessions via `vault_ids`. See `managed-agents-tools.md` §Vaults for the conceptual guide and credential shapes.
119
+
120
+ | Method | Path | Operation | Description |
121
+ | -------- | ------------------------------------------------ | ---------------- | ---------------------------------------- |
122
+ | `POST` | `/v1/vaults` | CreateVault | Create a vault |
123
+ | `GET` | `/v1/vaults` | ListVaults | List vaults |
124
+ | `GET` | `/v1/vaults/{vault_id}` | GetVault | Get vault details |
125
+ | `POST` | `/v1/vaults/{vault_id}` | UpdateVault | Update vault |
126
+ | `DELETE` | `/v1/vaults/{vault_id}` | DeleteVault | Delete vault |
127
+ | `POST` | `/v1/vaults/{vault_id}/archive` | ArchiveVault | Archive vault |
128
+
129
+ ## Credentials
130
+
131
+ Credentials are individual secrets stored inside a vault.
132
+
133
+ | Method | Path | Operation | Description |
134
+ | -------- | ----------------------------------------------------------------- | ------------------ | ---------------------------- |
135
+ | `POST` | `/v1/vaults/{vault_id}/credentials` | CreateCredential | Create a credential |
136
+ | `GET` | `/v1/vaults/{vault_id}/credentials` | ListCredentials | List credentials in vault |
137
+ | `GET` | `/v1/vaults/{vault_id}/credentials/{credential_id}` | GetCredential | Get credential metadata |
138
+ | `POST` | `/v1/vaults/{vault_id}/credentials/{credential_id}` | UpdateCredential | Update credential |
139
+ | `DELETE` | `/v1/vaults/{vault_id}/credentials/{credential_id}` | DeleteCredential | Delete credential |
140
+ | `POST` | `/v1/vaults/{vault_id}/credentials/{credential_id}/archive` | ArchiveCredential | Archive credential |
141
+ | `POST` | `/v1/vaults/{vault_id}/credentials/{credential_id}/mcp_oauth_validate` | McpOauthValidate | Validate an MCP OAuth credential |
142
+
143
+ ## Memory Stores
144
+
145
+ Workspace-scoped persistent memory that survives across sessions. Attach to a session via a `{"type": "memory_store", "memory_store_id": ...}` entry in `resources[]` (session-create time only). See `shared/managed-agents-memory.md` for the conceptual guide, the FUSE-mount agent interface, preconditions, and versioning.
146
+
147
+ | Method | Path | Operation | Description |
148
+ | -------- | ------------------------------------------------ | ------------------ | ---------------------------------------- |
149
+ | `POST` | `/v1/memory_stores` | CreateMemoryStore | Create a store (`name`, `description`, `metadata`) |
150
+ | `GET` | `/v1/memory_stores` | ListMemoryStores | List stores (`include_archived`, `created_at_{gte,lte}`) |
151
+ | `GET` | `/v1/memory_stores/{memory_store_id}` | GetMemoryStore | Get store details |
152
+ | `POST` | `/v1/memory_stores/{memory_store_id}` | UpdateMemoryStore | Update store |
153
+ | `DELETE` | `/v1/memory_stores/{memory_store_id}` | DeleteMemoryStore | Delete store |
154
+ | `POST` | `/v1/memory_stores/{memory_store_id}/archive` | ArchiveMemoryStore | Archive store. Makes it **read-only**; existing sessions continue, new sessions cannot reference it. No unarchive. |
155
+
156
+ ## Memories
157
+
158
+ Individual text documents inside a store (≤ 100KB each). `create` creates at a `path` and returns `409` (`memory_path_conflict_error`, with `conflicting_memory_id`) if the path is occupied; `update` mutates by `mem_...` ID (rename and/or content). Only `update` accepts a `precondition` (`{"type": "content_sha256", "content_sha256": ...}`) — on mismatch returns `409` (`memory_precondition_failed_error`). List endpoints accept `view: "basic"|"full"` (controls whether `content` is populated; `retrieve` defaults to `full`).
159
+
160
+ | Method | Path | Operation | Description |
161
+ | -------- | ----------------------------------------------------------------- | -------------- | ---------------------------------------- |
162
+ | `GET` | `/v1/memory_stores/{memory_store_id}/memories` | ListMemories | Returns `Memory \| MemoryPrefix`; filter by `path_prefix`, `depth`, `order_by`/`order` |
163
+ | `POST` | `/v1/memory_stores/{memory_store_id}/memories` | CreateMemory | Create at `path` (SDK: `memories.create`); `409 memory_path_conflict_error` if occupied |
164
+ | `GET` | `/v1/memory_stores/{memory_store_id}/memories/{memory_id}` | GetMemory | Read one memory (defaults to `view="full"`) |
165
+ | `PATCH` | `/v1/memory_stores/{memory_store_id}/memories/{memory_id}` | UpdateMemory | Change `content`, `path`, or both by ID; optional `precondition` |
166
+ | `DELETE` | `/v1/memory_stores/{memory_store_id}/memories/{memory_id}` | DeleteMemory | Delete (optional `expected_content_sha256`) |
167
+
168
+ ## Memory Versions
169
+
170
+ Immutable per-mutation snapshots (`memver_...`) — the audit and rollback surface. `operation` ∈ `created` / `modified` / `deleted`.
171
+
172
+ | Method | Path | Operation | Description |
173
+ | -------- | ----------------------------------------------------------------------------- | --------------------- | ---------------------------------------- |
174
+ | `GET` | `/v1/memory_stores/{memory_store_id}/memory_versions` | ListMemoryVersions | Newest-first; filter by `memory_id`, `operation`, `session_id`, `api_key_id`, `created_at_{gte,lte}` |
175
+ | `GET` | `/v1/memory_stores/{memory_store_id}/memory_versions/{version_id}` | GetMemoryVersion | List fields + full `content` |
176
+ | `POST` | `/v1/memory_stores/{memory_store_id}/memory_versions/{version_id}/redact` | RedactMemoryVersion | Clear `content`/`content_sha256`/`content_size_bytes`/`path`; preserve actor + timestamps |
177
+
178
+ ## Files
179
+
180
+ | Method | Path | Operation | Description |
181
+ | -------- | ------------------------------------------------ | ---------------- | ---------------------------------------- |
182
+ | `POST` | `/v1/files` | UploadFile | Upload a file |
183
+ | `GET` | `/v1/files` | ListFiles | List files |
184
+ | `GET` | `/v1/files/{file_id}` | GetFile | Get file metadata (SDK method: `retrieve_metadata`) |
185
+ | `GET` | `/v1/files/{file_id}/content` | DownloadFile | Download file content |
186
+ | `DELETE` | `/v1/files/{file_id}` | DeleteFile | Delete a file |
187
+
188
+ ## Skills
189
+
190
+ | Method | Path | Operation | Description |
191
+ | -------- | --------------------------------------------------------------- | ------------------ | ---------------------------- |
192
+ | `POST` | `/v1/skills` | CreateSkill | Create a skill |
193
+ | `GET` | `/v1/skills` | ListSkills | List skills |
194
+ | `GET` | `/v1/skills/{skill_id}` | GetSkill | Get skill details |
195
+ | `DELETE` | `/v1/skills/{skill_id}` | DeleteSkill | Delete a skill |
196
+ | `POST` | `/v1/skills/{skill_id}/versions` | CreateVersion | Create skill version |
197
+ | `GET` | `/v1/skills/{skill_id}/versions` | ListVersions | List skill versions |
198
+ | `GET` | `/v1/skills/{skill_id}/versions/{version}` | GetVersion | Get skill version |
199
+ | `DELETE` | `/v1/skills/{skill_id}/versions/{version}` | DeleteVersion | Delete skill version |
200
+
201
+ ---
202
+
203
+ ## Request/Response Schema Quick Reference
204
+
205
+ ### CreateAgent Request Body
206
+
207
+ **Always start here.** `model`, `system`, `tools`, `mcp_servers`, `skills` are top-level fields on this object — they do NOT go on the session.
208
+
209
+ ```json
210
+ {
211
+ "name": "string (required, 1-256 chars)",
212
+ "model": "claude-opus-4-8 (required — bare string, or {id, speed} object)",
213
+ "description": "string (optional, up to 2048 chars)",
214
+ "system": "string (optional, up to 100,000 chars)",
215
+ "tools": [
216
+ { "type": "agent_toolset_20260401" }
217
+ ],
218
+ "skills": [
219
+ { "type": "anthropic", "skill_id": "xlsx" },
220
+ { "type": "custom", "skill_id": "skill_abc123", "version": "1" }
221
+ ],
222
+ "mcp_servers": [
223
+ {
224
+ "type": "url",
225
+ "name": "github",
226
+ "url": "https://api.githubcopilot.com/mcp/"
227
+ }
228
+ ],
229
+ "multiagent": {
230
+ "type": "coordinator",
231
+ "agents": [
232
+ "agent_abc123",
233
+ { "type": "agent", "id": "agent_def456", "version": 4 },
234
+ { "type": "self" }
235
+ ]
236
+ },
237
+ "metadata": {
238
+ "key": "value (max 16 pairs, keys ≤64 chars, values ≤512 chars)"
239
+ }
240
+ }
241
+ ```
242
+
243
+ > Limits: `tools` max 128, `skills` max 20, `mcp_servers` max 20 (unique names). `multiagent.agents` 1–20 entries (string ID | `{type:"agent",id,version?}` | `{type:"self"}`) — see `shared/managed-agents-multiagent.md`.
244
+
245
+ ### CreateSession Request Body
246
+
247
+ ```json
248
+ {
249
+ "agent": "agent_abc123 (required — string shorthand for latest version, or {type: \"agent\", id, version} object)",
250
+ "environment_id": "env_abc123 (required)",
251
+ "title": "string (optional)",
252
+ "resources": [
253
+ {
254
+ "type": "github_repository",
255
+ "url": "https://github.com/owner/repo (required)",
256
+ "authorization_token": "ghp_... (required)",
257
+ "mount_path": "/workspace/repo (optional — defaults to /workspace/<repo-name>)",
258
+ "checkout": { "type": "branch", "name": "main" }
259
+ }
260
+ ],
261
+ "vault_ids": ["vlt_abc123 (optional — MCP credentials with auto-refresh)"],
262
+ "metadata": {
263
+ "key": "value"
264
+ }
265
+ }
266
+ ```
267
+
268
+ > The `agent` field accepts only a string ID or `{type: "agent", id, version}` — `model`/`system`/`tools` live on the agent, not here.
269
+ >
270
+ > **`checkout`** accepts `{type: "branch", name: "..."}` or `{type: "commit", sha: "..."}`. Omit for the repo's default branch.
271
+
272
+ ### CreateEnvironment Request Body
273
+
274
+ ```json
275
+ {
276
+ "name": "string (required)",
277
+ "description": "string (optional)",
278
+ "config": {
279
+ "type": "cloud | self_hosted",
280
+ "networking": {
281
+ "type": "unrestricted | limited (union — see SDK types)"
282
+ },
283
+ "packages": { }
284
+ },
285
+ "metadata": { "key": "value" }
286
+ }
287
+ ```
288
+
289
+ ### SendEvents Request Body
290
+
291
+ ```json
292
+ {
293
+ "events": [
294
+ {
295
+ "type": "user.message",
296
+ "content": [
297
+ {
298
+ "type": "text",
299
+ "text": "Hello"
300
+ }
301
+ ]
302
+ }
303
+ ]
304
+ }
305
+ ```
306
+
307
+ ### Define Outcome Event
308
+
309
+ ```json
310
+ {
311
+ "type": "user.define_outcome",
312
+ "description": "Build a DCF model for Costco in .xlsx",
313
+ "rubric": { "type": "file", "file_id": "file_01..." },
314
+ "max_iterations": 5
315
+ }
316
+ ```
317
+
318
+ > `rubric` is required: `{type: "text", content}` or `{type: "file", file_id}`. `max_iterations` default 3, max 20. Echoed back with `outcome_id` + `processed_at`. See `shared/managed-agents-outcomes.md`.
319
+
320
+ ### Tool Result Event
321
+
322
+ ```json
323
+ {
324
+ "type": "user.custom_tool_result",
325
+ "custom_tool_use_id": "sevt_abc123",
326
+ "content": [{ "type": "text", "text": "Result data" }],
327
+ "is_error": false
328
+ }
329
+ ```
330
+
331
+ ---
332
+
333
+ ## Error Handling
334
+
335
+ Managed Agents endpoints use the standard Anthropic API error format. Errors are returned with an HTTP status code and a JSON body containing `type`, `error`, and `request_id`:
336
+
337
+ ```json
338
+ {
339
+ "type": "error",
340
+ "error": {
341
+ "type": "invalid_request_error",
342
+ "message": "Description of what went wrong"
343
+ },
344
+ "request_id": "req_011CRv1W3XQ8XpFikNYG7RnE"
345
+ }
346
+ ```
347
+
348
+ Include the `request_id` when reporting issues to Anthropic — it lets us trace the request end-to-end. The inner `error.type` is one of the following:
349
+
350
+ | Status | Error type | Description |
351
+ |---|---|---|
352
+ | 400 | `invalid_request_error` | The request was malformed or missing required parameters |
353
+ | 401 | `authentication_error` | Invalid or missing API key |
354
+ | 403 | `permission_error` | The API key doesn't have permission for this operation |
355
+ | 404 | `not_found_error` | The requested resource doesn't exist |
356
+ | 409 | `invalid_request_error` | The request conflicts with the resource's current state (e.g., sending to an archived session) |
357
+ | 413 | `request_too_large` | The request body exceeds the maximum allowed size |
358
+ | 429 | `rate_limit_error` | Too many requests — check rate limit headers for retry timing |
359
+ | 500 | `api_error` | An internal server error occurred |
360
+ | 529 | `overloaded_error` | The service is temporarily overloaded — retry with backoff |
361
+
362
+ Note that `409 Conflict` carries `error.type: "invalid_request_error"` (there is no separate `conflict_error` type); inspect both the HTTP status and the `message` to distinguish conflicts from other invalid requests.
363
+
364
+ ---
365
+
366
+ ## Rate Limits
367
+
368
+ Managed Agents endpoints have per-organization request-per-minute (RPM) limits, separate from your [Messages API token limits](https://platform.claude.com/docs/en/api/rate-limits). Model inference inside a session still draws from your organization's standard ITPM/OTPM limits.
369
+
370
+ | Endpoint group | Scope | RPM | Max concurrent |
371
+ |---|---|---|---|
372
+ | Create operations (Agents, Sessions, Vaults) | organization | 60 | — |
373
+ | All other operations (Agents, Sessions, Vaults) | organization | 600 | — |
374
+ | All operations (Environments) | organization | 60 | 5 |
375
+
376
+ Files and Skills endpoints use the standard tier-based [rate limits](https://platform.claude.com/docs/en/api/rate-limits).
377
+
378
+ When a limit is exceeded the API returns `429` with a `rate_limit_error` (see [Error Handling](#error-handling) for the response envelope) and a `retry-after` header indicating how many seconds to wait before retrying. The Anthropic SDK reads this header and retries automatically.