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.
- package/CHANGELOG.md +17 -11
- package/agent-docs/docs/extensions.md +225 -214
- package/agent-docs/docs/rpc.md +207 -124
- package/agent-docs/docs/skills.md +16 -15
- package/dist/app/agent-session.d.ts +14 -1
- package/dist/app/constants.d.ts +3 -17
- package/dist/app/excel-config.d.ts +22 -0
- package/dist/app/excel-session.d.ts +27 -0
- package/dist/app/extensions/durable-memory/index.d.ts +1 -1
- package/dist/app/extensions/durable-memory/provenance.d.ts +0 -7
- package/dist/app/extensions/index.impl.d.ts +10 -0
- package/dist/app/extensions/runner.d.ts +0 -5
- package/dist/app/index.d.ts +2 -1
- package/dist/app/new-sheet/sdk-types.d.ts +5 -0
- package/dist/app/new-sheet/sheet-exec.d.ts +36 -0
- package/dist/app/new-sheet/wrappers/workbook-summary.d.ts +4 -4
- package/dist/app/prompts/com-api-reference.json +146 -146
- package/dist/app/prompts/mog-api-reference.json +604 -62
- package/dist/app/providers/model-resolver.d.ts +0 -7
- package/dist/app/resources/external-skill-roots.d.ts +52 -0
- package/dist/app/sdk.d.ts +3 -0
- package/dist/app/session/autonomous-workflow.d.ts +15 -0
- package/dist/app/session/branch-manager.d.ts +2 -0
- package/dist/app/session/compaction/compaction.d.ts +0 -5
- package/dist/app/session/session-lifecycle.d.ts +3 -0
- package/dist/app/session/session-observability.d.ts +19 -0
- package/dist/app/session/session-retry.d.ts +81 -0
- package/dist/app/session/session-schema.d.ts +0 -15
- package/dist/app/tools/excel-code-analyzer.d.ts +30 -0
- package/dist/app/tools/excel-diff.d.ts +21 -0
- package/dist/app/tools/excel-exec.d.ts +25 -0
- package/dist/app/tools/execute-code/com-executor.d.ts +12 -3
- package/dist/app/tools/execute-code/com.d.ts +2 -2
- package/dist/app/tools/execute-code/index.d.ts +4 -1
- package/dist/app/tools/refresh-context.d.ts +1 -0
- package/dist/app/tools/web-crawl.d.ts +0 -1
- package/dist/app/tools/web-search.d.ts +6 -12
- package/dist/app/workbook-scope.d.ts +0 -1
- package/dist/app/xll/endpoint.d.ts +9 -0
- package/dist/app/xll/session.d.ts +13 -0
- package/dist/cli.js +1130 -1107
- package/dist/cloud/cloud-shell-adapter.d.ts +1 -0
- package/dist/cloud/observability/client-logging/client-logger.d.ts +57 -0
- package/dist/cloud/observability/client-logging/context.d.ts +26 -0
- package/dist/cloud/observability/client-logging/index.d.ts +8 -0
- package/dist/cloud/observability/client-logging/session-events.d.ts +4 -0
- package/dist/cloud/observability/client-logging/settings-events.d.ts +5 -0
- package/dist/cloud/observability/client-logging/startup-events.d.ts +7 -0
- package/dist/cloud/observability/client-logging/transport.d.ts +15 -0
- package/dist/cloud/observability/client-logging/types.d.ts +31 -0
- package/dist/cloud/observability/index.d.ts +1 -0
- package/dist/config.d.ts +2 -10
- package/dist/main-helpers.d.ts +16 -0
- package/dist/rpc/rpc-types.d.ts +0 -1
- package/dist/shared/content/frontmatter.d.ts +0 -2
- package/dist/shared/logging/langfuse-trace-context.d.ts +0 -1
- package/dist/shell/approvals/tool-approval.d.ts +6 -2
- package/dist/shell/components/index.d.ts +1 -1
- package/dist/shell/components/selectors/index.d.ts +1 -0
- package/dist/shell/components/selectors/port-skills-selector.d.ts +42 -0
- package/dist/shell/dev/index.d.ts +4 -1
- package/dist/shell/dev/session-upload.d.ts +11 -0
- package/dist/shell/dev/trace-export.d.ts +10 -0
- package/dist/shell/dev/trace-package.d.ts +2 -0
- package/dist/shell/dev/trace-share-upload.d.ts +11 -0
- package/dist/shell/export-html/index.impl.d.ts +35 -0
- package/dist/shell/index.d.ts +1 -1
- package/dist/shell/interactive/auth-workflow.d.ts +4 -0
- package/dist/shell/interactive/interactive-mode.d.ts +6 -5
- package/dist/shell/interactive/port-skills-workflow.d.ts +30 -0
- package/dist/shell/interactive/skills-workflow.d.ts +1 -0
- package/dist/shell/interactive/slash-commands.d.ts +1 -0
- package/dist/shell/layout.d.ts +2 -16
- package/dist/shell/session-client.d.ts +2 -2
- package/dist/shell/theme/runtime.d.ts +0 -13
- package/dist/shell/tools/presentation/renderers/web-search.d.ts +0 -1
- package/dist/startup/update-action.d.ts +28 -0
- package/dist/startup/update-manager.d.ts +45 -0
- package/dist/startup/update-prompt.d.ts +16 -0
- package/package.json +12 -7
- package/skills/advanced-mog-api/api-reference.json +798 -900
- package/skills/autonomous/SKILL.md +19 -7
- package/skills/mcp/SKILL.md +15 -13
- package/skills/session-logs/SKILL.md +25 -16
- package/skills/web-crawling/SKILL.md +135 -0
- package/user-docs/dist/index.html +126 -19
- package/user-docs/dist/shortcutxl-docs.pdf +0 -0
- package/xll/ShortcutXL.xll +0 -0
- package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +1 -1
- package/xll/python/Lib/site-packages/pip-26.0.1.dist-info/RECORD +3 -3
- package/xll/python/Scripts/httpx.exe +0 -0
- package/xll/python/Scripts/pip.exe +0 -0
- package/xll/python/Scripts/pip3.12.exe +0 -0
- package/xll/python/Scripts/pip3.exe +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc.1341871905184 +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc.1341871903776 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc.1341871673328 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc.1341886403312 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc.1341929655344 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc.1341899669552 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc.1341931004976 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc.1341871683312 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc.1341871684656 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc.1341929655920 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc.1341899684336 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc.1341929657264 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc.1341871684272 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc.1341879272816 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc.1341929654192 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc.1341929660528 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc.1341886408304 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc.1341929655536 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc.1341929656496 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc.1341929656880 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc.1341899671856 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc.1341899673392 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc.1341899674160 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc.1341899675504 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc.1341899681840 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc.1341899676656 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc.1341931936928 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc.1341931938384 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc.1341931937344 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc.1341931937760 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc.1341899672240 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc.1341899678000 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc.1341925619152 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc.1341929653040 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc.1341929667440 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc.1341925618528 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc.1341899672624 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc.1341929665712 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc.1341929653040 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc.1341931011888 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc.1341929658608 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc.1341929658416 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc.1341930513184 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc.1341930513600 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc.1341930513808 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc.1341930512560 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc.1341930514016 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc.1341929659568 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc.1341931009392 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc.1341929665904 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc.1341929667824 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc.1341931010928 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc.1341931004208 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc.1341871673520 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc.1341871673712 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc.1341899673392 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc.1341895468272 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc.1341925617696 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc.1341929656112 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc.1341897168368 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc.1341931504912 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc.1341899677808 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc.1341929657456 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc.1341929668016 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc.1341929655920 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc.1341895469232 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc.1341897171824 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc.1341899685488 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc.1341899676464 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc.1341899684336 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc.1341929652272 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc.1341931004976 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc.1341899678768 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc.1341899672240 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc.1341931005360 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc.1341931005360 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc.1341931007472 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc.1341931008048 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc.1341931008624 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc.1341931010352 +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc.1341931008048 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc.1341879272816 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc.1341930995952 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc.1341930997872 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc.1341930999216 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc.1341930997680 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc.1341931000560 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc.1341886407152 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc.1341897177200 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc.1341897177584 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc.1341897178352 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc.1341897173360 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc.1341886408880 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc.1341897173552 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc.1341897175280 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc.1341897172208 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc.1341897174512 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc.1341897176816 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc.1341897175664 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc.1341886407536 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc.1341899674160 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc.1341899674544 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc.1341899674160 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc.1341899673200 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc.1341895474608 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc.1341897168368 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc.1341897169136 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc.1341897162992 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc.1341897163376 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc.1341897171248 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc.1341897168368 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc.1341897167216 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc.1341897166832 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc.1341898695248 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc.1341896616352 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc.1341896616976 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc.1341898698784 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc.1341898692544 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc.1341899623104 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc.1341899669744 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc.1341899629552 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc.1341879274352 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc.1341879280304 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc.1341879277232 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc.1341879276464 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc.1341895459824 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc.1341879274736 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc.1341895460016 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc.1341895459824 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc.1341886398896 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc.1341886409072 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc.1341879287024 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc.1341886399280 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc.1341895465584 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc.1341929665520 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc.1341932061488 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc.1341932061104 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc.1341886400624 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc.1341895462512 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc.1341886399472 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc.1341895464048 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc.1341895463280 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc.1341879279536 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc.1341879285296 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc.1341879287408 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc.1341897168176 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc.1341886410032 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc.1341886401392 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc.1341886402544 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc.1341886401584 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc.1341895458864 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc.1341879277424 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc.1341879284720 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc.1341895465008 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc.1341929660912 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc.1341895460592 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc.1341879278000 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc.1341895464048 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc.1341895467504 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc.1341895471728 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc.1341879273776 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc.1341886401584 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc.1341895463664 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc.1341895460400 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc.1341879286256 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc.1341895463088 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc.1341895460592 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc.1341929659952 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc.1341929661296 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc.1341886401008 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc.1341895462704 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc.1341879278000 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc.1341895462128 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc.1341895465968 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc.1341879277040 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc.1341929665904 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc.1341879281456 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc.1341895464048 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc.1341897167216 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc.1341895464432 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc.1341879287600 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc.1341879287600 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc.1341895459056 +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc.1341886413488 +0 -0
- 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.
|
|
3
|
+
## [0.3.34]
|
|
4
4
|
|
|
5
|
-
- **
|
|
6
|
-
- **
|
|
7
|
-
-
|
|
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.
|
|
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
|
|