shortcutxl 0.2.17 → 0.2.19

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 (947) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/agent-docs/xll-skill.md +4 -4
  3. package/dist/cli/args.js +3 -0
  4. package/dist/config.js +15 -2
  5. package/dist/core/agent-session.js +17 -13
  6. package/dist/core/footer-data-provider.js +9 -0
  7. package/dist/core/sdk.js +1 -0
  8. package/dist/core/settings-manager.js +91 -1
  9. package/dist/core/slash-commands.js +3 -5
  10. package/dist/core/tools/bash.js +32 -4
  11. package/dist/custom/agents/index.js +2 -3
  12. package/dist/custom/auth/keep-alive.js +23 -0
  13. package/dist/custom/constants.js +1 -1
  14. package/dist/custom/context/workbook-summary.js +2 -3
  15. package/dist/custom/dev/index.js +7 -16
  16. package/dist/custom/dev/trace-export.js +3 -4
  17. package/dist/custom/excel-config.js +2 -1
  18. package/dist/custom/excel-session.js +76 -0
  19. package/dist/custom/preflight.js +8 -6
  20. package/dist/custom/prompts/action.js +4 -1
  21. package/dist/custom/prompts/api.js +8 -2
  22. package/dist/custom/providers/register-shortcut-provider.js +4 -1
  23. package/dist/custom/providers/shortcut-invoke.js +3 -2
  24. package/dist/custom/providers/shortcut-stream.js +3 -2
  25. package/dist/custom/sandbox/index.js +17 -0
  26. package/dist/custom/sandbox/network/index.js +8 -0
  27. package/dist/custom/sandbox/network/network-proxy.js +136 -0
  28. package/dist/custom/sandbox/network/proxy-worker.py +257 -0
  29. package/dist/custom/sandbox/sandbox-bash-tool.js +84 -0
  30. package/dist/custom/sandbox/sandbox-command.js +172 -0
  31. package/dist/custom/sandbox/sandbox-config.js +153 -0
  32. package/dist/custom/sandbox/sandbox-executor.js +130 -0
  33. package/dist/custom/sandbox/sandbox-manager.js +59 -0
  34. package/dist/custom/sandbox/sandbox-paths.js +23 -0
  35. package/dist/custom/sandbox/sandbox-prompt.js +80 -0
  36. package/dist/custom/sandbox/sandbox-smoke.js +49 -0
  37. package/dist/custom/sandbox/wsl-detect.js +69 -0
  38. package/dist/custom/sandbox/wsl-setup.js +92 -0
  39. package/dist/custom/sync-xll.js +3 -2
  40. package/dist/custom/tools/approval.js +144 -0
  41. package/dist/custom/tools/bash-approval.js +36 -0
  42. package/dist/custom/tools/excel-approval.js +23 -81
  43. package/dist/custom/tools/excel-exec.js +26 -4
  44. package/dist/custom/tools/tool-approval.js +57 -0
  45. package/dist/custom/tracing/session-upload.js +2 -3
  46. package/dist/main.js +67 -28
  47. package/dist/modes/interactive/components/footer.js +4 -0
  48. package/dist/modes/interactive/components/settings-selector.js +11 -1
  49. package/dist/modes/interactive/interactive-mode.js +23 -9
  50. package/dist/modes/print-mode.js +1 -1
  51. package/dist/subagent-entry.js +6 -5
  52. package/dist/utils/shell.js +4 -1
  53. package/package.json +7 -3
  54. package/wsl/alpine-minirootfs.tar.gz +0 -0
  55. package/xll/ShortcutXL.xll +0 -0
  56. package/xll/modules/shortcut_xl/_diff_highlight.py +229 -229
  57. package/xll/modules/shortcut_xl/_exec_entry.py +46 -0
  58. package/xll/modules/shortcut_xl/_managed.py +63 -32
  59. package/xll/modules/shortcut_xl/_sandbox.py +5 -0
  60. package/xll/modules/shortcut_xl/_threading.py +9 -7
  61. package/xll/modules/shortcut_xl/api/__init__.py +0 -3
  62. package/xll/python/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc +0 -0
  63. package/xll/python/Lib/site-packages/anyio/__init__.py +111 -0
  64. package/xll/python/Lib/site-packages/anyio/__pycache__/__init__.cpython-312.pyc +0 -0
  65. package/xll/python/Lib/site-packages/anyio/__pycache__/from_thread.cpython-312.pyc +0 -0
  66. package/xll/python/Lib/site-packages/anyio/__pycache__/functools.cpython-312.pyc +0 -0
  67. package/xll/python/Lib/site-packages/anyio/__pycache__/lowlevel.cpython-312.pyc +0 -0
  68. package/xll/python/Lib/site-packages/anyio/__pycache__/pytest_plugin.cpython-312.pyc +0 -0
  69. package/xll/python/Lib/site-packages/anyio/__pycache__/to_interpreter.cpython-312.pyc +0 -0
  70. package/xll/python/Lib/site-packages/anyio/__pycache__/to_process.cpython-312.pyc +0 -0
  71. package/xll/python/Lib/site-packages/anyio/__pycache__/to_thread.cpython-312.pyc +0 -0
  72. package/xll/python/Lib/site-packages/anyio/_backends/__init__.py +0 -0
  73. package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
  74. package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-312.pyc +0 -0
  75. package/xll/python/Lib/site-packages/anyio/_backends/__pycache__/_trio.cpython-312.pyc +0 -0
  76. package/xll/python/Lib/site-packages/anyio/_backends/_asyncio.py +2980 -0
  77. package/xll/python/Lib/site-packages/anyio/_backends/_trio.py +1346 -0
  78. package/xll/python/Lib/site-packages/anyio/_core/__init__.py +0 -0
  79. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/__init__.cpython-312.pyc +0 -0
  80. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_asyncio_selector_thread.cpython-312.pyc +0 -0
  81. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_contextmanagers.cpython-312.pyc +0 -0
  82. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_eventloop.cpython-312.pyc +0 -0
  83. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_exceptions.cpython-312.pyc +0 -0
  84. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_fileio.cpython-312.pyc +0 -0
  85. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_resources.cpython-312.pyc +0 -0
  86. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_signals.cpython-312.pyc +0 -0
  87. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_sockets.cpython-312.pyc +0 -0
  88. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_streams.cpython-312.pyc +0 -0
  89. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-312.pyc +0 -0
  90. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_synchronization.cpython-312.pyc +0 -0
  91. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tasks.cpython-312.pyc +0 -0
  92. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_tempfile.cpython-312.pyc +0 -0
  93. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_testing.cpython-312.pyc +0 -0
  94. package/xll/python/Lib/site-packages/anyio/_core/__pycache__/_typedattr.cpython-312.pyc +0 -0
  95. package/xll/python/Lib/site-packages/anyio/_core/_asyncio_selector_thread.py +167 -0
  96. package/xll/python/Lib/site-packages/anyio/_core/_contextmanagers.py +200 -0
  97. package/xll/python/Lib/site-packages/anyio/_core/_eventloop.py +234 -0
  98. package/xll/python/Lib/site-packages/anyio/_core/_exceptions.py +156 -0
  99. package/xll/python/Lib/site-packages/anyio/_core/_fileio.py +797 -0
  100. package/xll/python/Lib/site-packages/anyio/_core/_resources.py +18 -0
  101. package/xll/python/Lib/site-packages/anyio/_core/_signals.py +29 -0
  102. package/xll/python/Lib/site-packages/anyio/_core/_sockets.py +1003 -0
  103. package/xll/python/Lib/site-packages/anyio/_core/_streams.py +52 -0
  104. package/xll/python/Lib/site-packages/anyio/_core/_subprocesses.py +202 -0
  105. package/xll/python/Lib/site-packages/anyio/_core/_synchronization.py +753 -0
  106. package/xll/python/Lib/site-packages/anyio/_core/_tasks.py +173 -0
  107. package/xll/python/Lib/site-packages/anyio/_core/_tempfile.py +616 -0
  108. package/xll/python/Lib/site-packages/anyio/_core/_testing.py +82 -0
  109. package/xll/python/Lib/site-packages/anyio/_core/_typedattr.py +81 -0
  110. package/xll/python/Lib/site-packages/anyio/abc/__init__.py +58 -0
  111. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/__init__.cpython-312.pyc +0 -0
  112. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_eventloop.cpython-312.pyc +0 -0
  113. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_resources.cpython-312.pyc +0 -0
  114. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_sockets.cpython-312.pyc +0 -0
  115. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_streams.cpython-312.pyc +0 -0
  116. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-312.pyc +0 -0
  117. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_tasks.cpython-312.pyc +0 -0
  118. package/xll/python/Lib/site-packages/anyio/abc/__pycache__/_testing.cpython-312.pyc +0 -0
  119. package/xll/python/Lib/site-packages/anyio/abc/_eventloop.py +414 -0
  120. package/xll/python/Lib/site-packages/anyio/abc/_resources.py +33 -0
  121. package/xll/python/Lib/site-packages/anyio/abc/_sockets.py +405 -0
  122. package/xll/python/Lib/site-packages/anyio/abc/_streams.py +239 -0
  123. package/xll/python/Lib/site-packages/anyio/abc/_subprocesses.py +79 -0
  124. package/xll/python/Lib/site-packages/anyio/abc/_tasks.py +117 -0
  125. package/xll/python/Lib/site-packages/anyio/abc/_testing.py +65 -0
  126. package/xll/python/Lib/site-packages/anyio/from_thread.py +578 -0
  127. package/xll/python/Lib/site-packages/anyio/functools.py +375 -0
  128. package/xll/python/Lib/site-packages/anyio/lowlevel.py +196 -0
  129. package/xll/python/Lib/site-packages/anyio/py.typed +0 -0
  130. package/xll/python/Lib/site-packages/anyio/pytest_plugin.py +302 -0
  131. package/xll/python/Lib/site-packages/anyio/streams/__init__.py +0 -0
  132. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/__init__.cpython-312.pyc +0 -0
  133. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/buffered.cpython-312.pyc +0 -0
  134. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/file.cpython-312.pyc +0 -0
  135. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/memory.cpython-312.pyc +0 -0
  136. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/stapled.cpython-312.pyc +0 -0
  137. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/text.cpython-312.pyc +0 -0
  138. package/xll/python/Lib/site-packages/anyio/streams/__pycache__/tls.cpython-312.pyc +0 -0
  139. package/xll/python/Lib/site-packages/anyio/streams/buffered.py +188 -0
  140. package/xll/python/Lib/site-packages/anyio/streams/file.py +154 -0
  141. package/xll/python/Lib/site-packages/anyio/streams/memory.py +325 -0
  142. package/xll/python/Lib/site-packages/anyio/streams/stapled.py +147 -0
  143. package/xll/python/Lib/site-packages/anyio/streams/text.py +176 -0
  144. package/xll/python/Lib/site-packages/anyio/streams/tls.py +424 -0
  145. package/xll/python/Lib/site-packages/anyio/to_interpreter.py +246 -0
  146. package/xll/python/Lib/site-packages/anyio/to_process.py +266 -0
  147. package/xll/python/Lib/site-packages/anyio/to_thread.py +78 -0
  148. package/xll/python/Lib/site-packages/anyio-4.12.1.dist-info/INSTALLER +1 -0
  149. package/xll/python/Lib/site-packages/anyio-4.12.1.dist-info/METADATA +96 -0
  150. package/xll/python/Lib/site-packages/anyio-4.12.1.dist-info/RECORD +92 -0
  151. package/xll/python/Lib/site-packages/anyio-4.12.1.dist-info/WHEEL +5 -0
  152. package/xll/python/Lib/site-packages/anyio-4.12.1.dist-info/entry_points.txt +2 -0
  153. package/xll/python/Lib/site-packages/anyio-4.12.1.dist-info/licenses/LICENSE +20 -0
  154. package/xll/python/Lib/site-packages/anyio-4.12.1.dist-info/top_level.txt +1 -0
  155. package/xll/python/Lib/site-packages/certifi/__init__.py +4 -0
  156. package/xll/python/Lib/site-packages/certifi/__main__.py +12 -0
  157. package/xll/python/Lib/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  158. package/xll/python/Lib/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  159. package/xll/python/Lib/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
  160. package/xll/python/Lib/site-packages/certifi/cacert.pem +4494 -0
  161. package/xll/python/Lib/site-packages/certifi/core.py +83 -0
  162. package/xll/python/Lib/site-packages/certifi/py.typed +0 -0
  163. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/INSTALLER +1 -0
  164. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/METADATA +78 -0
  165. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/RECORD +14 -0
  166. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/WHEEL +5 -0
  167. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/licenses/LICENSE +20 -0
  168. package/xll/python/Lib/site-packages/certifi-2026.2.25.dist-info/top_level.txt +1 -0
  169. package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/__init__.cpython-312.pyc +0 -0
  170. package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/incremental_tree.cpython-312.pyc +0 -0
  171. package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-312.pyc +0 -0
  172. package/xll/python/Lib/site-packages/h11/__init__.py +62 -0
  173. package/xll/python/Lib/site-packages/h11/__pycache__/__init__.cpython-312.pyc +0 -0
  174. package/xll/python/Lib/site-packages/h11/__pycache__/_abnf.cpython-312.pyc +0 -0
  175. package/xll/python/Lib/site-packages/h11/__pycache__/_connection.cpython-312.pyc +0 -0
  176. package/xll/python/Lib/site-packages/h11/__pycache__/_events.cpython-312.pyc +0 -0
  177. package/xll/python/Lib/site-packages/h11/__pycache__/_headers.cpython-312.pyc +0 -0
  178. package/xll/python/Lib/site-packages/h11/__pycache__/_readers.cpython-312.pyc +0 -0
  179. package/xll/python/Lib/site-packages/h11/__pycache__/_receivebuffer.cpython-312.pyc +0 -0
  180. package/xll/python/Lib/site-packages/h11/__pycache__/_state.cpython-312.pyc +0 -0
  181. package/xll/python/Lib/site-packages/h11/__pycache__/_util.cpython-312.pyc +0 -0
  182. package/xll/python/Lib/site-packages/h11/__pycache__/_version.cpython-312.pyc +0 -0
  183. package/xll/python/Lib/site-packages/h11/__pycache__/_writers.cpython-312.pyc +0 -0
  184. package/xll/python/Lib/site-packages/h11/_abnf.py +132 -0
  185. package/xll/python/Lib/site-packages/h11/_connection.py +659 -0
  186. package/xll/python/Lib/site-packages/h11/_events.py +369 -0
  187. package/xll/python/Lib/site-packages/h11/_headers.py +282 -0
  188. package/xll/python/Lib/site-packages/h11/_readers.py +250 -0
  189. package/xll/python/Lib/site-packages/h11/_receivebuffer.py +153 -0
  190. package/xll/python/Lib/site-packages/h11/_state.py +365 -0
  191. package/xll/python/Lib/site-packages/h11/_util.py +135 -0
  192. package/xll/python/Lib/site-packages/h11/_version.py +16 -0
  193. package/xll/python/Lib/site-packages/h11/_writers.py +145 -0
  194. package/xll/python/Lib/site-packages/h11/py.typed +1 -0
  195. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/INSTALLER +1 -0
  196. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/METADATA +202 -0
  197. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/RECORD +29 -0
  198. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/WHEEL +5 -0
  199. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/licenses/LICENSE.txt +22 -0
  200. package/xll/python/Lib/site-packages/h11-0.16.0.dist-info/top_level.txt +1 -0
  201. package/xll/python/Lib/site-packages/httpcore/__init__.py +141 -0
  202. package/xll/python/Lib/site-packages/httpcore/__pycache__/__init__.cpython-312.pyc +0 -0
  203. package/xll/python/Lib/site-packages/httpcore/__pycache__/_api.cpython-312.pyc +0 -0
  204. package/xll/python/Lib/site-packages/httpcore/__pycache__/_exceptions.cpython-312.pyc +0 -0
  205. package/xll/python/Lib/site-packages/httpcore/__pycache__/_models.cpython-312.pyc +0 -0
  206. package/xll/python/Lib/site-packages/httpcore/__pycache__/_ssl.cpython-312.pyc +0 -0
  207. package/xll/python/Lib/site-packages/httpcore/__pycache__/_synchronization.cpython-312.pyc +0 -0
  208. package/xll/python/Lib/site-packages/httpcore/__pycache__/_trace.cpython-312.pyc +0 -0
  209. package/xll/python/Lib/site-packages/httpcore/__pycache__/_utils.cpython-312.pyc +0 -0
  210. package/xll/python/Lib/site-packages/httpcore/_api.py +94 -0
  211. package/xll/python/Lib/site-packages/httpcore/_async/__init__.py +39 -0
  212. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/__init__.cpython-312.pyc +0 -0
  213. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection.cpython-312.pyc +0 -0
  214. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/connection_pool.cpython-312.pyc +0 -0
  215. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http11.cpython-312.pyc +0 -0
  216. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http2.cpython-312.pyc +0 -0
  217. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/http_proxy.cpython-312.pyc +0 -0
  218. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/interfaces.cpython-312.pyc +0 -0
  219. package/xll/python/Lib/site-packages/httpcore/_async/__pycache__/socks_proxy.cpython-312.pyc +0 -0
  220. package/xll/python/Lib/site-packages/httpcore/_async/connection.py +222 -0
  221. package/xll/python/Lib/site-packages/httpcore/_async/connection_pool.py +420 -0
  222. package/xll/python/Lib/site-packages/httpcore/_async/http11.py +379 -0
  223. package/xll/python/Lib/site-packages/httpcore/_async/http2.py +592 -0
  224. package/xll/python/Lib/site-packages/httpcore/_async/http_proxy.py +367 -0
  225. package/xll/python/Lib/site-packages/httpcore/_async/interfaces.py +137 -0
  226. package/xll/python/Lib/site-packages/httpcore/_async/socks_proxy.py +341 -0
  227. package/xll/python/Lib/site-packages/httpcore/_backends/__init__.py +0 -0
  228. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/__init__.cpython-312.pyc +0 -0
  229. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/anyio.cpython-312.pyc +0 -0
  230. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/auto.cpython-312.pyc +0 -0
  231. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/base.cpython-312.pyc +0 -0
  232. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/mock.cpython-312.pyc +0 -0
  233. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/sync.cpython-312.pyc +0 -0
  234. package/xll/python/Lib/site-packages/httpcore/_backends/__pycache__/trio.cpython-312.pyc +0 -0
  235. package/xll/python/Lib/site-packages/httpcore/_backends/anyio.py +146 -0
  236. package/xll/python/Lib/site-packages/httpcore/_backends/auto.py +52 -0
  237. package/xll/python/Lib/site-packages/httpcore/_backends/base.py +101 -0
  238. package/xll/python/Lib/site-packages/httpcore/_backends/mock.py +143 -0
  239. package/xll/python/Lib/site-packages/httpcore/_backends/sync.py +241 -0
  240. package/xll/python/Lib/site-packages/httpcore/_backends/trio.py +159 -0
  241. package/xll/python/Lib/site-packages/httpcore/_exceptions.py +81 -0
  242. package/xll/python/Lib/site-packages/httpcore/_models.py +516 -0
  243. package/xll/python/Lib/site-packages/httpcore/_ssl.py +9 -0
  244. package/xll/python/Lib/site-packages/httpcore/_sync/__init__.py +39 -0
  245. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/__init__.cpython-312.pyc +0 -0
  246. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection.cpython-312.pyc +0 -0
  247. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/connection_pool.cpython-312.pyc +0 -0
  248. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http11.cpython-312.pyc +0 -0
  249. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http2.cpython-312.pyc +0 -0
  250. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/http_proxy.cpython-312.pyc +0 -0
  251. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/interfaces.cpython-312.pyc +0 -0
  252. package/xll/python/Lib/site-packages/httpcore/_sync/__pycache__/socks_proxy.cpython-312.pyc +0 -0
  253. package/xll/python/Lib/site-packages/httpcore/_sync/connection.py +222 -0
  254. package/xll/python/Lib/site-packages/httpcore/_sync/connection_pool.py +420 -0
  255. package/xll/python/Lib/site-packages/httpcore/_sync/http11.py +379 -0
  256. package/xll/python/Lib/site-packages/httpcore/_sync/http2.py +592 -0
  257. package/xll/python/Lib/site-packages/httpcore/_sync/http_proxy.py +367 -0
  258. package/xll/python/Lib/site-packages/httpcore/_sync/interfaces.py +137 -0
  259. package/xll/python/Lib/site-packages/httpcore/_sync/socks_proxy.py +341 -0
  260. package/xll/python/Lib/site-packages/httpcore/_synchronization.py +318 -0
  261. package/xll/python/Lib/site-packages/httpcore/_trace.py +107 -0
  262. package/xll/python/Lib/site-packages/httpcore/_utils.py +37 -0
  263. package/xll/python/Lib/site-packages/httpcore/py.typed +0 -0
  264. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/INSTALLER +1 -0
  265. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/METADATA +625 -0
  266. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/RECORD +68 -0
  267. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/WHEEL +4 -0
  268. package/xll/python/Lib/site-packages/httpcore-1.0.9.dist-info/licenses/LICENSE.md +27 -0
  269. package/xll/python/Lib/site-packages/httpx/__init__.py +105 -0
  270. package/xll/python/Lib/site-packages/httpx/__pycache__/__init__.cpython-312.pyc +0 -0
  271. package/xll/python/Lib/site-packages/httpx/__pycache__/__version__.cpython-312.pyc +0 -0
  272. package/xll/python/Lib/site-packages/httpx/__pycache__/_api.cpython-312.pyc +0 -0
  273. package/xll/python/Lib/site-packages/httpx/__pycache__/_auth.cpython-312.pyc +0 -0
  274. package/xll/python/Lib/site-packages/httpx/__pycache__/_client.cpython-312.pyc +0 -0
  275. package/xll/python/Lib/site-packages/httpx/__pycache__/_config.cpython-312.pyc +0 -0
  276. package/xll/python/Lib/site-packages/httpx/__pycache__/_content.cpython-312.pyc +0 -0
  277. package/xll/python/Lib/site-packages/httpx/__pycache__/_decoders.cpython-312.pyc +0 -0
  278. package/xll/python/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-312.pyc +0 -0
  279. package/xll/python/Lib/site-packages/httpx/__pycache__/_main.cpython-312.pyc +0 -0
  280. package/xll/python/Lib/site-packages/httpx/__pycache__/_models.cpython-312.pyc +0 -0
  281. package/xll/python/Lib/site-packages/httpx/__pycache__/_multipart.cpython-312.pyc +0 -0
  282. package/xll/python/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-312.pyc +0 -0
  283. package/xll/python/Lib/site-packages/httpx/__pycache__/_types.cpython-312.pyc +0 -0
  284. package/xll/python/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-312.pyc +0 -0
  285. package/xll/python/Lib/site-packages/httpx/__pycache__/_urls.cpython-312.pyc +0 -0
  286. package/xll/python/Lib/site-packages/httpx/__pycache__/_utils.cpython-312.pyc +0 -0
  287. package/xll/python/Lib/site-packages/httpx/__version__.py +3 -0
  288. package/xll/python/Lib/site-packages/httpx/_api.py +438 -0
  289. package/xll/python/Lib/site-packages/httpx/_auth.py +348 -0
  290. package/xll/python/Lib/site-packages/httpx/_client.py +2019 -0
  291. package/xll/python/Lib/site-packages/httpx/_config.py +248 -0
  292. package/xll/python/Lib/site-packages/httpx/_content.py +240 -0
  293. package/xll/python/Lib/site-packages/httpx/_decoders.py +393 -0
  294. package/xll/python/Lib/site-packages/httpx/_exceptions.py +379 -0
  295. package/xll/python/Lib/site-packages/httpx/_main.py +506 -0
  296. package/xll/python/Lib/site-packages/httpx/_models.py +1277 -0
  297. package/xll/python/Lib/site-packages/httpx/_multipart.py +300 -0
  298. package/xll/python/Lib/site-packages/httpx/_status_codes.py +162 -0
  299. package/xll/python/Lib/site-packages/httpx/_transports/__init__.py +15 -0
  300. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-312.pyc +0 -0
  301. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-312.pyc +0 -0
  302. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-312.pyc +0 -0
  303. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-312.pyc +0 -0
  304. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-312.pyc +0 -0
  305. package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-312.pyc +0 -0
  306. package/xll/python/Lib/site-packages/httpx/_transports/asgi.py +187 -0
  307. package/xll/python/Lib/site-packages/httpx/_transports/base.py +86 -0
  308. package/xll/python/Lib/site-packages/httpx/_transports/default.py +406 -0
  309. package/xll/python/Lib/site-packages/httpx/_transports/mock.py +43 -0
  310. package/xll/python/Lib/site-packages/httpx/_transports/wsgi.py +149 -0
  311. package/xll/python/Lib/site-packages/httpx/_types.py +114 -0
  312. package/xll/python/Lib/site-packages/httpx/_urlparse.py +527 -0
  313. package/xll/python/Lib/site-packages/httpx/_urls.py +641 -0
  314. package/xll/python/Lib/site-packages/httpx/_utils.py +242 -0
  315. package/xll/python/Lib/site-packages/httpx/py.typed +0 -0
  316. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/INSTALLER +1 -0
  317. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/METADATA +203 -0
  318. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +55 -0
  319. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/REQUESTED +0 -0
  320. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/WHEEL +4 -0
  321. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/entry_points.txt +2 -0
  322. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/licenses/LICENSE.md +12 -0
  323. package/xll/python/Lib/site-packages/idna/__init__.py +45 -0
  324. package/xll/python/Lib/site-packages/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  325. package/xll/python/Lib/site-packages/idna/__pycache__/codec.cpython-312.pyc +0 -0
  326. package/xll/python/Lib/site-packages/idna/__pycache__/compat.cpython-312.pyc +0 -0
  327. package/xll/python/Lib/site-packages/idna/__pycache__/core.cpython-312.pyc +0 -0
  328. package/xll/python/Lib/site-packages/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  329. package/xll/python/Lib/site-packages/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  330. package/xll/python/Lib/site-packages/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  331. package/xll/python/Lib/site-packages/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  332. package/xll/python/Lib/site-packages/idna/codec.py +122 -0
  333. package/xll/python/Lib/site-packages/idna/compat.py +15 -0
  334. package/xll/python/Lib/site-packages/idna/core.py +437 -0
  335. package/xll/python/Lib/site-packages/idna/idnadata.py +4309 -0
  336. package/xll/python/Lib/site-packages/idna/intranges.py +57 -0
  337. package/xll/python/Lib/site-packages/idna/package_data.py +1 -0
  338. package/xll/python/Lib/site-packages/idna/py.typed +0 -0
  339. package/xll/python/Lib/site-packages/idna/uts46data.py +8841 -0
  340. package/xll/python/Lib/site-packages/idna-3.11.dist-info/INSTALLER +1 -0
  341. package/xll/python/Lib/site-packages/idna-3.11.dist-info/METADATA +209 -0
  342. package/xll/python/Lib/site-packages/idna-3.11.dist-info/RECORD +22 -0
  343. package/xll/python/Lib/site-packages/idna-3.11.dist-info/WHEEL +4 -0
  344. package/xll/python/Lib/site-packages/idna-3.11.dist-info/licenses/LICENSE.md +31 -0
  345. package/xll/python/Lib/site-packages/openpyxl/__pycache__/__init__.cpython-312.pyc +0 -0
  346. package/xll/python/Lib/site-packages/openpyxl/__pycache__/_constants.cpython-312.pyc +0 -0
  347. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/__init__.cpython-312.pyc +0 -0
  348. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/_writer.cpython-312.pyc +0 -0
  349. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/cell.cpython-312.pyc +0 -0
  350. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/read_only.cpython-312.pyc +0 -0
  351. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/rich_text.cpython-312.pyc +0 -0
  352. package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/text.cpython-312.pyc +0 -0
  353. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_3d.cpython-312.pyc +0 -0
  354. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/__init__.cpython-312.pyc +0 -0
  355. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_chart.cpython-312.pyc +0 -0
  356. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-312.pyc +0 -0
  357. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/axis.cpython-312.pyc +0 -0
  358. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-312.pyc +0 -0
  359. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-312.pyc +0 -0
  360. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-312.pyc +0 -0
  361. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/data_source.cpython-312.pyc +0 -0
  362. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-312.pyc +0 -0
  363. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-312.pyc +0 -0
  364. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/label.cpython-312.pyc +0 -0
  365. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/layout.cpython-312.pyc +0 -0
  366. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/legend.cpython-312.pyc +0 -0
  367. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-312.pyc +0 -0
  368. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/marker.cpython-312.pyc +0 -0
  369. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/picture.cpython-312.pyc +0 -0
  370. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-312.pyc +0 -0
  371. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pivot.cpython-312.pyc +0 -0
  372. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/plotarea.cpython-312.pyc +0 -0
  373. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-312.pyc +0 -0
  374. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-312.pyc +0 -0
  375. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reader.cpython-312.pyc +0 -0
  376. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reference.cpython-312.pyc +0 -0
  377. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-312.pyc +0 -0
  378. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series.cpython-312.pyc +0 -0
  379. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-312.pyc +0 -0
  380. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/shapes.cpython-312.pyc +0 -0
  381. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-312.pyc +0 -0
  382. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-312.pyc +0 -0
  383. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/text.cpython-312.pyc +0 -0
  384. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/title.cpython-312.pyc +0 -0
  385. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/trendline.cpython-312.pyc +0 -0
  386. package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-312.pyc +0 -0
  387. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-312.pyc +0 -0
  388. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-312.pyc +0 -0
  389. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-312.pyc +0 -0
  390. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-312.pyc +0 -0
  391. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-312.pyc +0 -0
  392. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-312.pyc +0 -0
  393. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-312.pyc +0 -0
  394. package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-312.pyc +0 -0
  395. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/__init__.cpython-312.pyc +0 -0
  396. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/author.cpython-312.pyc +0 -0
  397. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-312.pyc +0 -0
  398. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comments.cpython-312.pyc +0 -0
  399. package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-312.pyc +0 -0
  400. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  401. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/abc.cpython-312.pyc +0 -0
  402. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/numbers.cpython-312.pyc +0 -0
  403. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/product.cpython-312.pyc +0 -0
  404. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/singleton.cpython-312.pyc +0 -0
  405. package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/strings.cpython-312.pyc +0 -0
  406. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-312.pyc +0 -0
  407. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/base.cpython-312.pyc +0 -0
  408. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/container.cpython-312.pyc +0 -0
  409. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-312.pyc +0 -0
  410. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-312.pyc +0 -0
  411. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-312.pyc +0 -0
  412. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-312.pyc +0 -0
  413. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-312.pyc +0 -0
  414. package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/slots.cpython-312.pyc +0 -0
  415. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-312.pyc +0 -0
  416. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/colors.cpython-312.pyc +0 -0
  417. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/connector.cpython-312.pyc +0 -0
  418. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-312.pyc +0 -0
  419. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/effect.cpython-312.pyc +0 -0
  420. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/fill.cpython-312.pyc +0 -0
  421. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/geometry.cpython-312.pyc +0 -0
  422. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-312.pyc +0 -0
  423. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/image.cpython-312.pyc +0 -0
  424. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/line.cpython-312.pyc +0 -0
  425. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/picture.cpython-312.pyc +0 -0
  426. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/properties.cpython-312.pyc +0 -0
  427. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/relation.cpython-312.pyc +0 -0
  428. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-312.pyc +0 -0
  429. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/text.cpython-312.pyc +0 -0
  430. package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/xdr.cpython-312.pyc +0 -0
  431. package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-312.pyc +0 -0
  432. package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-312.pyc +0 -0
  433. package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/rule.cpython-312.pyc +0 -0
  434. package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/__init__.cpython-312.pyc +0 -0
  435. package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-312.pyc +0 -0
  436. package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/translate.cpython-312.pyc +0 -0
  437. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  438. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/core.cpython-312.pyc +0 -0
  439. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/custom.cpython-312.pyc +0 -0
  440. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/extended.cpython-312.pyc +0 -0
  441. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/interface.cpython-312.pyc +0 -0
  442. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-312.pyc +0 -0
  443. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-312.pyc +0 -0
  444. package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-312.pyc +0 -0
  445. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/__init__.cpython-312.pyc +0 -0
  446. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/cache.cpython-312.pyc +0 -0
  447. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/fields.cpython-312.pyc +0 -0
  448. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/record.cpython-312.pyc +0 -0
  449. package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/table.cpython-312.pyc +0 -0
  450. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/__init__.cpython-312.pyc +0 -0
  451. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/drawings.cpython-312.pyc +0 -0
  452. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/excel.cpython-312.pyc +0 -0
  453. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/strings.cpython-312.pyc +0 -0
  454. package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/workbook.cpython-312.pyc +0 -0
  455. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  456. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/alignment.cpython-312.pyc +0 -0
  457. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/borders.cpython-312.pyc +0 -0
  458. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/builtins.cpython-312.pyc +0 -0
  459. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-312.pyc +0 -0
  460. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/colors.cpython-312.pyc +0 -0
  461. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/differential.cpython-312.pyc +0 -0
  462. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fills.cpython-312.pyc +0 -0
  463. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fonts.cpython-312.pyc +0 -0
  464. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-312.pyc +0 -0
  465. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/numbers.cpython-312.pyc +0 -0
  466. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/protection.cpython-312.pyc +0 -0
  467. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/proxy.cpython-312.pyc +0 -0
  468. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/styleable.cpython-312.pyc +0 -0
  469. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-312.pyc +0 -0
  470. package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/table.cpython-312.pyc +0 -0
  471. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  472. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-312.pyc +0 -0
  473. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/cell.cpython-312.pyc +0 -0
  474. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/dataframe.cpython-312.pyc +0 -0
  475. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  476. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/escape.cpython-312.pyc +0 -0
  477. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
  478. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/formulas.cpython-312.pyc +0 -0
  479. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-312.pyc +0 -0
  480. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/inference.cpython-312.pyc +0 -0
  481. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/protection.cpython-312.pyc +0 -0
  482. package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/units.cpython-312.pyc +0 -0
  483. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-312.pyc +0 -0
  484. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/_writer.cpython-312.pyc +0 -0
  485. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/child.cpython-312.pyc +0 -0
  486. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-312.pyc +0 -0
  487. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-312.pyc +0 -0
  488. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-312.pyc +0 -0
  489. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/properties.cpython-312.pyc +0 -0
  490. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/protection.cpython-312.pyc +0 -0
  491. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-312.pyc +0 -0
  492. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/views.cpython-312.pyc +0 -0
  493. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/web.cpython-312.pyc +0 -0
  494. package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-312.pyc +0 -0
  495. package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-312.pyc +0 -0
  496. package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-312.pyc +0 -0
  497. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-312.pyc +0 -0
  498. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_read_only.cpython-312.pyc +0 -0
  499. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_reader.cpython-312.pyc +0 -0
  500. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_write_only.cpython-312.pyc +0 -0
  501. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_writer.cpython-312.pyc +0 -0
  502. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_range.cpython-312.pyc +0 -0
  503. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_watch.cpython-312.pyc +0 -0
  504. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/controls.cpython-312.pyc +0 -0
  505. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-312.pyc +0 -0
  506. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/custom.cpython-312.pyc +0 -0
  507. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-312.pyc +0 -0
  508. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-312.pyc +0 -0
  509. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-312.pyc +0 -0
  510. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/errors.cpython-312.pyc +0 -0
  511. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-312.pyc +0 -0
  512. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/formula.cpython-312.pyc +0 -0
  513. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-312.pyc +0 -0
  514. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-312.pyc +0 -0
  515. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-312.pyc +0 -0
  516. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/ole.cpython-312.pyc +0 -0
  517. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/page.cpython-312.pyc +0 -0
  518. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-312.pyc +0 -0
  519. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/picture.cpython-312.pyc +0 -0
  520. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/print_settings.cpython-312.pyc +0 -0
  521. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-312.pyc +0 -0
  522. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-312.pyc +0 -0
  523. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/related.cpython-312.pyc +0 -0
  524. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/scenario.cpython-312.pyc +0 -0
  525. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/smart_tag.cpython-312.pyc +0 -0
  526. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/table.cpython-312.pyc +0 -0
  527. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/views.cpython-312.pyc +0 -0
  528. package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-312.pyc +0 -0
  529. package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/__init__.cpython-312.pyc +0 -0
  530. package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/excel.cpython-312.pyc +0 -0
  531. package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/theme.cpython-312.pyc +0 -0
  532. package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/__init__.cpython-312.pyc +0 -0
  533. package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/constants.cpython-312.pyc +0 -0
  534. package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/functions.cpython-312.pyc +0 -0
  535. package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
  536. package/xll/python/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
  537. package/xll/python/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
  538. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
  539. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
  540. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
  541. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
  542. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
  543. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
  544. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
  545. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
  546. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
  547. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  548. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
  549. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
  550. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
  551. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
  552. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
  553. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
  554. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
  555. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
  556. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
  557. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
  558. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
  559. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
  560. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  561. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
  562. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
  563. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
  564. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
  565. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
  566. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
  567. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
  568. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
  569. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
  570. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
  571. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
  572. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
  573. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
  574. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
  575. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
  576. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
  577. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
  578. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
  579. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
  580. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
  581. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
  582. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
  583. package/xll/python/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
  584. package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
  585. package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
  586. package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
  587. package/xll/python/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
  588. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
  589. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
  590. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
  591. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
  592. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  593. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
  594. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
  595. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
  596. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
  597. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
  598. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
  599. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
  600. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
  601. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
  602. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
  603. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
  604. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
  605. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
  606. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
  607. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
  608. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
  609. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
  610. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
  611. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
  612. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
  613. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
  614. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
  615. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
  616. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
  617. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
  618. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
  619. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
  620. package/xll/python/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
  621. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
  622. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
  623. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
  624. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
  625. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
  626. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
  627. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
  628. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
  629. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
  630. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
  631. package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
  632. package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
  633. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
  634. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
  635. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
  636. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
  637. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
  638. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
  639. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
  640. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
  641. package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
  642. package/xll/python/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
  643. package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
  644. package/xll/python/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
  645. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  646. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
  647. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
  648. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
  649. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
  650. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
  651. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
  652. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
  653. package/xll/python/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
  654. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  655. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
  656. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
  657. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
  658. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
  659. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
  660. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  661. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
  662. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
  663. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
  664. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
  665. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
  666. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
  667. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
  668. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
  669. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
  670. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
  671. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
  672. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
  673. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
  674. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
  675. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
  676. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
  677. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
  678. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  679. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
  680. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
  681. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
  682. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
  683. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
  684. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
  685. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
  686. package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  687. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
  688. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
  689. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
  690. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
  691. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
  692. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
  693. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
  694. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
  695. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
  696. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
  697. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
  698. package/xll/python/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
  699. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  700. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  701. package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
  702. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
  703. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
  704. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
  705. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
  706. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
  707. package/xll/python/Lib/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
  708. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  709. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  710. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  711. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  712. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
  713. package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
  714. package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
  715. package/xll/python/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
  716. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  717. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
  718. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
  719. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
  720. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  721. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  722. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  723. package/xll/python/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  724. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
  725. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
  726. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
  727. package/xll/python/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
  728. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  729. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  730. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  731. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  732. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  733. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  734. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  735. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  736. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  737. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
  738. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  739. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  740. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  741. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  742. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  743. package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  744. package/xll/python/Lib/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  745. package/xll/python/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
  746. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  747. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  748. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  749. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  750. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  751. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  752. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  753. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  754. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
  755. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
  756. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
  757. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
  758. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
  759. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
  760. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
  761. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
  762. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
  763. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
  764. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
  765. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
  766. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
  767. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
  768. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
  769. package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
  770. package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
  771. package/xll/python/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
  772. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
  773. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
  774. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
  775. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  776. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
  777. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
  778. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
  779. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
  780. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
  781. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
  782. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
  783. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
  784. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
  785. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
  786. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
  787. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
  788. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
  789. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
  790. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
  791. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
  792. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
  793. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
  794. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
  795. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
  796. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
  797. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
  798. package/xll/python/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
  799. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  800. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
  801. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
  802. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
  803. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
  804. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
  805. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
  806. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
  807. package/xll/python/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
  808. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
  809. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
  810. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
  811. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
  812. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
  813. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
  814. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
  815. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
  816. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
  817. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
  818. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
  819. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
  820. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
  821. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
  822. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
  823. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
  824. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
  825. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
  826. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
  827. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
  828. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
  829. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
  830. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
  831. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
  832. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
  833. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
  834. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
  835. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
  836. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
  837. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
  838. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
  839. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
  840. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
  841. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
  842. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
  843. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
  844. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
  845. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
  846. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
  847. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
  848. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
  849. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
  850. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
  851. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
  852. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
  853. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
  854. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
  855. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
  856. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
  857. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
  858. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
  859. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
  860. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
  861. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
  862. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
  863. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
  864. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
  865. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
  866. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
  867. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
  868. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
  869. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
  870. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
  871. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
  872. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
  873. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
  874. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
  875. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
  876. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
  877. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
  878. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
  879. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
  880. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
  881. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
  882. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
  883. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
  884. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
  885. package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  886. package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  887. package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  888. package/xll/python/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  889. package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
  890. package/xll/python/Lib/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
  891. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
  892. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
  893. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
  894. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
  895. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
  896. package/xll/python/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
  897. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
  898. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
  899. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
  900. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
  901. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
  902. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
  903. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
  904. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
  905. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
  906. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
  907. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
  908. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
  909. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
  910. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
  911. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
  912. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
  913. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
  914. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
  915. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
  916. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
  917. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
  918. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
  919. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
  920. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  921. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
  922. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
  923. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
  924. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
  925. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
  926. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
  927. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
  928. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
  929. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
  930. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
  931. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
  932. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
  933. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
  934. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
  935. package/xll/python/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
  936. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/RECORD +3 -3
  937. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/INSTALLER +1 -0
  938. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/METADATA +72 -0
  939. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/RECORD +7 -0
  940. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/WHEEL +4 -0
  941. package/xll/python/Lib/site-packages/typing_extensions-4.15.0.dist-info/licenses/LICENSE +279 -0
  942. package/xll/python/Lib/site-packages/typing_extensions.py +4317 -0
  943. package/xll/python/Scripts/httpx.exe +0 -0
  944. package/xll/python/Scripts/pip.exe +0 -0
  945. package/xll/python/Scripts/pip3.12.exe +0 -0
  946. package/xll/python/Scripts/pip3.exe +0 -0
  947. package/xll/modules/debug_render.py +0 -269
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.19]
4
+
5
+ - **Sandbox & security hardening** — Code execution can now optionally run inside a sandbox (/sandbox) that blocks unauthorized file writes, reads, and in-bound and out-bound network traffic.
6
+ - **Clearer privacy controls** - You can opt out of conversation uploads to our servers for complete privacy.
7
+
8
+ ## [0.2.18]
9
+
10
+ - **Fixed startup crash** — Resolved a circular import in the Python modules that caused "internal error" on every Excel action.
11
+
3
12
  ## [0.2.17]
4
13
 
5
14
  - **Better change review dialog** — Cell diffs now show full addresses (e.g. `Sheet1!A1`), formula details, and keyboard navigation with arrow keys for scrolling through large changesets.
@@ -12,14 +12,14 @@ Two channels to control Excel:
12
12
  ```
13
13
  POST http://localhost:8080/exec
14
14
  Content-Type: application/json
15
- {"code": "from shortcut_xl import xl_app\napp = xl_app()\napp.Range('A1').Value = 42"}
15
+ {"code": "app.Range('A1').Value = 42"}
16
16
  ```
17
17
 
18
18
  Returns `{"ok": true, "output": "..."}` or `{"ok": false, "error": "..."}`.
19
19
 
20
- **Only import `xl_app` in `/exec`.** Never use `xl_batch`, `schedule_call`, or `xl_log` those cause cross-thread COM errors. You already have direct main-thread access.
20
+ **Import statements are disabled in `/exec`.** The sandbox pre-injects everything you need: `app` (Excel.Application COM object), `Workbook`, `Worksheet`, and helper functions. Standard Python builtins work normally. Do NOT use `import`.
21
21
 
22
- `xl_app()` returns `Excel.Application` — same API as VBA. Use `print()` to read values back.
22
+ `app` is the Excel.Application COM object — same API as VBA. Use `print()` to read values back.
23
23
 
24
24
  ---
25
25
 
@@ -51,7 +51,7 @@ Rules: function name = formula name, args are `float`/`str`/`None`, return `floa
51
51
  | | `/exec` | `modules/` |
52
52
  |---|---|---|
53
53
  | **Use for** | One-shot actions, layout, formatting | Custom formulas, live data, tick loops |
54
- | **Imports** | `xl_app` only | `xl_func`, `xl_app`, `xl_batch`, `schedule_call`, `xl_log` |
54
+ | **Imports** | Disabled (all symbols pre-injected) | `xl_func`, `xl_app`, `xl_batch`, `schedule_call`, `xl_log` |
55
55
 
56
56
  Never mix the two.
57
57
 
package/dist/cli/args.js CHANGED
@@ -135,6 +135,9 @@ export function parseArgs(args, extensionFlags) {
135
135
  else if (arg === '--subagent') {
136
136
  result.subagent = true;
137
137
  }
138
+ else if (arg === '--dev-mode') {
139
+ result.devMode = true;
140
+ }
138
141
  else if (arg === '--offline') {
139
142
  result.offline = true;
140
143
  }
package/dist/config.js CHANGED
@@ -179,6 +179,9 @@ export const VERSION = pkg.version;
179
179
  export const NPM_PACKAGE_NAME = pkg.name || 'shortcutxl';
180
180
  // e.g., SHORTCUT_CODING_AGENT_DIR
181
181
  export const ENV_AGENT_DIR = `${APP_NAME.toUpperCase()}_CODING_AGENT_DIR`;
182
+ // -- Sandbox defaults ------------------------------------------------------
183
+ /** Default sandbox network mode. 'proxy' gives domain-level control with user approval. */
184
+ export const DEFAULT_SANDBOX_NETWORK = 'proxy';
182
185
  // -- Package & update URLs -------------------------------------------------
183
186
  /** npm registry URL for version checks. */
184
187
  export const NPM_REGISTRY_URL = `https://registry.npmjs.org/${NPM_PACKAGE_NAME}/latest`;
@@ -267,6 +270,18 @@ export function getPromptsDir() {
267
270
  export function getSessionsDir() {
268
271
  return join(getAgentDir(), 'sessions');
269
272
  }
273
+ /** Get path to WSL distro storage directory (imported distro lives here) */
274
+ export function getWslDir() {
275
+ return join(getAgentDir(), 'wsl');
276
+ }
277
+ /** Get path to the shipped Alpine rootfs tarball (bundled in the npm package) */
278
+ export function getAlpineRootfsPath() {
279
+ return join(getPackageDir(), 'wsl', 'alpine-minirootfs.tar.gz');
280
+ }
281
+ /** Get path to persistent pip packages directory (mounted rw into sandbox) */
282
+ export function getPipPackagesDir() {
283
+ return join(getAgentDir(), 'pip-packages');
284
+ }
270
285
  /** Get path to debug log file */
271
286
  export function getDebugLogPath() {
272
287
  return join(getAgentDir(), `${APP_NAME}-debug.log`);
@@ -279,8 +294,6 @@ export function getInstalledMarkerPath() {
279
294
  export function isInstalled() {
280
295
  return existsSync(getInstalledMarkerPath());
281
296
  }
282
- /** Enable dev-only features (e.g. /export, verbose tool-download messages). */
283
- export const DEV_MODE = process.env.SHORTCUT_DEV_MODE === '1';
284
297
  /** Get path to ShortcutXL.xll (stable user-local copy at ~/.shortcut/agent/xll/). */
285
298
  export function getXllPath() {
286
299
  return join(getAgentDir(), "xll", "ShortcutXL.xll");
@@ -141,6 +141,21 @@ export class AgentSession {
141
141
  l(event);
142
142
  }
143
143
  }
144
+ /**
145
+ * Remove the last errored assistant message and its synthetic error
146
+ * toolResult messages from agent state. When a streaming call fails
147
+ * mid-response, agent-loop appends [assistant(error), toolResult, ...]
148
+ * — this removes the entire group so retries start from a clean state.
149
+ */
150
+ _removeLastErrorGroup() {
151
+ const messages = this.agent.state.messages;
152
+ let i = messages.length - 1;
153
+ while (i >= 0 && messages[i].role === 'toolResult')
154
+ i--;
155
+ if (i >= 0 && messages[i].role === 'assistant' && messages[i].stopReason === 'error') {
156
+ this.agent.replaceMessages(messages.slice(0, i));
157
+ }
158
+ }
144
159
  // Track last assistant message for auto-compaction check
145
160
  _lastAssistantMessage = undefined;
146
161
  /** Internal handler for agent events - shared by subscribe and reconnect */
@@ -272,12 +287,7 @@ export class AgentSession {
272
287
  // Check for retryable errors first (overloaded, rate limit, server errors)
273
288
  if (isRetryableError(msg, this._checkContextOverflow)) {
274
289
  const didRetry = await this._retry.handleRetryableError(msg, this.settingsManager.getRetrySettings(), {
275
- removeLastAssistantMessage: () => {
276
- const messages = this.agent.state.messages;
277
- if (messages.length > 0 && messages[messages.length - 1].role === 'assistant') {
278
- this.agent.replaceMessages(messages.slice(0, -1));
279
- }
280
- },
290
+ removeLastAssistantMessage: () => this._removeLastErrorGroup(),
281
291
  continue: () => {
282
292
  setTimeout(() => {
283
293
  this.agent.continue().catch(() => { });
@@ -1141,13 +1151,7 @@ export class AgentSession {
1141
1151
  });
1142
1152
  }
1143
1153
  },
1144
- removeLastAssistantMessage: () => {
1145
- const messages = this.agent.state.messages;
1146
- const lastMsg = messages[messages.length - 1];
1147
- if (lastMsg?.role === 'assistant' && lastMsg.stopReason === 'error') {
1148
- this.agent.replaceMessages(messages.slice(0, -1));
1149
- }
1150
- },
1154
+ removeLastAssistantMessage: () => this._removeLastErrorGroup(),
1151
1155
  continueAgent: () => {
1152
1156
  setTimeout(() => {
1153
1157
  this.agent.continue().catch(() => { });
@@ -103,6 +103,8 @@ export class FooterDataProvider {
103
103
  initialCreditBalance = null;
104
104
  /** True when the active model uses credits (suppresses $cost even when balance fetch fails) */
105
105
  _usesCredits = false;
106
+ // SHORTCUT PATCH: sandbox indicator for footer
107
+ _sandboxActive = false;
106
108
  getCreditBalance() {
107
109
  return this.creditBalance;
108
110
  }
@@ -125,6 +127,13 @@ export class FooterDataProvider {
125
127
  setUsesCredits(value) {
126
128
  this._usesCredits = value;
127
129
  }
130
+ // SHORTCUT PATCH: sandbox indicator
131
+ get sandboxActive() {
132
+ return this._sandboxActive;
133
+ }
134
+ setSandboxActive(value) {
135
+ this._sandboxActive = value;
136
+ }
128
137
  /** Internal: cleanup */
129
138
  dispose() {
130
139
  if (this.gitWatcher) {
package/dist/core/sdk.js CHANGED
@@ -189,6 +189,7 @@ export async function createAgentSession(options = {}) {
189
189
  customTools: options.customTools,
190
190
  modelRegistry,
191
191
  initialActiveToolNames,
192
+ baseToolsOverride: options.baseToolsOverride,
192
193
  extensionRunnerRef,
193
194
  prePromptContext: options.prePromptContext
194
195
  });
@@ -1,12 +1,23 @@
1
1
  import { existsSync, mkdirSync, readFileSync, writeFileSync } from 'fs';
2
2
  import { dirname, join } from 'path';
3
3
  import lockfile from 'proper-lockfile';
4
- import { CONFIG_DIR_NAME, getAgentDir } from '../config.js';
4
+ import { homedir } from 'os';
5
+ import { CONFIG_DIR_NAME, DEFAULT_SANDBOX_NETWORK, getAgentDir } from '../config.js';
5
6
  /** Display labels for the approval mode (footer + /settings). */
6
7
  export const APPROVAL_MODE = {
7
8
  ASK: 'Ask before edits',
8
9
  AUTO: 'Approve all edits',
9
10
  };
11
+ /** Concrete sandbox defaults — always called at runtime so paths resolve correctly. */
12
+ export function getDefaultSandboxSettings() {
13
+ return {
14
+ mode: 'disabled',
15
+ readPaths: [homedir()],
16
+ writePaths: [getAgentDir()],
17
+ network: DEFAULT_SANDBOX_NETWORK,
18
+ allowedDomains: [],
19
+ };
20
+ }
10
21
  /** Deep merge settings: project/overrides take precedence, nested objects merge recursively */
11
22
  function deepMergeSettings(base, overrides) {
12
23
  const result = { ...base };
@@ -573,6 +584,67 @@ export class SettingsManager {
573
584
  getCodeBlockIndent() {
574
585
  return this.settings.markdown?.codeBlockIndent ?? ' ';
575
586
  }
587
+ getSandboxSettings() {
588
+ return this.settings.sandbox ?? {};
589
+ }
590
+ getSandboxMode() {
591
+ return this.settings.sandbox?.mode ?? 'disabled';
592
+ }
593
+ /** Ensure globalSettings.sandbox exists with full defaults. */
594
+ ensureSandboxDefaults() {
595
+ if (!this.globalSettings.sandbox) {
596
+ this.globalSettings.sandbox = { ...getDefaultSandboxSettings() };
597
+ this.markModified('sandbox');
598
+ }
599
+ return this.globalSettings.sandbox;
600
+ }
601
+ setSandboxMode(mode) {
602
+ this.ensureSandboxDefaults().mode = mode;
603
+ this.markModified('sandbox', 'mode');
604
+ this.save();
605
+ }
606
+ getSandboxNetworkMode() {
607
+ return this.settings.sandbox?.network ?? DEFAULT_SANDBOX_NETWORK;
608
+ }
609
+ setSandboxNetworkMode(mode) {
610
+ this.ensureSandboxDefaults().network = mode;
611
+ this.markModified('sandbox', 'network');
612
+ this.save();
613
+ }
614
+ getSandboxAllowedDomains() {
615
+ return this.settings.sandbox?.allowedDomains ?? [];
616
+ }
617
+ setSandboxAllowedDomains(domains) {
618
+ this.ensureSandboxDefaults().allowedDomains = domains;
619
+ this.markModified('sandbox', 'allowedDomains');
620
+ this.save();
621
+ }
622
+ addSandboxAllowedDomain(domain) {
623
+ const sandbox = this.ensureSandboxDefaults();
624
+ const domains = [...(sandbox.allowedDomains ?? [])];
625
+ if (!domains.includes(domain)) {
626
+ domains.push(domain);
627
+ sandbox.allowedDomains = domains;
628
+ this.markModified('sandbox', 'allowedDomains');
629
+ this.save();
630
+ }
631
+ }
632
+ setSandboxReadPaths(paths) {
633
+ this.ensureSandboxDefaults().readPaths = paths;
634
+ this.markModified('sandbox', 'readPaths');
635
+ this.save();
636
+ }
637
+ setSandboxWritePaths(paths) {
638
+ this.ensureSandboxDefaults().writePaths = paths;
639
+ this.markModified('sandbox', 'writePaths');
640
+ this.save();
641
+ }
642
+ resetSandboxToDefaults() {
643
+ const mode = this.globalSettings.sandbox?.mode ?? 'disabled';
644
+ this.globalSettings.sandbox = { ...getDefaultSandboxSettings(), mode };
645
+ this.markModified('sandbox');
646
+ this.save();
647
+ }
576
648
  // Session-scoped auto-approve. Initialized from the persistent
577
649
  // settings.autoApprove default, then toggled freely via Shift+Tab.
578
650
  _autoApprove;
@@ -597,5 +669,23 @@ export class SettingsManager {
597
669
  this.markModified('autoApprove');
598
670
  this.save();
599
671
  }
672
+ /** Whether session traces and ClickHouse logs are uploaded. Default: true. */
673
+ getTelemetry() {
674
+ return this.settings.telemetry ?? true;
675
+ }
676
+ setTelemetry(enabled) {
677
+ this.globalSettings.telemetry = enabled;
678
+ this.markModified('telemetry');
679
+ this.save();
680
+ }
681
+ /** Whether dev mode is enabled (file tools, AGENTS.md, verbose logging). Default: false. */
682
+ getDevMode() {
683
+ return this.settings.devMode ?? false;
684
+ }
685
+ setDevMode(enabled) {
686
+ this.globalSettings.devMode = enabled;
687
+ this.markModified('devMode');
688
+ this.save();
689
+ }
600
690
  }
601
691
  //# sourceMappingURL=settings-manager.js.map
@@ -20,12 +20,10 @@ const ALL_BUILTIN_SLASH_COMMANDS = [
20
20
  { name: 'skills', description: 'Show loaded skills' },
21
21
  { name: 'reload', description: 'Reload extensions, skills, prompts, and themes' }
22
22
  ];
23
- /** Dev-only slash commands, consumed by custom/dev/ to keep env checks out of vendor code. */
24
- export const ALL_DEV_SLASH_COMMANDS = ALL_BUILTIN_SLASH_COMMANDS.filter((cmd) => cmd.dev);
25
- /** All builtin command names (including dev), used to prevent extension collisions. */
23
+ /** All builtin command names, used to prevent extension collisions. */
26
24
  export const ALL_BUILTIN_SLASH_COMMAND_NAMES = new Set(ALL_BUILTIN_SLASH_COMMANDS.map((cmd) => cmd.name));
27
- /** Returns the base (non-dev) slash commands. Dev commands are added via custom/dev/. */
25
+ /** Returns all builtin slash commands. */
28
26
  export function getBuiltinSlashCommands() {
29
- return ALL_BUILTIN_SLASH_COMMANDS.filter((cmd) => !cmd.dev);
27
+ return ALL_BUILTIN_SLASH_COMMANDS;
30
28
  }
31
29
  //# sourceMappingURL=slash-commands.js.map
@@ -19,13 +19,38 @@ Execute a bash command in the current working directory. Returns stdout and stde
19
19
  Output is truncated to ${DEFAULT_MAX_CHARS} characters. If truncated, full output is saved to a temp file. \
20
20
  Default timeout is 30 seconds. Override with the timeout parameter for long-running commands.
21
21
 
22
- Python 3 and pip are available for data processing, scripting, and package installation.
23
- - ALWAYS use bash to execute python and other commands instead of through the
22
+ Python and pip are available for data processing, scripting, and package installation.
23
+ - ALWAYS use bash to execute python code instead going through the excel COM interface -- that channel reserved for Excel communication
24
+ - Use python / python3 (not via an absolute path) to invoke Python.
24
25
 
25
26
  On Windows, this tool runs Git Bash (MSYS2), not a native shell. Two consequences:
26
27
  1. Forward-slash flags get auto-converted to paths — use double slashes for literal flags (e.g., reg query //v).
27
28
  2. This tool holds stdout/stderr pipes open until all child processes exit. To launch a process without blocking, use Git Bash's built-in \`start\` with the program name (e.g., \`start excel\`).
28
29
 
30
+ **Conventions:**
31
+ - When creating files, tell users the file path.
32
+ - Stop retrying after 1-2 unexplained failures.`;
33
+ // SHORTCUT PATCH: sandbox-mode description replaces Windows caveats with Linux instructions
34
+ const TOOL_DESCRIPTION_SANDBOX = `\
35
+ Execute a bash command in a sandboxed Linux environment (WSL2 + bubblewrap). Returns stdout and stderr. \
36
+ Output is truncated to ${DEFAULT_MAX_CHARS} characters. If truncated, full output is saved to a temp file. \
37
+ Default timeout is 30 seconds. Override with the timeout parameter for long-running commands.
38
+
39
+ Commands run in an isolated Linux sandbox with restricted filesystem access.
40
+ - Use Linux paths: the Windows drive C:\\ is mounted at /mnt/c/ (e.g., C:\\Users\\jane → /mnt/c/Users/jane)
41
+ - The working directory is always writable. The user's home directory is readable.
42
+ - File tools (Read, Edit, Glob, Grep) still use Windows paths — only bash uses Linux paths
43
+ - Network access is controlled by sandbox settings — if a command fails due to network, tell the user to enable it in settings
44
+
45
+ **Filesystem access**: Read and write mounts are configured in the sandbox section of the agent settings file. \
46
+ If you get "Read-only file system" or "No such file or directory" for a path that should exist, \
47
+ check the sandbox settings and tell the user — they can add paths via /sandbox settings.
48
+
49
+ Python 3 and pip are available for data processing, scripting, and package installation.
50
+ - \`pip install <pkg>\` works — packages are installed to a persistent user directory that survives across commands.
51
+ - ALWAYS use bash to execute python and other commands.
52
+ - Use python (not python3 or an absolute path) to invoke Python.
53
+
29
54
  **Conventions:**
30
55
  - When creating files, tell users the file path.
31
56
  - Stop retrying after 1-2 unexplained failures.`;
@@ -43,7 +68,9 @@ const bashSchema = Type.Object({
43
68
  description: 'A short description of what the command does for non-technical users.'
44
69
  }),
45
70
  command: Type.String({ description: 'Bash command to execute' }),
46
- timeout: Type.Optional(Type.Number({ description: 'Timeout in seconds (default: 30). Increase for long-running commands.' }))
71
+ timeout: Type.Optional(Type.Number({
72
+ description: 'Timeout in seconds (default: 30). Increase for long-running commands.'
73
+ }))
47
74
  });
48
75
  /**
49
76
  * Default bash operations using local shell
@@ -154,10 +181,11 @@ const defaultBashOperations = {
154
181
  export function createBashTool(cwd, options) {
155
182
  const ops = options?.operations ?? defaultBashOperations;
156
183
  const commandPrefix = options?.commandPrefix;
184
+ const description = options?.sandboxActive ? TOOL_DESCRIPTION_SANDBOX : TOOL_DESCRIPTION;
157
185
  return {
158
186
  name: TOOL_NAME,
159
187
  label: TOOL_LABEL,
160
- description: TOOL_DESCRIPTION,
188
+ description,
161
189
  parameters: bashSchema,
162
190
  execute: async (_toolCallId, { command, timeout: explicitTimeout }, signal, onUpdate) => {
163
191
  const timeout = explicitTimeout ?? 30;
@@ -11,11 +11,11 @@
11
11
  */
12
12
  export { actionAgent } from './action.js';
13
13
  export { installationAgent } from './installation.js';
14
- import { cloneAgent } from './clone.js';
14
+ // import { cloneAgent } from './clone.js';
15
15
  import { documentReaderAgent } from './document-reader.js';
16
16
  import { generalAgent } from './general.js';
17
17
  /** All subagent definitions (used internally by accessor functions below) */
18
- const SUBAGENTS = [cloneAgent, documentReaderAgent, generalAgent];
18
+ const SUBAGENTS = [documentReaderAgent, generalAgent];
19
19
  /** Get a subagent config by name */
20
20
  export function getSubagent(name) {
21
21
  return SUBAGENTS.find((a) => a.name === name);
@@ -35,7 +35,6 @@ Include file paths, sheet names, cell ranges, and specific instructions in the q
35
35
  When multiple tasks are needed, launch them concurrently. NEVER call them sequentially — each agent takes time to complete.
36
36
 
37
37
  Choose the subagent_type carefully based on the task:
38
- - clone: agent clone with bash, edit, excel_exec, and task — use for complex tasks needing editing and subagent delegation
39
38
  - document_reader: PDFs, images, document extraction (has llm_analysis for multimodal + bash for programmatic extraction)
40
39
  - general: research, computation, Excel tasks (has excel_exec + bash + llm_analysis)`;
41
40
  const lines = [preamble];
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Standalone token keep-alive process.
3
+ *
4
+ * Keeps OAuth tokens in auth.json fresh by running the proactive refresh timer.
5
+ * Used by the benchmark runner to prevent LoginRequiredError when spawning
6
+ * many short-lived agent processes concurrently.
7
+ *
8
+ * Usage: node dist/cli.js keep-alive
9
+ * pnpm.cmd exec tsx src/custom/auth/keep-alive.ts
10
+ */
11
+ import { AuthStorage } from '../../core/auth-storage.js';
12
+ import { startProactiveRefresh } from './refresh-timer.js';
13
+ const PROVIDER_ID = 'shortcut';
14
+ const authStorage = AuthStorage.create();
15
+ // Do an initial refresh immediately
16
+ await authStorage.getApiKey(PROVIDER_ID);
17
+ // Then keep refreshing on a timer
18
+ startProactiveRefresh(authStorage, PROVIDER_ID);
19
+ // Stay alive until killed
20
+ process.on('SIGINT', () => process.exit(0));
21
+ process.on('SIGTERM', () => process.exit(0));
22
+ setInterval(() => { }, 60_000);
23
+ //# sourceMappingURL=keep-alive.js.map
@@ -25,7 +25,7 @@ export const SHORTCUT_AUTH_URL = process.env.SHORTCUT_AUTH_URL ?? ENV[ACTIVE_ENV
25
25
  /** API service — credit balance, billing. */
26
26
  export const SHORTCUT_API_URL = process.env.SHORTCUT_API_URL ?? ENV[ACTIVE_ENV].apiUrl;
27
27
  // -- Dev mode --------------------------------------------------------------
28
- // DEV_MODE lives in config.ts (layer-0) so modes/ can import it without boundary violations.
28
+ // Dev mode is now a settings.json flag (settingsManager.getDevMode()), not an env var.
29
29
  // -- Excel XLL -------------------------------------------------------------
30
30
  /** ShortcutXL HTTP server (always localhost — runs in-process with Excel). */
31
31
  export const EXCEL_HTTP_URL = process.env.EXCEL_HTTP_URL ?? 'http://127.0.0.1:8080';
@@ -10,9 +10,8 @@
10
10
  * followed by the full summary for the LLM.
11
11
  */
12
12
  import { EXCEL_HTTP_URL } from '../constants.js';
13
+ import { xllFetch } from '../excel-session.js';
13
14
  const SUMMARY_CODE = `
14
- from shortcut_xl import xl_app
15
- app = xl_app()
16
15
  if app.Workbooks.Count == 0:
17
16
  print("")
18
17
  else:
@@ -40,7 +39,7 @@ else:
40
39
  export async function fetchWorkbookSummary(httpUrl) {
41
40
  const baseUrl = httpUrl ?? EXCEL_HTTP_URL;
42
41
  try {
43
- const response = await fetch(`${baseUrl}/exec`, {
42
+ const response = await xllFetch(`${baseUrl}/exec`, {
44
43
  method: 'POST',
45
44
  headers: { 'Content-Type': 'application/json' },
46
45
  body: JSON.stringify({ code: SUMMARY_CODE }),
@@ -1,17 +1,10 @@
1
1
  /**
2
- * Centralized dev-mode hooks for SHORTCUT_DEV_MODE=1.
2
+ * Trace hooks HTML export of session traces after each query.
3
3
  *
4
- * All dev-only behaviors are registered here so they're easy to discover,
5
- * audit, and extend. The composition root (main.ts) calls getDevHooks()
6
- * once and wires the returned hooks into the session/mode options.
7
- *
8
- * To add a new dev-mode feature:
9
- * 1. Create a file in custom/dev/ with the implementation
10
- * 2. Wire it into DevHooks and getDevHooks() below
11
- * 3. Consume the hook in main.ts
4
+ * Always active (not dev-gated). The composition root (main.ts) calls
5
+ * getTraceHooks() once and wires the returned hooks into the mode options.
12
6
  */
13
7
  import { exec } from 'child_process';
14
- import { ALL_DEV_SLASH_COMMANDS } from '../../core/slash-commands.js';
15
8
  import { exportDevTraces } from './trace-export.js';
16
9
  function openInBrowser(filePath) {
17
10
  const cmd = process.platform === 'win32'
@@ -22,10 +15,9 @@ function openInBrowser(filePath) {
22
15
  exec(cmd, () => { });
23
16
  }
24
17
  /**
25
- * Build all dev-mode hooks for the given session.
26
- * Returns undefined when dev mode is off — callers can use optional chaining.
18
+ * Build trace hooks for the given session.
27
19
  */
28
- export function getDevHooks(session) {
20
+ export function getTraceHooks(session) {
29
21
  // -- Trace export after each query --
30
22
  let lastTracePaths = [];
31
23
  const onAgentEnd = () => {
@@ -38,7 +30,7 @@ export function getDevHooks(session) {
38
30
  });
39
31
  };
40
32
  // -- /trace command: open all traces in browser --
41
- const onDevCommand = (command, showStatus) => {
33
+ const onCommand = (command, showStatus) => {
42
34
  if (command !== '/trace')
43
35
  return false;
44
36
  if (lastTracePaths.length === 0) {
@@ -51,9 +43,8 @@ export function getDevHooks(session) {
51
43
  return true;
52
44
  };
53
45
  return {
54
- slashCommands: ALL_DEV_SLASH_COMMANDS,
55
46
  onAgentEnd,
56
- onDevCommand
47
+ onCommand
57
48
  };
58
49
  }
59
50
  //# sourceMappingURL=index.js.map
@@ -1,9 +1,8 @@
1
1
  /**
2
- * Dev-mode HTML export of session traces after each query.
2
+ * HTML export of session traces after each query.
3
3
  *
4
- * When SHORTCUT_DEV_MODE=1, exports the main session JSONL and any subagent
5
- * JSONLs to HTML after each agent_end event. File paths are shown in the
6
- * footer via extension statuses (one line per trace).
4
+ * Exports the main session JSONL and any subagent JSONLs to HTML after
5
+ * each agent_end event. The /trace command opens them in the browser.
7
6
  */
8
7
  import { existsSync } from 'fs';
9
8
  import { basename, dirname, join } from 'path';
@@ -5,6 +5,7 @@
5
5
  * Retries a few times on startup since Excel may still be loading the XLL.
6
6
  */
7
7
  import { EXCEL_HTTP_URL } from './constants.js';
8
+ import { xllFetch } from './excel-session.js';
8
9
  /**
9
10
  * Fetch XLL config from the running Excel instance.
10
11
  * Retries up to `maxRetries` times with `intervalMs` between attempts.
@@ -16,7 +17,7 @@ export async function fetchExcelConfig(options) {
16
17
  const baseUrl = options?.url ?? EXCEL_HTTP_URL;
17
18
  for (let attempt = 0; attempt <= maxRetries; attempt++) {
18
19
  try {
19
- const response = await fetch(`${baseUrl}/config`);
20
+ const response = await xllFetch(`${baseUrl}/config`);
20
21
  if (!response.ok)
21
22
  continue;
22
23
  const data = (await response.json());
@@ -0,0 +1,76 @@
1
+ /**
2
+ * Read the ShortcutXL session file written by the XLL's HTTP server.
3
+ *
4
+ * The XLL generates a random bearer token on startup and writes it
5
+ * (along with the port) to %APPDATA%\ShortcutXL\session.json.
6
+ * The agent reads this file to authenticate requests to the XLL.
7
+ *
8
+ * Format: { "port": 8080, "token": "hex..." }
9
+ */
10
+ import { readFileSync } from 'fs';
11
+ import { join } from 'path';
12
+ let cachedSession = null;
13
+ function getSessionFilePath() {
14
+ const appData = process.env.APPDATA;
15
+ if (!appData) {
16
+ throw new Error('APPDATA environment variable not set');
17
+ }
18
+ return join(appData, 'ShortcutXL', 'session.json');
19
+ }
20
+ /**
21
+ * Read the XLL session file. Returns { port, token } or null if unavailable.
22
+ * Caches the result — the token is stable for the lifetime of the Excel process.
23
+ */
24
+ export function readXllSession() {
25
+ if (cachedSession)
26
+ return cachedSession;
27
+ try {
28
+ const raw = readFileSync(getSessionFilePath(), 'utf-8');
29
+ const data = JSON.parse(raw);
30
+ if (typeof data.port === 'number' && typeof data.token === 'string' && data.token.length > 0) {
31
+ cachedSession = { port: data.port, token: data.token };
32
+ return cachedSession;
33
+ }
34
+ }
35
+ catch {
36
+ // File doesn't exist or is malformed — XLL may not be running
37
+ }
38
+ return null;
39
+ }
40
+ /**
41
+ * Clear the cached session so the next readXllSession() re-reads from disk.
42
+ * Useful after Excel restarts.
43
+ */
44
+ export function clearXllSessionCache() {
45
+ cachedSession = null;
46
+ }
47
+ /**
48
+ * Get the Authorization header value for XLL requests, or undefined
49
+ * if no session file is available (falls back to unauthenticated).
50
+ */
51
+ export function getXllAuthHeader() {
52
+ const session = readXllSession();
53
+ return session ? `Bearer ${session.token}` : undefined;
54
+ }
55
+ /**
56
+ * Authenticated fetch to the XLL HTTP server.
57
+ *
58
+ * Injects the bearer token from the session file and retries once on 403
59
+ * (handles stale cached token after Excel restart).
60
+ */
61
+ export async function xllFetch(url, init) {
62
+ const headers = new Headers(init?.headers);
63
+ const auth = getXllAuthHeader();
64
+ if (auth)
65
+ headers.set('Authorization', auth);
66
+ let response = await fetch(url, { ...init, headers });
67
+ if (response.status === 403) {
68
+ clearXllSessionCache();
69
+ const freshAuth = getXllAuthHeader();
70
+ if (freshAuth)
71
+ headers.set('Authorization', freshAuth);
72
+ response = await fetch(url, { ...init, headers });
73
+ }
74
+ return response;
75
+ }
76
+ //# sourceMappingURL=excel-session.js.map