shortcutxl 0.3.61 → 0.3.62

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 (582) hide show
  1. package/BINARY-INVENTORY.json +13 -13
  2. package/CHANGELOG.md +5 -0
  3. package/agent-docs/examples/extensions/custom-provider-anthropic/package.json +1 -1
  4. package/binary-provenance.json +7 -7
  5. package/dist/app/agent-session-runtime-adapter.js +8 -0
  6. package/dist/app/agent-session.d.ts +2 -2
  7. package/dist/app/agent-session.js +4 -12
  8. package/dist/app/approvals/types.d.ts +1 -0
  9. package/dist/app/collab/sync-bridge.js +3 -3
  10. package/dist/app/credits/credit-gate.d.ts +1 -0
  11. package/dist/app/credits/credit-gate.js +5 -2
  12. package/dist/app/modes/action/agent.d.ts +1 -0
  13. package/dist/app/modes/action/agent.js +2 -2
  14. package/dist/app/modes/action/prompt.js +2 -2
  15. package/dist/app/modes/manage/agent.d.ts +1 -1
  16. package/dist/app/modes/manage/agent.js +3 -3
  17. package/dist/app/modes/manage/prompt.js +9 -6
  18. package/dist/app/modes/plan/agent.js +1 -10
  19. package/dist/app/modes/plan/prompt.js +4 -4
  20. package/dist/app/modes/switch-mode.d.ts +2 -0
  21. package/dist/app/modes/switch-mode.js +14 -6
  22. package/dist/app/new-sheet/cell-diff/types.d.ts +1 -1
  23. package/dist/app/new-sheet/cell-diff/types.js +1 -1
  24. package/dist/app/new-sheet/sdk-types.d.ts +2 -2
  25. package/dist/app/new-sheet/sdk-types.js +2 -2
  26. package/dist/app/new-sheet/sheet-engine.d.ts +1 -1
  27. package/dist/app/new-sheet/sheet-engine.js +1 -1
  28. package/dist/app/providers/model-resolver.d.ts +3 -3
  29. package/dist/app/providers/model-resolver.js +3 -2
  30. package/dist/app/providers/register-shortcut-provider.js +3 -39
  31. package/dist/app/providers/shortcut-invoke.js +1 -0
  32. package/dist/app/providers/shortcut-stream.js +1 -0
  33. package/dist/app/resources/agents.d.ts +1 -1
  34. package/dist/app/resources/agents.js +1 -6
  35. package/dist/app/session/autonomous-workflow.js +2 -37
  36. package/dist/app/session/session-manager.d.ts +2 -0
  37. package/dist/app/session/session-manager.js +63 -0
  38. package/dist/app/shared/tools/execute-code/mog.d.ts +1 -1
  39. package/dist/app/shared/tools/execute-code/mog.js +1 -1
  40. package/dist/app/subagents/clone/agent.d.ts +1 -1
  41. package/dist/app/subagents/clone/agent.js +14 -13
  42. package/dist/app/subagents/document-reader/agent.js +1 -1
  43. package/dist/app/subagents/index.d.ts +0 -1
  44. package/dist/app/subagents/index.js +6 -8
  45. package/dist/app/subagents/verification/agent.js +45 -90
  46. package/dist/app/subagents/workbook-reader/agent.js +1 -1
  47. package/dist/app/tools/refresh-context.d.ts +2 -2
  48. package/dist/app/tools/refresh-context.js +2 -2
  49. package/dist/app/tools/switch-mode.js +20 -2
  50. package/dist/app/tools/take-screenshot.d.ts +1 -1
  51. package/dist/app/tools/take-screenshot.js +1 -1
  52. package/dist/app/tools/task/runner.js +19 -3
  53. package/dist/app/tools/task/task.js +1 -3
  54. package/dist/cli.js +3383 -796
  55. package/dist/contracts/agent-api.d.ts +52 -39
  56. package/dist/contracts/agent-api.js +18 -0
  57. package/dist/contracts/agent-execute-code.d.ts +1 -1
  58. package/dist/contracts/agent-execute-code.js +1 -1
  59. package/dist/contracts/agent-session-store.d.ts +6 -1
  60. package/dist/contracts/agent-session-store.js +2 -1
  61. package/dist/contracts/host-tool.d.ts +14 -0
  62. package/dist/contracts/host-tool.js +21 -0
  63. package/dist/contracts/model-call.d.ts +2 -1
  64. package/dist/contracts/model-call.js +1 -0
  65. package/dist/contracts/model-stream.d.ts +16 -2
  66. package/dist/contracts/model-stream.js +3 -1
  67. package/dist/core/agent-controller.d.ts +3 -4
  68. package/dist/core/agent-controller.js +3 -4
  69. package/dist/core/agent-engine.d.ts +3 -3
  70. package/dist/core/agent-engine.js +3 -3
  71. package/dist/core/core-types.d.ts +2 -2
  72. package/dist/core/defaults.js +1 -1
  73. package/dist/core/embedded-agent-facade.d.ts +2 -1
  74. package/dist/core/embedded-agent-facade.js +6 -0
  75. package/dist/core/session/compaction/constants.d.ts +4 -5
  76. package/dist/core/session/compaction/constants.js +7 -10
  77. package/dist/core/session-schema.d.ts +8 -1
  78. package/dist/core/session-schema.js +15 -4
  79. package/dist/credits/shortcut-credits.d.ts +1 -0
  80. package/dist/credits/shortcut-credits.js +6 -3
  81. package/dist/embedded-agent/agent-event-funnel.d.ts +9 -0
  82. package/dist/embedded-agent/agent-event-funnel.js +13 -4
  83. package/dist/embedded-agent/compose.js +176 -62
  84. package/dist/embedded-agent/google-vertex-transport.d.ts +25 -0
  85. package/dist/embedded-agent/google-vertex-transport.js +496 -0
  86. package/dist/embedded-agent/host-runtime-options.d.ts +1 -1
  87. package/dist/embedded-agent/host-runtime-options.js +61 -0
  88. package/dist/embedded-agent/host-tools/action-tool-names.d.ts +3 -0
  89. package/dist/embedded-agent/host-tools/action-tool-names.js +17 -0
  90. package/dist/embedded-agent/host-tools/build-tool-list.d.ts +8 -1
  91. package/dist/embedded-agent/host-tools/build-tool-list.js +82 -39
  92. package/dist/embedded-agent/host-tools/create-website/contract.js +15 -22
  93. package/dist/embedded-agent/host-tools/execute-bash-command/contract.js +12 -15
  94. package/dist/embedded-agent/host-tools/get-tool-info/contract.d.ts +2 -2
  95. package/dist/embedded-agent/host-tools/get-tool-info/contract.js +13 -11
  96. package/dist/embedded-agent/host-tools/get-tool-info/shared.d.ts +1 -1
  97. package/dist/embedded-agent/host-tools/index.d.ts +1 -0
  98. package/dist/embedded-agent/host-tools/index.js +1 -0
  99. package/dist/embedded-agent/host-tools/invoke-llm/contract.js +15 -33
  100. package/dist/embedded-agent/host-tools/mcp/contract.d.ts +52 -0
  101. package/dist/embedded-agent/host-tools/mcp/contract.js +130 -0
  102. package/dist/embedded-agent/host-tools/mcp/index.d.ts +2 -0
  103. package/dist/embedded-agent/host-tools/mcp/index.js +2 -0
  104. package/dist/embedded-agent/host-tools/mode-host-tools.d.ts +4 -1
  105. package/dist/embedded-agent/host-tools/mode-host-tools.js +21 -13
  106. package/dist/embedded-agent/host-tools/modify-skill/contract.d.ts +5 -4
  107. package/dist/embedded-agent/host-tools/modify-skill/contract.js +5 -4
  108. package/dist/embedded-agent/host-tools/read-skill/contract.d.ts +4 -2
  109. package/dist/embedded-agent/host-tools/read-skill/contract.js +25 -20
  110. package/dist/embedded-agent/host-tools/registry.d.ts +5 -4
  111. package/dist/embedded-agent/host-tools/registry.js +7 -2
  112. package/dist/embedded-agent/host-tools/request-credential/contract.js +11 -14
  113. package/dist/embedded-agent/host-tools/request-oauth/contract.js +8 -12
  114. package/dist/embedded-agent/host-tools/sandbox-llm/contract.js +10 -11
  115. package/dist/embedded-agent/host-tools/shared/llm-stream.d.ts +4 -1
  116. package/dist/embedded-agent/host-tools/shared/llm-stream.js +7 -2
  117. package/dist/embedded-agent/host-tools/switch-mode/contract.d.ts +5 -2
  118. package/dist/embedded-agent/host-tools/switch-mode/contract.js +58 -45
  119. package/dist/embedded-agent/host-tools/take-screenshot/contract.js +13 -26
  120. package/dist/embedded-agent/host-tools/task/agents/clone.js +15 -8
  121. package/dist/embedded-agent/host-tools/task/agents/document-reader.js +1 -1
  122. package/dist/embedded-agent/host-tools/task/agents/index.js +3 -5
  123. package/dist/embedded-agent/host-tools/task/agents/verification.d.ts +2 -7
  124. package/dist/embedded-agent/host-tools/task/agents/verification.js +48 -91
  125. package/dist/embedded-agent/host-tools/task/agents/workbook-reader.js +1 -1
  126. package/dist/embedded-agent/host-tools/task/contract.d.ts +26 -11
  127. package/dist/embedded-agent/host-tools/task/contract.js +137 -71
  128. package/dist/embedded-agent/host-tools/task/index.d.ts +3 -2
  129. package/dist/embedded-agent/host-tools/task/index.js +2 -1
  130. package/dist/embedded-agent/host-tools/task/lifecycle.d.ts +58 -0
  131. package/dist/embedded-agent/host-tools/task/lifecycle.js +152 -0
  132. package/dist/embedded-agent/host-tools/task/manager.d.ts +108 -0
  133. package/dist/embedded-agent/host-tools/task/manager.js +346 -0
  134. package/dist/embedded-agent/host-tools/task/runner.d.ts +52 -0
  135. package/dist/embedded-agent/host-tools/task/runner.js +177 -0
  136. package/dist/embedded-agent/host-tools/task/send-message.d.ts +28 -0
  137. package/dist/embedded-agent/host-tools/task/send-message.js +167 -0
  138. package/dist/embedded-agent/host-tools/task/sidechain.d.ts +59 -0
  139. package/dist/embedded-agent/host-tools/task/sidechain.js +148 -0
  140. package/dist/embedded-agent/host-tools/timeouts.js +2 -0
  141. package/dist/embedded-agent/host-tools/tool-names.d.ts +2 -0
  142. package/dist/embedded-agent/host-tools/tool-names.js +2 -0
  143. package/dist/embedded-agent/host-tools/web-crawl/contract.js +9 -10
  144. package/dist/embedded-agent/index.d.ts +24 -2
  145. package/dist/embedded-agent/model-registry.d.ts +2 -0
  146. package/dist/embedded-agent/model-registry.js +28 -50
  147. package/dist/embedded-agent/model-selection.js +5 -0
  148. package/dist/embedded-agent/per-turn-options.d.ts +1 -1
  149. package/dist/embedded-agent/persistence.js +3 -0
  150. package/dist/embedded-agent/prompt/build.js +2 -3
  151. package/dist/embedded-agent/prompt/modes/action.js +25 -4
  152. package/dist/embedded-agent/prompt/modes/manage.js +9 -6
  153. package/dist/embedded-agent/prompt/modes/plan.js +4 -4
  154. package/dist/embedded-agent/prompt/sections.d.ts +4 -7
  155. package/dist/embedded-agent/prompt/sections.js +40 -76
  156. package/dist/embedded-agent/session-entry-builder.d.ts +5 -1
  157. package/dist/embedded-agent/session-entry-builder.js +28 -1
  158. package/dist/embedded-agent/session-store.d.ts +3 -0
  159. package/dist/embedded-agent/session-store.js +45 -2
  160. package/dist/embedded-agent/stream.d.ts +3 -3
  161. package/dist/embedded-agent/stream.js +38 -8
  162. package/dist/embedded-agent/task-notification-turn-queue.d.ts +30 -0
  163. package/dist/embedded-agent/task-notification-turn-queue.js +77 -0
  164. package/dist/embedded-agent/worker-bridge/dispatch.js +7 -0
  165. package/dist/embedded-agent/worker-bridge/embedded-agent-worker.js +5 -0
  166. package/dist/embedded-agent/worker-bridge/host-client.d.ts +2 -1
  167. package/dist/embedded-agent/worker-bridge/host-client.js +9 -0
  168. package/dist/main.js +2 -2
  169. package/dist/model-display.d.ts +11 -0
  170. package/dist/model-display.js +24 -0
  171. package/dist/model-ids.d.ts +2 -0
  172. package/dist/model-ids.js +2 -0
  173. package/dist/shell/components/primitives/footer.js +2 -18
  174. package/dist/shell/components/selectors/model-selector.js +4 -2
  175. package/dist/shell/export-html/session-view-model.d.ts +6 -2
  176. package/dist/shell/export-html/session-view-model.js +2 -0
  177. package/dist/shell/export-html/template.js +10 -0
  178. package/dist/shell/footer-data-provider.d.ts +2 -0
  179. package/dist/shell/interactive/interactive-mode-options.d.ts +1 -0
  180. package/dist/shell/interactive/interactive-mode.js +2 -5
  181. package/dist/shortcut-model-catalog.d.ts +5 -0
  182. package/dist/shortcut-model-catalog.js +57 -0
  183. package/dist/startup/preflight/shared.js +2 -2
  184. package/dist/startup/runtime-routing.d.ts +1 -1
  185. package/dist/tool-names.d.ts +1 -2
  186. package/dist/tool-names.js +1 -3
  187. package/package.json +61 -52
  188. package/plugins/shortcutxl/SKILL.md +6 -6
  189. package/plugins/shortcutxl/skills/shortcutxl/SKILL.md +6 -6
  190. package/skills/autonomous/SKILL.md +1 -7
  191. package/user-docs/dist/shortcutxl-docs.pdf +0 -0
  192. package/xll/ShortcutXL.xll +0 -0
  193. package/xll/python/Lib/site-packages/__pycache__/pythoncom.cpython-313.pyc +0 -0
  194. package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/__init__.cpython-313.pyc +0 -0
  195. package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/incremental_tree.cpython-313.pyc +0 -0
  196. package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-313.pyc +0 -0
  197. package/xll/python/Lib/site-packages/httpx/__pycache__/__init__.cpython-313.pyc +0 -0
  198. package/xll/python/Lib/site-packages/httpx/__pycache__/__version__.cpython-313.pyc +0 -0
  199. package/xll/python/Lib/site-packages/httpx/__pycache__/_api.cpython-313.pyc +0 -0
  200. package/xll/python/Lib/site-packages/httpx/__pycache__/_auth.cpython-313.pyc +0 -0
  201. package/xll/python/Lib/site-packages/httpx/__pycache__/_client.cpython-313.pyc +0 -0
  202. package/xll/python/Lib/site-packages/httpx/__pycache__/_config.cpython-313.pyc +0 -0
  203. package/xll/python/Lib/site-packages/httpx/__pycache__/_content.cpython-313.pyc +0 -0
  204. package/xll/python/Lib/site-packages/httpx/__pycache__/_decoders.cpython-313.pyc +0 -0
  205. package/xll/python/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-313.pyc +0 -0
  206. package/xll/python/Lib/site-packages/httpx/__pycache__/_main.cpython-313.pyc +0 -0
  207. package/xll/python/Lib/site-packages/httpx/__pycache__/_models.cpython-313.pyc +0 -0
  208. package/xll/python/Lib/site-packages/httpx/__pycache__/_multipart.cpython-313.pyc +0 -0
  209. package/xll/python/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-313.pyc +0 -0
  210. package/xll/python/Lib/site-packages/httpx/__pycache__/_types.cpython-313.pyc +0 -0
  211. package/xll/python/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-313.pyc +0 -0
  212. package/xll/python/Lib/site-packages/httpx/__pycache__/_urls.cpython-313.pyc +0 -0
  213. package/xll/python/Lib/site-packages/httpx/__pycache__/_utils.cpython-313.pyc +0 -0
  214. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-313.pyc +0 -0
  215. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-313.pyc +0 -0
  216. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-313.pyc +0 -0
  217. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-313.pyc +0 -0
  218. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-313.pyc +0 -0
  219. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-313.pyc +0 -0
  220. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +1 -1
  221. package/xll/python/Lib/site-packages/idna/__pycache__/__init__.cpython-313.pyc +0 -0
  222. package/xll/python/Lib/site-packages/idna/__pycache__/core.cpython-313.pyc +0 -0
  223. package/xll/python/Lib/site-packages/idna/__pycache__/idnadata.cpython-313.pyc +0 -0
  224. package/xll/python/Lib/site-packages/idna/__pycache__/intranges.cpython-313.pyc +0 -0
  225. package/xll/python/Lib/site-packages/idna/__pycache__/package_data.cpython-313.pyc +0 -0
  226. package/xll/python/Lib/site-packages/idna-3.18.dist-info/RECORD +1 -1
  227. package/xll/python/Lib/site-packages/openpyxl/__pycache__/__init__.cpython-313.pyc +0 -0
  228. package/xll/python/Lib/site-packages/openpyxl/__pycache__/_constants.cpython-313.pyc +0 -0
  229. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/__init__.cpython-313.pyc +0 -0
  230. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/_writer.cpython-313.pyc +0 -0
  231. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/cell.cpython-313.pyc +0 -0
  232. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/read_only.cpython-313.pyc +0 -0
  233. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/rich_text.cpython-313.pyc +0 -0
  234. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/text.cpython-313.pyc +0 -0
  235. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_3d.cpython-313.pyc +0 -0
  236. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/__init__.cpython-313.pyc +0 -0
  237. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_chart.cpython-313.pyc +0 -0
  238. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-313.pyc +0 -0
  239. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/axis.cpython-313.pyc +0 -0
  240. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-313.pyc +0 -0
  241. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-313.pyc +0 -0
  242. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-313.pyc +0 -0
  243. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/data_source.cpython-313.pyc +0 -0
  244. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-313.pyc +0 -0
  245. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-313.pyc +0 -0
  246. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/label.cpython-313.pyc +0 -0
  247. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/layout.cpython-313.pyc +0 -0
  248. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/legend.cpython-313.pyc +0 -0
  249. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-313.pyc +0 -0
  250. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/marker.cpython-313.pyc +0 -0
  251. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/picture.cpython-313.pyc +0 -0
  252. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-313.pyc +0 -0
  253. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pivot.cpython-313.pyc +0 -0
  254. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/plotarea.cpython-313.pyc +0 -0
  255. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-313.pyc +0 -0
  256. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-313.pyc +0 -0
  257. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reader.cpython-313.pyc +0 -0
  258. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reference.cpython-313.pyc +0 -0
  259. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-313.pyc +0 -0
  260. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series.cpython-313.pyc +0 -0
  261. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-313.pyc +0 -0
  262. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/shapes.cpython-313.pyc +0 -0
  263. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-313.pyc +0 -0
  264. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-313.pyc +0 -0
  265. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/text.cpython-313.pyc +0 -0
  266. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/title.cpython-313.pyc +0 -0
  267. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/trendline.cpython-313.pyc +0 -0
  268. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-313.pyc +0 -0
  269. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-313.pyc +0 -0
  270. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-313.pyc +0 -0
  271. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-313.pyc +0 -0
  272. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-313.pyc +0 -0
  273. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-313.pyc +0 -0
  274. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-313.pyc +0 -0
  275. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-313.pyc +0 -0
  276. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-313.pyc +0 -0
  277. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/__init__.cpython-313.pyc +0 -0
  278. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/author.cpython-313.pyc +0 -0
  279. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-313.pyc +0 -0
  280. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comments.cpython-313.pyc +0 -0
  281. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-313.pyc +0 -0
  282. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/__init__.cpython-313.pyc +0 -0
  283. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/numbers.cpython-313.pyc +0 -0
  284. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/strings.cpython-313.pyc +0 -0
  285. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-313.pyc +0 -0
  286. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/base.cpython-313.pyc +0 -0
  287. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/container.cpython-313.pyc +0 -0
  288. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-313.pyc +0 -0
  289. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-313.pyc +0 -0
  290. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-313.pyc +0 -0
  291. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-313.pyc +0 -0
  292. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-313.pyc +0 -0
  293. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-313.pyc +0 -0
  294. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/colors.cpython-313.pyc +0 -0
  295. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/connector.cpython-313.pyc +0 -0
  296. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-313.pyc +0 -0
  297. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/effect.cpython-313.pyc +0 -0
  298. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/fill.cpython-313.pyc +0 -0
  299. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/geometry.cpython-313.pyc +0 -0
  300. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-313.pyc +0 -0
  301. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/image.cpython-313.pyc +0 -0
  302. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/line.cpython-313.pyc +0 -0
  303. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/picture.cpython-313.pyc +0 -0
  304. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/properties.cpython-313.pyc +0 -0
  305. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/relation.cpython-313.pyc +0 -0
  306. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-313.pyc +0 -0
  307. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/text.cpython-313.pyc +0 -0
  308. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/xdr.cpython-313.pyc +0 -0
  309. package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-313.pyc +0 -0
  310. package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-313.pyc +0 -0
  311. package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/rule.cpython-313.pyc +0 -0
  312. package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/__init__.cpython-313.pyc +0 -0
  313. package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-313.pyc +0 -0
  314. package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/translate.cpython-313.pyc +0 -0
  315. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-313.pyc +0 -0
  316. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/core.cpython-313.pyc +0 -0
  317. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/custom.cpython-313.pyc +0 -0
  318. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-313.pyc +0 -0
  319. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-313.pyc +0 -0
  320. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-313.pyc +0 -0
  321. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/__init__.cpython-313.pyc +0 -0
  322. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/cache.cpython-313.pyc +0 -0
  323. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/fields.cpython-313.pyc +0 -0
  324. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/record.cpython-313.pyc +0 -0
  325. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/table.cpython-313.pyc +0 -0
  326. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/__init__.cpython-313.pyc +0 -0
  327. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/drawings.cpython-313.pyc +0 -0
  328. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/excel.cpython-313.pyc +0 -0
  329. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/strings.cpython-313.pyc +0 -0
  330. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/workbook.cpython-313.pyc +0 -0
  331. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/__init__.cpython-313.pyc +0 -0
  332. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/alignment.cpython-313.pyc +0 -0
  333. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/borders.cpython-313.pyc +0 -0
  334. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/builtins.cpython-313.pyc +0 -0
  335. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-313.pyc +0 -0
  336. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/colors.cpython-313.pyc +0 -0
  337. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/differential.cpython-313.pyc +0 -0
  338. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fills.cpython-313.pyc +0 -0
  339. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fonts.cpython-313.pyc +0 -0
  340. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-313.pyc +0 -0
  341. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/numbers.cpython-313.pyc +0 -0
  342. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/protection.cpython-313.pyc +0 -0
  343. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/proxy.cpython-313.pyc +0 -0
  344. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/styleable.cpython-313.pyc +0 -0
  345. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-313.pyc +0 -0
  346. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/table.cpython-313.pyc +0 -0
  347. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/__init__.cpython-313.pyc +0 -0
  348. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-313.pyc +0 -0
  349. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/cell.cpython-313.pyc +0 -0
  350. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/datetime.cpython-313.pyc +0 -0
  351. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/escape.cpython-313.pyc +0 -0
  352. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-313.pyc +0 -0
  353. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/formulas.cpython-313.pyc +0 -0
  354. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-313.pyc +0 -0
  355. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/protection.cpython-313.pyc +0 -0
  356. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/units.cpython-313.pyc +0 -0
  357. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-313.pyc +0 -0
  358. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/_writer.cpython-313.pyc +0 -0
  359. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/child.cpython-313.pyc +0 -0
  360. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-313.pyc +0 -0
  361. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-313.pyc +0 -0
  362. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-313.pyc +0 -0
  363. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/properties.cpython-313.pyc +0 -0
  364. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/protection.cpython-313.pyc +0 -0
  365. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-313.pyc +0 -0
  366. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/views.cpython-313.pyc +0 -0
  367. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/web.cpython-313.pyc +0 -0
  368. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-313.pyc +0 -0
  369. package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-313.pyc +0 -0
  370. package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-313.pyc +0 -0
  371. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-313.pyc +0 -0
  372. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_read_only.cpython-313.pyc +0 -0
  373. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_reader.cpython-313.pyc +0 -0
  374. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_write_only.cpython-313.pyc +0 -0
  375. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_writer.cpython-313.pyc +0 -0
  376. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_range.cpython-313.pyc +0 -0
  377. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-313.pyc +0 -0
  378. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-313.pyc +0 -0
  379. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-313.pyc +0 -0
  380. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-313.pyc +0 -0
  381. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-313.pyc +0 -0
  382. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/formula.cpython-313.pyc +0 -0
  383. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-313.pyc +0 -0
  384. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-313.pyc +0 -0
  385. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-313.pyc +0 -0
  386. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/page.cpython-313.pyc +0 -0
  387. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-313.pyc +0 -0
  388. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/print_settings.cpython-313.pyc +0 -0
  389. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-313.pyc +0 -0
  390. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-313.pyc +0 -0
  391. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/related.cpython-313.pyc +0 -0
  392. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/scenario.cpython-313.pyc +0 -0
  393. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/table.cpython-313.pyc +0 -0
  394. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/views.cpython-313.pyc +0 -0
  395. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-313.pyc +0 -0
  396. package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/__init__.cpython-313.pyc +0 -0
  397. package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/excel.cpython-313.pyc +0 -0
  398. package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/theme.cpython-313.pyc +0 -0
  399. package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/__init__.cpython-313.pyc +0 -0
  400. package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/constants.cpython-313.pyc +0 -0
  401. package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/functions.cpython-313.pyc +0 -0
  402. package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-313.pyc +0 -0
  403. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-313.pyc +0 -0
  404. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-313.pyc +0 -0
  405. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-313.pyc +0 -0
  406. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-313.pyc +0 -0
  407. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-313.pyc +0 -0
  408. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-313.pyc +0 -0
  409. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-313.pyc +0 -0
  410. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-313.pyc +0 -0
  411. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-313.pyc +0 -0
  412. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-313.pyc +0 -0
  413. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-313.pyc +0 -0
  414. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-313.pyc +0 -0
  415. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-313.pyc +0 -0
  416. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-313.pyc +0 -0
  417. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-313.pyc +0 -0
  418. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-313.pyc +0 -0
  419. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-313.pyc +0 -0
  420. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-313.pyc +0 -0
  421. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-313.pyc +0 -0
  422. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-313.pyc +0 -0
  423. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-313.pyc +0 -0
  424. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-313.pyc +0 -0
  425. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-313.pyc +0 -0
  426. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-313.pyc +0 -0
  427. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-313.pyc +0 -0
  428. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-313.pyc +0 -0
  429. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-313.pyc +0 -0
  430. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-313.pyc +0 -0
  431. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-313.pyc +0 -0
  432. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-313.pyc +0 -0
  433. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-313.pyc +0 -0
  434. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-313.pyc +0 -0
  435. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-313.pyc +0 -0
  436. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-313.pyc +0 -0
  437. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-313.pyc +0 -0
  438. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-313.pyc +0 -0
  439. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-313.pyc +0 -0
  440. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-313.pyc +0 -0
  441. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-313.pyc +0 -0
  442. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-313.pyc +0 -0
  443. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-313.pyc +0 -0
  444. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-313.pyc +0 -0
  445. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-313.pyc +0 -0
  446. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-313.pyc +0 -0
  447. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-313.pyc +0 -0
  448. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-313.pyc +0 -0
  449. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-313.pyc +0 -0
  450. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-313.pyc +0 -0
  451. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-313.pyc +0 -0
  452. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-313.pyc +0 -0
  453. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-313.pyc +0 -0
  454. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-313.pyc +0 -0
  455. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-313.pyc +0 -0
  456. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-313.pyc +0 -0
  457. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-313.pyc +0 -0
  458. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-313.pyc +0 -0
  459. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-313.pyc +0 -0
  460. package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-313.pyc +0 -0
  461. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-313.pyc +0 -0
  462. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-313.pyc +0 -0
  463. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-313.pyc +0 -0
  464. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-313.pyc +0 -0
  465. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-313.pyc +0 -0
  466. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-313.pyc +0 -0
  467. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-313.pyc +0 -0
  468. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-313.pyc +0 -0
  469. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/direct_url.cpython-313.pyc +0 -0
  470. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-313.pyc +0 -0
  471. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-313.pyc +0 -0
  472. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-313.pyc +0 -0
  473. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-313.pyc +0 -0
  474. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-313.pyc +0 -0
  475. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-313.pyc +0 -0
  476. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-313.pyc +0 -0
  477. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-313.pyc +0 -0
  478. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-313.pyc +0 -0
  479. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-313.pyc +0 -0
  480. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-313.pyc +0 -0
  481. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-313.pyc +0 -0
  482. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-313.pyc +0 -0
  483. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-313.pyc +0 -0
  484. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-313.pyc +0 -0
  485. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-313.pyc +0 -0
  486. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-313.pyc +0 -0
  487. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-313.pyc +0 -0
  488. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-313.pyc +0 -0
  489. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-313.pyc +0 -0
  490. package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-313.pyc +0 -0
  491. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-313.pyc +0 -0
  492. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-313.pyc +0 -0
  493. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-313.pyc +0 -0
  494. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-313.pyc +0 -0
  495. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-313.pyc +0 -0
  496. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-313.pyc +0 -0
  497. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-313.pyc +0 -0
  498. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-313.pyc +0 -0
  499. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-313.pyc +0 -0
  500. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-313.pyc +0 -0
  501. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-313.pyc +0 -0
  502. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-313.pyc +0 -0
  503. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-313.pyc +0 -0
  504. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-313.pyc +0 -0
  505. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-313.pyc +0 -0
  506. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-313.pyc +0 -0
  507. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-313.pyc +0 -0
  508. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-313.pyc +0 -0
  509. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-313.pyc +0 -0
  510. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-313.pyc +0 -0
  511. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-313.pyc +0 -0
  512. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-313.pyc +0 -0
  513. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-313.pyc +0 -0
  514. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-313.pyc +0 -0
  515. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-313.pyc +0 -0
  516. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-313.pyc +0 -0
  517. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-313.pyc +0 -0
  518. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-313.pyc +0 -0
  519. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-313.pyc +0 -0
  520. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-313.pyc +0 -0
  521. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-313.pyc +0 -0
  522. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-313.pyc +0 -0
  523. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-313.pyc +0 -0
  524. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-313.pyc +0 -0
  525. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-313.pyc +0 -0
  526. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-313.pyc +0 -0
  527. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-313.pyc +0 -0
  528. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-313.pyc +0 -0
  529. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-313.pyc +0 -0
  530. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-313.pyc +0 -0
  531. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-313.pyc +0 -0
  532. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-313.pyc +0 -0
  533. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-313.pyc +0 -0
  534. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-313.pyc +0 -0
  535. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-313.pyc +0 -0
  536. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-313.pyc +0 -0
  537. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-313.pyc +0 -0
  538. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-313.pyc +0 -0
  539. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-313.pyc +0 -0
  540. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-313.pyc +0 -0
  541. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-313.pyc +0 -0
  542. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-313.pyc +0 -0
  543. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-313.pyc +0 -0
  544. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-313.pyc +0 -0
  545. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-313.pyc +0 -0
  546. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-313.pyc +0 -0
  547. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-313.pyc +0 -0
  548. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-313.pyc +0 -0
  549. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-313.pyc +0 -0
  550. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-313.pyc +0 -0
  551. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-313.pyc +0 -0
  552. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-313.pyc +0 -0
  553. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-313.pyc +0 -0
  554. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-313.pyc +0 -0
  555. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-313.pyc +0 -0
  556. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-313.pyc +0 -0
  557. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-313.pyc +0 -0
  558. package/xll/python/Lib/site-packages/pip-26.1.2.dist-info/RECORD +3 -3
  559. package/xll/python/Lib/site-packages/pywin32-311.dist-info/RECORD +2 -2
  560. package/xll/python/Lib/site-packages/win32/lib/__pycache__/pywin32_bootstrap.cpython-313.pyc +0 -0
  561. package/xll/python/Lib/site-packages/win32/lib/__pycache__/pywintypes.cpython-313.pyc +0 -0
  562. package/xll/python/Lib/site-packages/win32/lib/__pycache__/winerror.cpython-313.pyc +0 -0
  563. package/xll/python/Lib/site-packages/win32com/__pycache__/__init__.cpython-313.pyc +0 -0
  564. package/xll/python/Lib/site-packages/win32com/client/__pycache__/CLSIDToClass.cpython-313.pyc +0 -0
  565. package/xll/python/Lib/site-packages/win32com/client/__pycache__/__init__.cpython-313.pyc +0 -0
  566. package/xll/python/Lib/site-packages/win32com/client/__pycache__/build.cpython-313.pyc +0 -0
  567. package/xll/python/Lib/site-packages/win32com/client/__pycache__/dynamic.cpython-313.pyc +0 -0
  568. package/xll/python/Lib/site-packages/win32com/client/__pycache__/gencache.cpython-313.pyc +0 -0
  569. package/xll/python/Scripts/httpx.exe +0 -0
  570. package/xll/python/Scripts/idna.exe +0 -0
  571. package/xll/python/Scripts/pip.exe +0 -0
  572. package/xll/python/Scripts/pip3.13.exe +0 -0
  573. package/xll/python/Scripts/pip3.exe +0 -0
  574. package/xll/python/Scripts/pywin32_postinstall.exe +0 -0
  575. package/xll/python/Scripts/pywin32_testall.exe +0 -0
  576. package/xll/python/sqlite3.dll +0 -0
  577. package/dist/app/subagents/general/agent.d.ts +0 -10
  578. package/dist/app/subagents/general/agent.js +0 -79
  579. package/dist/embedded-agent/host-tools/task/agents/general.d.ts +0 -10
  580. package/dist/embedded-agent/host-tools/task/agents/general.js +0 -74
  581. package/dist/embedded-agent/host-tools/task/run-subagent.d.ts +0 -51
  582. package/dist/embedded-agent/host-tools/task/run-subagent.js +0 -138
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "generatedAt": "2026-06-05T01:51:32.781Z",
3
+ "generatedAt": "2026-06-10T21:37:57.358Z",
4
4
  "package": "shortcutxl",
5
5
  "binaryExtensions": [
6
6
  ".dll",
@@ -11,7 +11,7 @@
11
11
  "files": [
12
12
  {
13
13
  "path": "xll/ShortcutXL.xll",
14
- "sha256": "7c86275b7bfd0b33b422de02a5d46e11004462b545d811bd53b7590a0b2891f9",
14
+ "sha256": "6eaecb6c7dd047ee91a0717b8849c43baa847d0c21afe094fe1d9e6fd1f89f6a",
15
15
  "source": "ShortcutXL native XLL build",
16
16
  "version": "package",
17
17
  "builtBy": "shortcut",
@@ -523,7 +523,7 @@
523
523
  },
524
524
  {
525
525
  "path": "xll/python/Scripts/httpx.exe",
526
- "sha256": "6443bf0359e479a00549f26cfaaecebec067687bd721258108880e3e4b8c0cf9",
526
+ "sha256": "6e6b7c9bb24e920a8d59ee9464ee83f245f9a2daa1489bb23a09e80e1eac59f8",
527
527
  "source": "httpx console launcher installed into embedded Python",
528
528
  "version": "see packaged httpx distribution",
529
529
  "builtBy": "third-party",
@@ -531,7 +531,7 @@
531
531
  },
532
532
  {
533
533
  "path": "xll/python/Scripts/idna.exe",
534
- "sha256": "eb0bee35c9a602f93ee605c2a6d6df3069be9e2be8a4b5131b4e7599a438d168",
534
+ "sha256": "15dbbd45e6257c0ca2dc305880d90ccf626ddb5c9265f8e9116f564483176ce1",
535
535
  "source": "Python package console launcher installed into embedded Python",
536
536
  "version": "see owning Python package metadata in site-packages",
537
537
  "builtBy": "third-party",
@@ -539,7 +539,7 @@
539
539
  },
540
540
  {
541
541
  "path": "xll/python/Scripts/pip.exe",
542
- "sha256": "1c0d88a63c83e6bb9ce9480ab1e5b1240cf391656806130748441871958fe337",
542
+ "sha256": "373818f3109b5b0e3d7f249ebced133b042d0e2ffd2fb983967cb611c40e5d57",
543
543
  "source": "pip console launcher installed into embedded Python",
544
544
  "version": "see packaged pip distribution",
545
545
  "builtBy": "third-party",
@@ -547,7 +547,7 @@
547
547
  },
548
548
  {
549
549
  "path": "xll/python/Scripts/pip3.13.exe",
550
- "sha256": "1c0d88a63c83e6bb9ce9480ab1e5b1240cf391656806130748441871958fe337",
550
+ "sha256": "373818f3109b5b0e3d7f249ebced133b042d0e2ffd2fb983967cb611c40e5d57",
551
551
  "source": "pip console launcher installed into embedded Python",
552
552
  "version": "see packaged pip distribution",
553
553
  "builtBy": "third-party",
@@ -555,7 +555,7 @@
555
555
  },
556
556
  {
557
557
  "path": "xll/python/Scripts/pip3.exe",
558
- "sha256": "1c0d88a63c83e6bb9ce9480ab1e5b1240cf391656806130748441871958fe337",
558
+ "sha256": "373818f3109b5b0e3d7f249ebced133b042d0e2ffd2fb983967cb611c40e5d57",
559
559
  "source": "pip console launcher installed into embedded Python",
560
560
  "version": "see packaged pip distribution",
561
561
  "builtBy": "third-party",
@@ -563,7 +563,7 @@
563
563
  },
564
564
  {
565
565
  "path": "xll/python/Scripts/pywin32_postinstall.exe",
566
- "sha256": "33c9bf469edc79cbdea68966e2b50eb15db5ba63278fec1befd274f00ef26bf4",
566
+ "sha256": "e6f28aa72208afcf845960aed0d938f48d993c78f111dab4da6e3c0b5f4a3a18",
567
567
  "source": "Python package console launcher installed into embedded Python",
568
568
  "version": "see owning Python package metadata in site-packages",
569
569
  "builtBy": "third-party",
@@ -571,7 +571,7 @@
571
571
  },
572
572
  {
573
573
  "path": "xll/python/Scripts/pywin32_testall.exe",
574
- "sha256": "f4ab6b20be97a838b4e2eb369c603136e8bcf7d8b1829dd30e7fd7a681b48e65",
574
+ "sha256": "3014d8654460053f2061f84ba4cfa908682a28e81780c53763ecc01a934fa4a8",
575
575
  "source": "Python package console launcher installed into embedded Python",
576
576
  "version": "see owning Python package metadata in site-packages",
577
577
  "builtBy": "third-party",
@@ -779,11 +779,11 @@
779
779
  },
780
780
  {
781
781
  "path": "xll/python/sqlite3.dll",
782
- "sha256": "aaae3fe73a4dda249da1ed740c087d1548a1ff7b73eaa7aa62c2354a581ee299",
783
- "source": "SQLite library bundled with CPython Windows embeddable runtime",
784
- "version": "see packaged python runtime",
782
+ "sha256": "73b045c910fc19a069bae2e2c7ebb5ea66fe6c85f166535a6e07e09155cd9e6d",
783
+ "source": "SQLite official precompiled Windows x64 DLL",
784
+ "version": "3.53.2",
785
785
  "builtBy": "third-party",
786
- "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
786
+ "verification": "Downloaded from sqlite.org sqlite-dll-win-x64-3530200.zip; upstream SHA3-256 is b898ced2e0627999d7d0b9d554ea53086a9b165e52ae743277d115dcd39e6868, and vendor-python.ps1 verifies extracted sqlite3.dll SHA256 73b045c910fc19a069bae2e2c7ebb5ea66fe6c85f166535a6e07e09155cd9e6d before copying."
787
787
  },
788
788
  {
789
789
  "path": "xll/python/unicodedata.pyd",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.62]
4
+
5
+ - **Windows runtime security** - Updated the embedded Windows SQLite DLL used by ShortcutXL's bundled Python runtime.
6
+ - **Default model update** - Updated the default model to Fable.
7
+
3
8
  ## [0.3.61]
4
9
 
5
10
  - **ShortcutXL plugin guidance** - Refreshed the bundled Claude and Codex ShortcutXL plugin guidance.
@@ -14,6 +14,6 @@
14
14
  ]
15
15
  },
16
16
  "dependencies": {
17
- "@anthropic-ai/sdk": "^0.52.0"
17
+ "@anthropic-ai/sdk": "0.91.1"
18
18
  }
19
19
  }
@@ -50,13 +50,13 @@
50
50
  "builtBy": "third-party",
51
51
  "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
52
52
  },
53
- {
54
- "pattern": "xll/python/sqlite3.dll",
55
- "source": "SQLite library bundled with CPython Windows embeddable runtime",
56
- "version": "see packaged python runtime",
57
- "builtBy": "third-party",
58
- "verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
59
- },
53
+ {
54
+ "pattern": "xll/python/sqlite3.dll",
55
+ "source": "SQLite official precompiled Windows x64 DLL",
56
+ "version": "3.53.2",
57
+ "builtBy": "third-party",
58
+ "verification": "Downloaded from sqlite.org sqlite-dll-win-x64-3530200.zip; upstream SHA3-256 is b898ced2e0627999d7d0b9d554ea53086a9b165e52ae743277d115dcd39e6868, and vendor-python.ps1 verifies extracted sqlite3.dll SHA256 73b045c910fc19a069bae2e2c7ebb5ea66fe6c85f166535a6e07e09155cd9e6d before copying."
59
+ },
60
60
  {
61
61
  "pattern": "xll/python/vcruntime*.dll",
62
62
  "source": "Microsoft Visual C++ runtime library bundled with CPython Windows embeddable runtime",
@@ -35,6 +35,14 @@ function createAgentSessionCore(session, pendingHostToolRequests) {
35
35
  session.replaceToolsByName(configuration.toolNames);
36
36
  session.agent.setSystemPrompt(configuration.systemPrompt);
37
37
  },
38
+ async controlTask(request) {
39
+ return {
40
+ ok: false,
41
+ action: request.action,
42
+ taskId: request.taskId,
43
+ reason: 'Task control is only available in the embedded ShortcutXL runtime.'
44
+ };
45
+ },
38
46
  dispose() {
39
47
  session.dispose();
40
48
  },
@@ -346,7 +346,7 @@ export declare class AgentSession {
346
346
  private _setAutonomousState;
347
347
  /** Reload autonomous-run state from the persisted session header on resume. */
348
348
  private _restoreAutonomousStateFromSession;
349
- /** Wrap a user prompt with autonomous-run framing before sending it to the model. */
349
+ /** Handle the product-owned /autonomous command before sending text to the model. */
350
350
  private _prepareAutonomousPrompt;
351
351
  /**
352
352
  * Queue a steering message to interrupt the agent mid-run.
@@ -362,7 +362,7 @@ export declare class AgentSession {
362
362
  * @param images Optional image attachments to include with the message
363
363
  */
364
364
  followUp(text: string, images?: ImageContent[]): Promise<void>;
365
- /** Resolve raw prompt text + images into the final agent-input shape (skills, autonomous, etc.). */
365
+ /** Resolve raw prompt text + images into the final agent-input shape. */
366
366
  private _preparePromptInput;
367
367
  /** Enqueue a steering message to be delivered before the next assistant response. */
368
368
  private _queueSteer;
@@ -22,7 +22,6 @@ import { isShortcutFastModeModel } from '../model-ids.js';
22
22
  import { formatFileUploadsContext, mergeFileUploads } from './file-uploads.js';
23
23
  import { createShortcutLlmProxyClient } from './providers/shortcut-llm-proxy-client.js';
24
24
  import { expandPromptTemplate } from './resources/prompt-template-expansion.js';
25
- import { parseSkillBlock } from './resources/skill-block.js';
26
25
  import { AUTONOMOUS_STATE_CUSTOM_TYPE, buildAutonomousRefreshPrompt, extractProgressFolder, inferAutonomousStateFromEntries } from './session/autonomous-workflow.js';
27
26
  import { BranchManager } from './session/branch-manager.js';
28
27
  import { parseBudgetCommand } from './session/budget-command.js';
@@ -756,7 +755,7 @@ export class AgentSession {
756
755
  enabled: true,
757
756
  originalUserTask: trimmed
758
757
  });
759
- await this.prompt(`[Skill:autonomous selected] ${trimmed}`);
758
+ await this.prompt(trimmed);
760
759
  }
761
760
  /** Stage a pending session refresh (mode/model swap) to be applied on the next prompt. */
762
761
  async preparePendingRefresh(refresh) {
@@ -977,7 +976,7 @@ export class AgentSession {
977
976
  _restoreAutonomousStateFromSession() {
978
977
  this._autonomousState = inferAutonomousStateFromEntries(this.sessionManager.getEntries());
979
978
  }
980
- /** Wrap a user prompt with autonomous-run framing before sending it to the model. */
979
+ /** Handle the product-owned /autonomous command before sending text to the model. */
981
980
  _prepareAutonomousPrompt(text) {
982
981
  if (!text.startsWith('/autonomous'))
983
982
  return text;
@@ -989,7 +988,7 @@ export class AgentSession {
989
988
  enabled: true,
990
989
  originalUserTask: task
991
990
  });
992
- return `[Skill:autonomous selected] ${task}`;
991
+ return task;
993
992
  }
994
993
  /**
995
994
  * Queue a steering message to interrupt the agent mid-run.
@@ -1025,7 +1024,7 @@ export class AgentSession {
1025
1024
  }
1026
1025
  await this._queueFollowUp(prepared.text, prepared.images);
1027
1026
  }
1028
- /** Resolve raw prompt text + images into the final agent-input shape (skills, autonomous, etc.). */
1027
+ /** Resolve raw prompt text + images into the final agent-input shape. */
1029
1028
  async _preparePromptInput(text, images, options) {
1030
1029
  let currentText = this._prepareAutonomousPrompt(text);
1031
1030
  let currentImages = images;
@@ -1050,13 +1049,6 @@ export class AgentSession {
1050
1049
  currentText = this._expandSkillCommand(currentText);
1051
1050
  currentText = expandPromptTemplate(currentText, [...this.promptTemplates]);
1052
1051
  }
1053
- const parsedSkill = parseSkillBlock(currentText);
1054
- if (parsedSkill?.name === 'autonomous' && parsedSkill.userMessage) {
1055
- this._setAutonomousState({
1056
- enabled: true,
1057
- originalUserTask: parsedSkill.userMessage
1058
- });
1059
- }
1060
1052
  if (options.commandMode === 'reject' && currentText.startsWith('/')) {
1061
1053
  assertNotExtensionCommand(currentText, extensionRunner);
1062
1054
  }
@@ -75,5 +75,6 @@ export interface SwitchModeApprovalData {
75
75
  currentMode: string;
76
76
  targetMode: string;
77
77
  reason?: string;
78
+ documentPath?: string;
78
79
  }
79
80
  //# sourceMappingURL=types.d.ts.map
@@ -19,9 +19,9 @@ const PLATFORM_PACKAGES = {
19
19
  let _cachedAddon;
20
20
  /**
21
21
  * Load the platform-native compute addon.
22
- * Same resolution as @mog-sdk/node's internal tryLoadNapiAddon.
22
+ * Same resolution as @mog-sdk/sdk's internal tryLoadNapiAddon.
23
23
  *
24
- * Uses createRequire anchored to @mog-sdk/node's package location so
24
+ * Uses createRequire anchored to @mog-sdk/sdk's package location so
25
25
  * pnpm's symlinked node_modules resolves the platform package correctly.
26
26
  */
27
27
  function loadNativeAddon() {
@@ -30,7 +30,7 @@ function loadNativeAddon() {
30
30
  // Resolve the SDK's main entry, then create require from its directory.
31
31
  // This ensures pnpm's symlinked deps (@mog-sdk/darwin-arm64 etc.) are findable.
32
32
  const req = createRequire(import.meta.url);
33
- const sdkEntry = req.resolve('@mog-sdk/node');
33
+ const sdkEntry = req.resolve('@mog-sdk/sdk');
34
34
  const sdkReq = createRequire(sdkEntry);
35
35
  const pkg = PLATFORM_PACKAGES[process.platform]?.[process.arch];
36
36
  if (!pkg)
@@ -24,6 +24,7 @@ export declare class CreditGate {
24
24
  creditsRemaining: number;
25
25
  isUnlimited: boolean;
26
26
  hasTeamBilling: boolean;
27
+ canSendMessage?: boolean;
27
28
  }): void;
28
29
  invalidate(): void;
29
30
  }
@@ -6,6 +6,9 @@
6
6
  *
7
7
  */
8
8
  import { fetchCreditBalance } from '../../credits/shortcut-credits.js';
9
+ function hasUsableCredits(balance) {
10
+ return balance.canSendMessage ?? (balance.isUnlimited || balance.creditsRemaining > 0);
11
+ }
9
12
  export class CreditGate {
10
13
  cachedResult = null;
11
14
  cachedAt = 0;
@@ -28,7 +31,7 @@ export class CreditGate {
28
31
  return { hasCredits: true, creditsRemaining: 0, isUnlimited: false, hasTeamBilling: false };
29
32
  }
30
33
  const result = {
31
- hasCredits: balance.isUnlimited || balance.creditsRemaining > 0,
34
+ hasCredits: hasUsableCredits(balance),
32
35
  creditsRemaining: balance.creditsRemaining,
33
36
  isUnlimited: balance.isUnlimited,
34
37
  hasTeamBilling: balance.hasTeamBilling
@@ -47,7 +50,7 @@ export class CreditGate {
47
50
  /** Populate the cache from an already-fetched balance (e.g. from polling). */
48
51
  populate(balance) {
49
52
  this.cachedResult = {
50
- hasCredits: balance.isUnlimited || balance.creditsRemaining > 0,
53
+ hasCredits: hasUsableCredits(balance),
51
54
  creditsRemaining: balance.creditsRemaining,
52
55
  isUnlimited: balance.isUnlimited,
53
56
  hasTeamBilling: balance.hasTeamBilling
@@ -5,6 +5,7 @@
5
5
  * Can switch to plan or installation mode.
6
6
  */
7
7
  import type { AgentDefinition } from '../../agent-definition.js';
8
+ export declare const ACTION_AGENT_TOOL_NAMES: ("write" | "bash" | "execute_code" | "task" | "send_message" | "switch_from_action_mode" | "refresh_context" | "mcp" | "get_tool_info" | "execute_tool")[];
8
9
  /** Construct the action-mode agent definition with the full execution toolset. */
9
10
  export declare function actionAgent(): AgentDefinition;
10
11
  //# sourceMappingURL=agent.d.ts.map
@@ -8,7 +8,7 @@ import { MODE } from '../../../mode-names.js';
8
8
  import { ACTION_SWITCH_MODE, BASH, EXECUTE_CODE, EXECUTE_TOOL, GET_TOOL_INFO, MCP_TOOL_NAMES, REFRESH_CONTEXT, SEND_MESSAGE, TASK, WRITE } from '../../../tool-names.js';
9
9
  import { buildActionPrompt } from './prompt.js';
10
10
  const DESCRIPTION = 'Execute changes to the spreadsheet.';
11
- const TOOLS = [
11
+ export const ACTION_AGENT_TOOL_NAMES = [
12
12
  BASH,
13
13
  WRITE,
14
14
  EXECUTE_CODE,
@@ -26,7 +26,7 @@ export function actionAgent() {
26
26
  name: MODE.ACTION,
27
27
  description: DESCRIPTION,
28
28
  systemPrompt: buildActionPrompt(),
29
- tools: TOOLS,
29
+ tools: ACTION_AGENT_TOOL_NAMES,
30
30
  switchTo: [MODE.PLAN, MODE.INSTALLATION]
31
31
  };
32
32
  }
@@ -24,8 +24,8 @@ Deliver professional-grade results with precise calculations, consistent formatt
24
24
  Beyond spreadsheets, you can interact with external services (email, databases, APIs, etc.). Check your docs and capabilities before telling the user you can't do something
25
25
  Current date: ${new Date().toISOString().slice(0, 10)}. Use this as single source of truth for time, overriding pretrained knowledge. Verify recency with tools for time-sensitive facts.
26
26
 
27
- General flow: execute code → verify → iterate on feedback. Respond in Markdown, be brief
28
- Avoid over-interpretation and don't be extra. Only make changes that are directly requested or clearly necessary
27
+ General flow: execute → verify yourself and via independent subagents → iterate on feedback.
28
+ Avoid over-interpretation and don't be extra. Only make changes that are directly requested or clearly necessary. Respond in Markdown, be brief
29
29
  Keep solutions simple and focused. For example, don't add extra sheets, reformat untouched areas, or make "improvements" beyond what was asked
30
30
  Do not add improvements, cleanup, formatting changes, structural edits, or extra analysis beyond what the user asked for.
31
31
  Match the scope of your actions to what was actually requested. Complete the requested task, but do not overstep.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Manage mode agent definition — sink orchestration mode.
3
3
  *
4
- * Delegates all work to subagents. No direct file/spreadsheet access.
4
+ * Delegates workbook work to subagents, with bash for coordination files and inspection.
5
5
  * Explicit /manage can enter it, but it does not switch out again.
6
6
  */
7
7
  import type { AgentDefinition } from '../../agent-definition.js';
@@ -1,14 +1,14 @@
1
1
  /**
2
2
  * Manage mode agent definition — sink orchestration mode.
3
3
  *
4
- * Delegates all work to subagents. No direct file/spreadsheet access.
4
+ * Delegates workbook work to subagents, with bash for coordination files and inspection.
5
5
  * Explicit /manage can enter it, but it does not switch out again.
6
6
  */
7
7
  import { MODE } from '../../../mode-names.js';
8
- import { EXECUTE_TOOL, GET_TOOL_INFO, MCP_TOOL_NAMES, SEND_MESSAGE, TASK } from '../../../tool-names.js';
8
+ import { BASH, EXECUTE_TOOL, GET_TOOL_INFO, MCP_TOOL_NAMES, SEND_MESSAGE, TASK } from '../../../tool-names.js';
9
9
  import { buildManagePrompt } from './prompt.js';
10
10
  const DESCRIPTION = 'Orchestration mode — decomposes complex tasks, delegates to subagents in parallel, and synthesizes results.';
11
- const TOOLS = [TASK, SEND_MESSAGE, GET_TOOL_INFO, EXECUTE_TOOL, ...MCP_TOOL_NAMES];
11
+ const TOOLS = [TASK, SEND_MESSAGE, GET_TOOL_INFO, EXECUTE_TOOL, BASH, ...MCP_TOOL_NAMES];
12
12
  /** Construct the manage-mode agent definition that orchestrates work via subagents. */
13
13
  export function manageAgent() {
14
14
  return {
@@ -6,7 +6,7 @@
6
6
  */
7
7
  import { buildCurrentSkillsSection } from '../../prompts/shared-guidelines.js';
8
8
  const MANAGE_BASE = `\
9
- You are Shortcut in Manage Mode — a pure orchestrator. You NEVER execute work directly. You decompose tasks, delegate to subagents via the task tool, and synthesize their results.
9
+ You are Shortcut in Manage Mode — an orchestrator. You decompose tasks, delegate workbook/document work to subagents via the task tool, use bash for coordination files and lightweight inspection, and synthesize results.
10
10
 
11
11
  Current date: ${new Date().toISOString().slice(0, 10)}. Use this as single source of truth for time.
12
12
 
@@ -15,8 +15,9 @@ Be concise and direct. No emojis. No filler phrases. Describe what you're delega
15
15
 
16
16
  ## YOU ARE IN MANAGE MODE
17
17
 
18
- You have NO direct access to the spreadsheet, file system, or shell. Your only tools are:
18
+ You do not directly edit the spreadsheet. Your tools are:
19
19
  - **task**: Spawn subagent workers (clone, document_reader, general)
20
+ - **bash**: Maintain progress files, inspect artifacts, run lightweight filesystem checks, and prepare clear handoffs. Do not use bash as a substitute for delegated workbook implementation.
20
21
  - **get_tool_info / execute_tool**: Inspect and invoke tools dynamically
21
22
  - **MCP tools**: Access external services via MCP
22
23
 
@@ -24,10 +25,12 @@ Mode switching is not available from Manage Mode. Finish orchestration here.
24
25
 
25
26
  ## Progress Tracking
26
27
 
27
- For complex multi-step work, make delegated workers maintain progress in small markdown files.
28
+ For substantial builds or edits, make delegated workers maintain progress in small markdown files. Progress files are for auditability and resumability, not just the worker's convenience.
28
29
  - Use a unique folder under \`/workspace/work/\`, such as \`/workspace/work/<task-slug>/\`.
29
- - A single \`status.md\` is enough for most tasks; use \`plan.md\` as well when the task has phases or acceptance criteria.
30
- - Tell workers to update current goal, completed steps, next step, blockers, and verification status as work proceeds.
30
+ - Require \`status.md\` when work creates or edits 3+ sheets, touches multiple workbook areas, has 3+ phases, requires source extraction, uses parallel/subagents, has nontrivial formulas, or includes enough decisions that a reviewer would need a record.
31
+ - When in doubt, require a concise \`status.md\`. A short status file is preferred over losing the decision trail.
32
+ - Use \`status.md\` for current goal, phase, completed work, next step, blockers, verification status, and decisions/rationale. Add \`plan.md\` when the task has phases or acceptance criteria.
33
+ - Tell workers to create/update \`status.md\` before the first major implementation step and after each phase or important decision.
31
34
  - Before context refreshes or autonomous resumes, workers must leave enough state for a fresh context to continue safely.
32
35
 
33
36
  ## Phased Workflow
@@ -54,7 +57,7 @@ Delegate implementation tasks to clone subagents. Each task MUST be self-contain
54
57
  Parallelize independent tasks. Serialize dependent ones.
55
58
 
56
59
  ### 4. Verification Phase
57
- Launch verification subagent(s) to check results against requirements.
60
+ Launch verification subagent(s) in the background to check results against requirements unless the next orchestration step must wait for the verdict.
58
61
  - Read back all modified cells and verify values
59
62
  - Check formula linkages and cross-sheet references
60
63
  - Confirm formatting matches conventions
@@ -8,16 +8,7 @@ import { MODE } from '../../../mode-names.js';
8
8
  import { BASH, EXECUTE_CODE, EXECUTE_TOOL, FIND, GET_TOOL_INFO, GREP, LLM_ANALYSIS, LS, MCP_TOOL_NAMES, PLAN_SWITCH_MODE, READ } from '../../../tool-names.js';
9
9
  import { buildPlanPrompt } from './prompt.js';
10
10
  const DESCRIPTION = `\
11
- Read-only planning mode explores workbook, asks clarifying questions, produces implementation plan.
12
- Switch to plan mode for: user frustrations, ambiguous asks, subjective asks, and complex workbooks.
13
- - Multi-sheet financial models, DCF valuations, comprehensive dashboards
14
- - Major structural reorganizations affecting multiple sheets
15
- - Truly ambiguous asks: "build a DCF", "create executive KPI dashboard"
16
- - Vague requests: "this is broken", "help", "make this look better"
17
-
18
- DON'T switch to plan mode when:
19
- - Recent messages already established what needs to be done
20
- - The user just confirmed or approved a course of action`;
11
+ Read-only planning mode for exploration, clarifying requirements and drafting an implementation plan.`;
21
12
  const TOOLS = [
22
13
  BASH,
23
14
  EXECUTE_CODE,
@@ -37,7 +37,7 @@ ${engine.execTool}
37
37
  1. Gauge user experience: If unclear from their query, ASK about their spreadsheet familiarity first - then adapt all explanations accordingly (beginners need more context, experts want concise trade-offs)
38
38
  2. After exploration: State (1) task understanding (MAX 3-4 lines), (2) list ALL open questions upfront with a brief description of each (e.g., "I need to clarify 3 things: 1) how to handle missing data, 2) whether to use formulas or static values, 3) where to place output"), (3) first question
39
39
  3. ONE question per response. Before each question, state which open items remain (e.g., "Still need to resolve: output location, formula vs static values."). If a user's answer resolves multiple items, acknowledge that and move on. Do NOT re-count or renumber — just reference the open items by topic.
40
- 4. Call switch_from_plan_mode(mode: "action", reason: <plan>) with plan (MAX 250 words)
40
+ 4. Write the final plan as markdown to a file under /tmp, then call switch_from_plan_mode(mode: "action", documentPath: "<that file path>").
41
41
  5. If plan rejected: Restart question cycle to understand needed changes
42
42
 
43
43
  **Critical Rules:**
@@ -65,8 +65,8 @@ Structure:
65
65
  - **Recommendation: [Letter]** - Your reasoning, or explain why you're uncertain
66
66
  - **[Bold question]?**
67
67
 
68
- **Final Plan Format (MAX 250 words):**
69
- Call switch_from_plan_mode(mode: "action", reason: <your plan>) with high-level plan (logical operations + key cells - NO specific arguments/parameters/formulas):
68
+ **Final Plan Format:**
69
+ Write the full plan as markdown to a file under /tmp. Then call switch_from_plan_mode(mode: "action", documentPath: "<that file path>").
70
70
 
71
71
  \`\`\`
72
72
  Task: [One sentence]
@@ -83,7 +83,7 @@ Things to Watch Out For:
83
83
  - [Key considerations and edge cases]
84
84
  \`\`\`
85
85
 
86
- MUST call switch_from_plan_mode(mode: "action", reason: <plan>) - do NOT output plan directly.
86
+ MUST call switch_from_plan_mode(mode: "action", documentPath: "<that file path>") - do NOT output plan directly.
87
87
  `;
88
88
  // ---------------------------------------------------------------------------
89
89
  // Assembly
@@ -14,6 +14,7 @@ export interface ModeSettings {
14
14
  export interface SwitchModeOptions {
15
15
  settings?: ModeSettings;
16
16
  reason?: string;
17
+ documentPath?: string;
17
18
  ctx?: Pick<ExtensionContext, 'hasUI' | 'ui'>;
18
19
  confirm?: (request: ModeSwitchConfirmationRequest) => Promise<boolean>;
19
20
  /** Bypass switchTo constraints (used by slash commands — user explicitly chose the mode). */
@@ -23,6 +24,7 @@ export interface ModeSwitchConfirmationRequest {
23
24
  currentMode: string;
24
25
  targetMode: string;
25
26
  reason?: string;
27
+ documentPath?: string;
26
28
  ctx?: Pick<ExtensionContext, 'hasUI' | 'ui'>;
27
29
  }
28
30
  export declare function requiresModeSwitchConfirmation(currentMode: string, targetMode: string): boolean;
@@ -14,12 +14,16 @@ export function requiresModeSwitchConfirmation(currentMode, targetMode) {
14
14
  function formatModeName(mode) {
15
15
  return mode.length > 0 ? mode.charAt(0).toUpperCase() + mode.slice(1) : mode;
16
16
  }
17
- async function confirmModeSwitch(currentMode, targetMode, reason, ctx) {
17
+ async function confirmModeSwitch(currentMode, targetMode, reason, documentPath, ctx) {
18
18
  if (!ctx?.hasUI)
19
19
  return true;
20
20
  const title = chalk.green(`Switch from ${formatModeName(currentMode)} to ${formatModeName(targetMode)}`);
21
21
  const trimmedReason = reason?.trim();
22
- const message = trimmedReason ? `${title}\n\n${trimmedReason}` : title;
22
+ const trimmedDocumentPath = documentPath?.trim();
23
+ const documentPathText = trimmedDocumentPath
24
+ ? `\n\nThis document as written is saved at:\n${trimmedDocumentPath}`
25
+ : '';
26
+ const message = trimmedReason ? `${title}\n\n${trimmedReason}${documentPathText}` : title;
23
27
  return (await ctx.ui.select(message, ['Confirm', 'Cancel'])) === 'Confirm';
24
28
  }
25
29
  function applyModeSwitch(session, target, settings) {
@@ -46,7 +50,7 @@ function applyModeSwitch(session, target, settings) {
46
50
  })));
47
51
  }
48
52
  export async function switchMode(session, modeName, opts = {}) {
49
- const { settings, reason, ctx, confirm, force } = opts;
53
+ const { settings, reason, documentPath, ctx, confirm, force } = opts;
50
54
  const currentMode = getCurrentMode();
51
55
  if (modeName === currentMode) {
52
56
  return { ok: false, message: `Already in ${currentMode} mode.` };
@@ -79,14 +83,18 @@ export async function switchMode(session, modeName, opts = {}) {
79
83
  }
80
84
  if (requiresModeSwitchConfirmation(currentMode, target.name)) {
81
85
  const confirmed = confirm
82
- ? await confirm({ currentMode, targetMode: target.name, reason, ctx })
83
- : await confirmModeSwitch(currentMode, target.name, reason, ctx);
86
+ ? await confirm({ currentMode, targetMode: target.name, reason, documentPath, ctx })
87
+ : await confirmModeSwitch(currentMode, target.name, reason, documentPath, ctx);
84
88
  if (!confirmed) {
85
89
  return { ok: false, message: 'User cancelled the mode switch.' };
86
90
  }
87
91
  }
88
92
  applyModeSwitch(session, target, settings);
89
93
  const reasonText = reason ? `\nReason: ${reason}` : '';
90
- return { ok: true, message: `Switched to ${target.name} mode.${reasonText}` };
94
+ const trimmedDocumentPath = documentPath?.trim();
95
+ const documentPathText = trimmedDocumentPath
96
+ ? `\nThis document as written is saved at:\n${trimmedDocumentPath}`
97
+ : '';
98
+ return { ok: true, message: `Switched to ${target.name} mode.${reasonText}${documentPathText}` };
91
99
  }
92
100
  //# sourceMappingURL=switch-mode.js.map
@@ -4,7 +4,7 @@
4
4
  * TODO: Indirect change tracking — detect formula dependents that recalculate
5
5
  * when a direct cell is mutated. Currently all changes are marked as direct.
6
6
  */
7
- /** Excel error strings returned by @mog-sdk/node (0.1.12+). */
7
+ /** Excel error strings returned by @mog-sdk/sdk. */
8
8
  export declare const EXCEL_ERRORS: Set<string>;
9
9
  /** Returns true if a value is an Excel error string. */
10
10
  export declare function isExcelError(val: unknown): val is string;
@@ -4,7 +4,7 @@
4
4
  * TODO: Indirect change tracking — detect formula dependents that recalculate
5
5
  * when a direct cell is mutated. Currently all changes are marked as direct.
6
6
  */
7
- /** Excel error strings returned by @mog-sdk/node (0.1.12+). */
7
+ /** Excel error strings returned by @mog-sdk/sdk. */
8
8
  export const EXCEL_ERRORS = new Set([
9
9
  '#DIV/0!',
10
10
  '#NAME?',
@@ -1,5 +1,5 @@
1
1
  /**
2
- * SDK type seam — the ONLY file in new-sheet/ that imports @mog-sdk/node.
2
+ * SDK type seam — the ONLY file in new-sheet/ that imports @mog-sdk/sdk.
3
3
  *
4
4
  * All other new-sheet files import from here. To sever the SDK dependency
5
5
  * (e.g. for a build that excludes new-sheet), this is the single cut point.
@@ -9,7 +9,7 @@ export interface Worksheet {
9
9
  }
10
10
  /**
11
11
  * Workbook type with runtime-only properties that exist on WorkbookImpl
12
- * but aren't part of the public @mog-sdk/node .d.ts yet.
12
+ * but aren't part of the public @mog-sdk/sdk .d.ts yet.
13
13
  *
14
14
  * - activeSheet: sync property returning the active Worksheet
15
15
  * - sheetNames: sync property returning sheet name list
@@ -1,12 +1,12 @@
1
1
  /**
2
- * SDK type seam — the ONLY file in new-sheet/ that imports @mog-sdk/node.
2
+ * SDK type seam — the ONLY file in new-sheet/ that imports @mog-sdk/sdk.
3
3
  *
4
4
  * All other new-sheet files import from here. To sever the SDK dependency
5
5
  * (e.g. for a build that excludes new-sheet), this is the single cut point.
6
6
  */
7
7
  import { createRequire } from 'node:module';
8
8
  let sdkModulePromise = null;
9
- const MOG_SDK_NODE_SPECIFIER = '@mog-sdk/node';
9
+ const MOG_SDK_NODE_SPECIFIER = '@mog-sdk/sdk';
10
10
  const requireFromHere = createRequire(import.meta.url);
11
11
  export function isMogSdkAvailable() {
12
12
  try {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Sheet Engine Pool — manages multiple headless workbooks via @mog-sdk/node.
2
+ * Sheet Engine Pool — manages multiple headless workbooks via @mog-sdk/sdk.
3
3
  *
4
4
  * Each workbook is created through the SDK's createWorkbook() function.
5
5
  * Uses the full kernel so formulas, undo, and CRDT sync all work correctly.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Sheet Engine Pool — manages multiple headless workbooks via @mog-sdk/node.
2
+ * Sheet Engine Pool — manages multiple headless workbooks via @mog-sdk/sdk.
3
3
  *
4
4
  * Each workbook is created through the SDK's createWorkbook() function.
5
5
  * Uses the full kernel so formulas, undo, and CRDT sync all work correctly.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Model resolution, scoping, and initial selection
3
3
  */
4
- import { type Api, type KnownProvider, type Model } from '../../ai/types.js';
4
+ import { type Api, type Model } from '../../ai/types.js';
5
5
  import type { AgentModelRegistry } from '../../contracts/agent-model.js';
6
6
  import type { ThinkingLevel } from '../../core/core-types.js';
7
7
  export declare function formatModelRef(model: Pick<Model<any>, 'provider' | 'id'>): string;
@@ -16,8 +16,8 @@ export interface ExactModelRefResult {
16
16
  * must be unambiguous. Model ids may themselves contain slashes.
17
17
  */
18
18
  export declare function resolveExactModelRef(availableModels: readonly Model<any>[], requested: string): ExactModelRefResult;
19
- /** Default model IDs for each known provider */
20
- export declare const defaultModelPerProvider: Record<KnownProvider, string>;
19
+ /** Default model IDs for each provider with a preferred initial model. */
20
+ export declare const defaultModelPerProvider: Record<string, string>;
21
21
  export interface ParsedModelResult {
22
22
  model: Model<Api> | undefined;
23
23
  /** Thinking level if explicitly specified in pattern, undefined otherwise */