shortcutxl 0.2.32 → 0.3.34

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 (279) hide show
  1. package/CHANGELOG.md +17 -11
  2. package/agent-docs/docs/extensions.md +225 -214
  3. package/agent-docs/docs/rpc.md +207 -124
  4. package/agent-docs/docs/skills.md +16 -15
  5. package/dist/app/agent-session.d.ts +14 -1
  6. package/dist/app/constants.d.ts +3 -17
  7. package/dist/app/excel-config.d.ts +22 -0
  8. package/dist/app/excel-session.d.ts +27 -0
  9. package/dist/app/extensions/durable-memory/index.d.ts +1 -1
  10. package/dist/app/extensions/durable-memory/provenance.d.ts +0 -7
  11. package/dist/app/extensions/index.impl.d.ts +10 -0
  12. package/dist/app/extensions/runner.d.ts +0 -5
  13. package/dist/app/index.d.ts +2 -1
  14. package/dist/app/new-sheet/sdk-types.d.ts +5 -0
  15. package/dist/app/new-sheet/sheet-exec.d.ts +36 -0
  16. package/dist/app/new-sheet/wrappers/workbook-summary.d.ts +4 -4
  17. package/dist/app/prompts/com-api-reference.json +146 -146
  18. package/dist/app/prompts/mog-api-reference.json +604 -62
  19. package/dist/app/providers/model-resolver.d.ts +0 -7
  20. package/dist/app/resources/external-skill-roots.d.ts +52 -0
  21. package/dist/app/sdk.d.ts +3 -0
  22. package/dist/app/session/autonomous-workflow.d.ts +15 -0
  23. package/dist/app/session/branch-manager.d.ts +2 -0
  24. package/dist/app/session/compaction/compaction.d.ts +0 -5
  25. package/dist/app/session/session-lifecycle.d.ts +3 -0
  26. package/dist/app/session/session-observability.d.ts +19 -0
  27. package/dist/app/session/session-retry.d.ts +81 -0
  28. package/dist/app/session/session-schema.d.ts +0 -15
  29. package/dist/app/tools/excel-code-analyzer.d.ts +30 -0
  30. package/dist/app/tools/excel-diff.d.ts +21 -0
  31. package/dist/app/tools/excel-exec.d.ts +25 -0
  32. package/dist/app/tools/execute-code/com-executor.d.ts +12 -3
  33. package/dist/app/tools/execute-code/com.d.ts +2 -2
  34. package/dist/app/tools/execute-code/index.d.ts +4 -1
  35. package/dist/app/tools/refresh-context.d.ts +1 -0
  36. package/dist/app/tools/web-crawl.d.ts +0 -1
  37. package/dist/app/tools/web-search.d.ts +6 -12
  38. package/dist/app/workbook-scope.d.ts +0 -1
  39. package/dist/app/xll/endpoint.d.ts +9 -0
  40. package/dist/app/xll/session.d.ts +13 -0
  41. package/dist/cli.js +1130 -1107
  42. package/dist/cloud/cloud-shell-adapter.d.ts +1 -0
  43. package/dist/cloud/observability/client-logging/client-logger.d.ts +57 -0
  44. package/dist/cloud/observability/client-logging/context.d.ts +26 -0
  45. package/dist/cloud/observability/client-logging/index.d.ts +8 -0
  46. package/dist/cloud/observability/client-logging/session-events.d.ts +4 -0
  47. package/dist/cloud/observability/client-logging/settings-events.d.ts +5 -0
  48. package/dist/cloud/observability/client-logging/startup-events.d.ts +7 -0
  49. package/dist/cloud/observability/client-logging/transport.d.ts +15 -0
  50. package/dist/cloud/observability/client-logging/types.d.ts +31 -0
  51. package/dist/cloud/observability/index.d.ts +1 -0
  52. package/dist/config.d.ts +2 -10
  53. package/dist/main-helpers.d.ts +16 -0
  54. package/dist/rpc/rpc-types.d.ts +0 -1
  55. package/dist/shared/content/frontmatter.d.ts +0 -2
  56. package/dist/shared/logging/langfuse-trace-context.d.ts +0 -1
  57. package/dist/shell/approvals/tool-approval.d.ts +6 -2
  58. package/dist/shell/components/index.d.ts +1 -1
  59. package/dist/shell/components/selectors/index.d.ts +1 -0
  60. package/dist/shell/components/selectors/port-skills-selector.d.ts +42 -0
  61. package/dist/shell/dev/index.d.ts +4 -1
  62. package/dist/shell/dev/session-upload.d.ts +11 -0
  63. package/dist/shell/dev/trace-export.d.ts +10 -0
  64. package/dist/shell/dev/trace-package.d.ts +2 -0
  65. package/dist/shell/dev/trace-share-upload.d.ts +11 -0
  66. package/dist/shell/export-html/index.impl.d.ts +35 -0
  67. package/dist/shell/index.d.ts +1 -1
  68. package/dist/shell/interactive/auth-workflow.d.ts +4 -0
  69. package/dist/shell/interactive/interactive-mode.d.ts +6 -5
  70. package/dist/shell/interactive/port-skills-workflow.d.ts +30 -0
  71. package/dist/shell/interactive/skills-workflow.d.ts +1 -0
  72. package/dist/shell/interactive/slash-commands.d.ts +1 -0
  73. package/dist/shell/layout.d.ts +2 -16
  74. package/dist/shell/session-client.d.ts +2 -2
  75. package/dist/shell/theme/runtime.d.ts +0 -13
  76. package/dist/shell/tools/presentation/renderers/web-search.d.ts +0 -1
  77. package/dist/startup/update-action.d.ts +28 -0
  78. package/dist/startup/update-manager.d.ts +45 -0
  79. package/dist/startup/update-prompt.d.ts +16 -0
  80. package/package.json +12 -7
  81. package/skills/advanced-mog-api/api-reference.json +798 -900
  82. package/skills/autonomous/SKILL.md +19 -7
  83. package/skills/mcp/SKILL.md +15 -13
  84. package/skills/session-logs/SKILL.md +25 -16
  85. package/skills/web-crawling/SKILL.md +135 -0
  86. package/user-docs/dist/index.html +126 -19
  87. package/user-docs/dist/shortcutxl-docs.pdf +0 -0
  88. package/xll/ShortcutXL.xll +0 -0
  89. package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +1 -1
  90. package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/RECORD +3 -3
  91. package/xll/python/Scripts/httpx.exe +0 -0
  92. package/xll/python/Scripts/pip.exe +0 -0
  93. package/xll/python/Scripts/pip3.12.exe +0 -0
  94. package/xll/python/Scripts/pip3.exe +0 -0
  95. package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc.1341871905184 +0 -0
  96. package/xll/python/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc.1341871903776 +0 -0
  97. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc.1341871673328 +0 -0
  98. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc.1341886403312 +0 -0
  99. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc.1341929655344 +0 -0
  100. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc.1341899669552 +0 -0
  101. package/xll/python/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc.1341931004976 +0 -0
  102. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc.1341871683312 +0 -0
  103. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc.1341871684656 +0 -0
  104. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc.1341929655920 +0 -0
  105. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc.1341899684336 +0 -0
  106. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc.1341929657264 +0 -0
  107. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc.1341871684272 +0 -0
  108. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc.1341879272816 +0 -0
  109. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc.1341929654192 +0 -0
  110. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc.1341929660528 +0 -0
  111. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc.1341886408304 +0 -0
  112. package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc.1341929655536 +0 -0
  113. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc.1341929656496 +0 -0
  114. package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc.1341929656880 +0 -0
  115. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc.1341899671856 +0 -0
  116. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc.1341899673392 +0 -0
  117. package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc.1341899674160 +0 -0
  118. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc.1341899675504 +0 -0
  119. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc.1341899681840 +0 -0
  120. package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc.1341899676656 +0 -0
  121. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc.1341931936928 +0 -0
  122. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc.1341931938384 +0 -0
  123. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc.1341931937344 +0 -0
  124. package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc.1341931937760 +0 -0
  125. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc.1341899672240 +0 -0
  126. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc.1341899678000 +0 -0
  127. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc.1341925619152 +0 -0
  128. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc.1341929653040 +0 -0
  129. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc.1341929667440 +0 -0
  130. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc.1341925618528 +0 -0
  131. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc.1341899672624 +0 -0
  132. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc.1341929665712 +0 -0
  133. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc.1341929653040 +0 -0
  134. package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc.1341931011888 +0 -0
  135. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc.1341929658608 +0 -0
  136. package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc.1341929658416 +0 -0
  137. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc.1341930513184 +0 -0
  138. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc.1341930513600 +0 -0
  139. package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc.1341930513808 +0 -0
  140. package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc.1341930512560 +0 -0
  141. package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc.1341930514016 +0 -0
  142. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc.1341929659568 +0 -0
  143. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc.1341931009392 +0 -0
  144. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc.1341929665904 +0 -0
  145. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc.1341929667824 +0 -0
  146. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc.1341931010928 +0 -0
  147. package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc.1341931004208 +0 -0
  148. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc.1341871673520 +0 -0
  149. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc.1341871673712 +0 -0
  150. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc.1341899673392 +0 -0
  151. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc.1341895468272 +0 -0
  152. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc.1341925617696 +0 -0
  153. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc.1341929656112 +0 -0
  154. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc.1341897168368 +0 -0
  155. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc.1341931504912 +0 -0
  156. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc.1341899677808 +0 -0
  157. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc.1341929657456 +0 -0
  158. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc.1341929668016 +0 -0
  159. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc.1341929655920 +0 -0
  160. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc.1341895469232 +0 -0
  161. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc.1341897171824 +0 -0
  162. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc.1341899685488 +0 -0
  163. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc.1341899676464 +0 -0
  164. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc.1341899684336 +0 -0
  165. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc.1341929652272 +0 -0
  166. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc.1341931004976 +0 -0
  167. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc.1341899678768 +0 -0
  168. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc.1341899672240 +0 -0
  169. package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc.1341931005360 +0 -0
  170. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc.1341931005360 +0 -0
  171. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc.1341931007472 +0 -0
  172. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc.1341931008048 +0 -0
  173. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc.1341931008624 +0 -0
  174. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc.1341931010352 +0 -0
  175. package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc.1341931008048 +0 -0
  176. package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc.1341879272816 +0 -0
  177. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc.1341930995952 +0 -0
  178. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc.1341930997872 +0 -0
  179. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc.1341930999216 +0 -0
  180. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc.1341930997680 +0 -0
  181. package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc.1341931000560 +0 -0
  182. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc.1341886407152 +0 -0
  183. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc.1341897177200 +0 -0
  184. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc.1341897177584 +0 -0
  185. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc.1341897178352 +0 -0
  186. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc.1341897173360 +0 -0
  187. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc.1341886408880 +0 -0
  188. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc.1341897173552 +0 -0
  189. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc.1341897175280 +0 -0
  190. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc.1341897172208 +0 -0
  191. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc.1341897174512 +0 -0
  192. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc.1341897176816 +0 -0
  193. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc.1341897175664 +0 -0
  194. package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc.1341886407536 +0 -0
  195. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc.1341899674160 +0 -0
  196. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc.1341899674544 +0 -0
  197. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc.1341899674160 +0 -0
  198. package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc.1341899673200 +0 -0
  199. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc.1341895474608 +0 -0
  200. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc.1341897168368 +0 -0
  201. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc.1341897169136 +0 -0
  202. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc.1341897162992 +0 -0
  203. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc.1341897163376 +0 -0
  204. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc.1341897171248 +0 -0
  205. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc.1341897168368 +0 -0
  206. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc.1341897167216 +0 -0
  207. package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc.1341897166832 +0 -0
  208. package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc.1341898695248 +0 -0
  209. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc.1341896616352 +0 -0
  210. package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc.1341896616976 +0 -0
  211. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc.1341898698784 +0 -0
  212. package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc.1341898692544 +0 -0
  213. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc.1341899623104 +0 -0
  214. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc.1341899669744 +0 -0
  215. package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc.1341899629552 +0 -0
  216. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc.1341879274352 +0 -0
  217. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc.1341879280304 +0 -0
  218. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc.1341879277232 +0 -0
  219. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc.1341879276464 +0 -0
  220. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc.1341895459824 +0 -0
  221. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc.1341879274736 +0 -0
  222. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc.1341895460016 +0 -0
  223. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc.1341895459824 +0 -0
  224. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc.1341886398896 +0 -0
  225. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc.1341886409072 +0 -0
  226. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc.1341879287024 +0 -0
  227. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc.1341886399280 +0 -0
  228. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc.1341895465584 +0 -0
  229. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc.1341929665520 +0 -0
  230. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc.1341932061488 +0 -0
  231. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc.1341932061104 +0 -0
  232. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc.1341886400624 +0 -0
  233. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc.1341895462512 +0 -0
  234. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc.1341886399472 +0 -0
  235. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc.1341895464048 +0 -0
  236. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc.1341895463280 +0 -0
  237. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc.1341879279536 +0 -0
  238. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc.1341879285296 +0 -0
  239. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc.1341879287408 +0 -0
  240. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc.1341897168176 +0 -0
  241. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc.1341886410032 +0 -0
  242. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc.1341886401392 +0 -0
  243. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc.1341886402544 +0 -0
  244. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc.1341886401584 +0 -0
  245. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc.1341895458864 +0 -0
  246. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc.1341879277424 +0 -0
  247. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc.1341879284720 +0 -0
  248. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc.1341895465008 +0 -0
  249. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc.1341929660912 +0 -0
  250. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc.1341895460592 +0 -0
  251. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc.1341879278000 +0 -0
  252. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc.1341895464048 +0 -0
  253. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc.1341895467504 +0 -0
  254. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc.1341895471728 +0 -0
  255. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc.1341879273776 +0 -0
  256. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc.1341886401584 +0 -0
  257. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc.1341895463664 +0 -0
  258. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc.1341895460400 +0 -0
  259. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc.1341879286256 +0 -0
  260. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc.1341895463088 +0 -0
  261. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc.1341895460592 +0 -0
  262. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc.1341929659952 +0 -0
  263. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc.1341929661296 +0 -0
  264. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc.1341886401008 +0 -0
  265. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc.1341895462704 +0 -0
  266. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc.1341879278000 +0 -0
  267. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc.1341895462128 +0 -0
  268. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc.1341895465968 +0 -0
  269. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc.1341879277040 +0 -0
  270. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc.1341929665904 +0 -0
  271. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc.1341879281456 +0 -0
  272. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc.1341895464048 +0 -0
  273. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc.1341897167216 +0 -0
  274. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc.1341895464432 +0 -0
  275. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc.1341879287600 +0 -0
  276. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc.1341879287600 +0 -0
  277. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc.1341895459056 +0 -0
  278. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc.1341886413488 +0 -0
  279. package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc.1341895471920 +0 -0
package/CHANGELOG.md CHANGED
@@ -1,18 +1,24 @@
1
1
  # Changelog
2
2
 
3
- ## [0.2.32]
3
+ ## [0.3.34]
4
4
 
5
- - **Durable memory** - ShortcutXL now remembers useful context across sessions, so you no longer need to repeat the same preferences and project details every time you start a new conversation.
6
- - **Faster and more reliable tool use** - Read-only tools can run while the assistant is still streaming, interrupted turns recover more gracefully, and long responses continue more reliably.
7
- - **`/manage` mode** - New delegation-focused mode for complex work. Use `/manage` when you want the agent to coordinate tasks instead of executing everything directly.
8
- - **Tool summaries** - The interactive UI now shows short human-readable summaries of tool executions so it's easier to follow what the agent is doing.
9
- - **Budgeted runs** - New `/budget <token-budget> <task>` command for long-running work with an explicit cumulative token limit.
10
- - **More reliable MCP connections** - Long-running MCP tools now handle timeouts and progress more gracefully, with clearer errors and better visibility in `/mcp`.
11
- - **Skill visibility controls** - `/skills` now lets you choose which loaded skills are advertised to the agent. Unchecked skills stay available through explicit `/skill:name`.
12
- - **Skill upload** - New `/upload-skills` command to push your local user skills to cloud storage, with approval before overwriting or deleting an existing remote copy.
13
- - **Faster workbook startup context** - ShortcutXL now uses a lighter workbook context during startup, improving responsiveness before deeper workbook inspection is needed.
5
+ - **Revamped update flow** - When an update is available at launch, ShortcutXL now prompts before the shell starts and runs the update in the foreground.
6
+ - **Import skills from Claude Code and Codex** - New `/port-skills` lets you register skills from Claude Code, Codex, and `.agents` folders.
7
+ - **Better `/autonomous` continuation** - Long-running autonomous tasks now continue more cleanly after a context refresh instead of losing the thread mid-run.
14
8
 
15
- ## [0.2.31]
9
+ ## [0.2.32]
10
+
11
+ - **Durable memory** - ShortcutXL now remembers useful context across sessions, so you no longer need to repeat the same preferences and project details every time you start a new conversation.
12
+ - **Faster and more reliable tool use** - Read-only tools can run while the assistant is still streaming, interrupted turns recover more gracefully, and long responses continue more reliably.
13
+ - **`/manage` mode** - New delegation-focused mode for complex work. Use `/manage` when you want the agent to coordinate tasks instead of executing everything directly.
14
+ - **Tool summaries** - The interactive UI now shows short human-readable summaries of tool executions so it's easier to follow what the agent is doing.
15
+ - **Budgeted runs** - New `/budget <token-budget> <task>` command for long-running work with an explicit cumulative token limit.
16
+ - **More reliable MCP connections** - Long-running MCP tools now handle timeouts and progress more gracefully, with clearer errors and better visibility in `/mcp`.
17
+ - **Skill visibility controls** - `/skills` now lets you choose which loaded skills are advertised to the agent. Unchecked skills stay available through explicit `/skill:name`.
18
+ - **Skill upload** - New `/upload-skills` command to push your local user skills to cloud storage, with approval before overwriting or deleting an existing remote copy.
19
+ - **Faster workbook startup context** - ShortcutXL now uses a lighter workbook context during startup, improving responsiveness before deeper workbook inspection is needed.
20
+
21
+ ## [0.2.31]
16
22
 
17
23
  - **Improved agent behavior quality** — Better exploration, verification, and convention-matching when working with spreadsheets.
18
24