shortcutxl 0.3.61 → 0.3.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BINARY-INVENTORY.json +13 -13
- package/CHANGELOG.md +5 -0
- package/agent-docs/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/binary-provenance.json +7 -7
- package/dist/app/agent-session-runtime-adapter.js +8 -0
- package/dist/app/agent-session.d.ts +2 -2
- package/dist/app/agent-session.js +4 -12
- package/dist/app/approvals/types.d.ts +1 -0
- package/dist/app/collab/sync-bridge.js +3 -3
- package/dist/app/credits/credit-gate.d.ts +1 -0
- package/dist/app/credits/credit-gate.js +5 -2
- package/dist/app/modes/action/agent.d.ts +1 -0
- package/dist/app/modes/action/agent.js +2 -2
- package/dist/app/modes/action/prompt.js +2 -2
- package/dist/app/modes/manage/agent.d.ts +1 -1
- package/dist/app/modes/manage/agent.js +3 -3
- package/dist/app/modes/manage/prompt.js +9 -6
- package/dist/app/modes/plan/agent.js +1 -10
- package/dist/app/modes/plan/prompt.js +4 -4
- package/dist/app/modes/switch-mode.d.ts +2 -0
- package/dist/app/modes/switch-mode.js +14 -6
- package/dist/app/new-sheet/cell-diff/types.d.ts +1 -1
- package/dist/app/new-sheet/cell-diff/types.js +1 -1
- package/dist/app/new-sheet/sdk-types.d.ts +2 -2
- package/dist/app/new-sheet/sdk-types.js +2 -2
- package/dist/app/new-sheet/sheet-engine.d.ts +1 -1
- package/dist/app/new-sheet/sheet-engine.js +1 -1
- package/dist/app/providers/model-resolver.d.ts +3 -3
- package/dist/app/providers/model-resolver.js +3 -2
- package/dist/app/providers/register-shortcut-provider.js +3 -39
- package/dist/app/providers/shortcut-invoke.js +1 -0
- package/dist/app/providers/shortcut-stream.js +1 -0
- package/dist/app/resources/agents.d.ts +1 -1
- package/dist/app/resources/agents.js +1 -6
- package/dist/app/session/autonomous-workflow.js +2 -37
- package/dist/app/session/session-manager.d.ts +2 -0
- package/dist/app/session/session-manager.js +63 -0
- package/dist/app/shared/tools/execute-code/mog.d.ts +1 -1
- package/dist/app/shared/tools/execute-code/mog.js +1 -1
- package/dist/app/subagents/clone/agent.d.ts +1 -1
- package/dist/app/subagents/clone/agent.js +14 -13
- package/dist/app/subagents/document-reader/agent.js +1 -1
- package/dist/app/subagents/index.d.ts +0 -1
- package/dist/app/subagents/index.js +6 -8
- package/dist/app/subagents/verification/agent.js +45 -90
- package/dist/app/subagents/workbook-reader/agent.js +1 -1
- package/dist/app/tools/refresh-context.d.ts +2 -2
- package/dist/app/tools/refresh-context.js +2 -2
- package/dist/app/tools/switch-mode.js +20 -2
- package/dist/app/tools/take-screenshot.d.ts +1 -1
- package/dist/app/tools/take-screenshot.js +1 -1
- package/dist/app/tools/task/runner.js +19 -3
- package/dist/app/tools/task/task.js +1 -3
- package/dist/cli.js +3383 -796
- package/dist/contracts/agent-api.d.ts +52 -39
- package/dist/contracts/agent-api.js +18 -0
- package/dist/contracts/agent-execute-code.d.ts +1 -1
- package/dist/contracts/agent-execute-code.js +1 -1
- package/dist/contracts/agent-session-store.d.ts +6 -1
- package/dist/contracts/agent-session-store.js +2 -1
- package/dist/contracts/host-tool.d.ts +14 -0
- package/dist/contracts/host-tool.js +21 -0
- package/dist/contracts/model-call.d.ts +2 -1
- package/dist/contracts/model-call.js +1 -0
- package/dist/contracts/model-stream.d.ts +16 -2
- package/dist/contracts/model-stream.js +3 -1
- package/dist/core/agent-controller.d.ts +3 -4
- package/dist/core/agent-controller.js +3 -4
- package/dist/core/agent-engine.d.ts +3 -3
- package/dist/core/agent-engine.js +3 -3
- package/dist/core/core-types.d.ts +2 -2
- package/dist/core/defaults.js +1 -1
- package/dist/core/embedded-agent-facade.d.ts +2 -1
- package/dist/core/embedded-agent-facade.js +6 -0
- package/dist/core/session/compaction/constants.d.ts +4 -5
- package/dist/core/session/compaction/constants.js +7 -10
- package/dist/core/session-schema.d.ts +8 -1
- package/dist/core/session-schema.js +15 -4
- package/dist/credits/shortcut-credits.d.ts +1 -0
- package/dist/credits/shortcut-credits.js +6 -3
- package/dist/embedded-agent/agent-event-funnel.d.ts +9 -0
- package/dist/embedded-agent/agent-event-funnel.js +13 -4
- package/dist/embedded-agent/compose.js +176 -62
- package/dist/embedded-agent/google-vertex-transport.d.ts +25 -0
- package/dist/embedded-agent/google-vertex-transport.js +496 -0
- package/dist/embedded-agent/host-runtime-options.d.ts +1 -1
- package/dist/embedded-agent/host-runtime-options.js +61 -0
- package/dist/embedded-agent/host-tools/action-tool-names.d.ts +3 -0
- package/dist/embedded-agent/host-tools/action-tool-names.js +17 -0
- package/dist/embedded-agent/host-tools/build-tool-list.d.ts +8 -1
- package/dist/embedded-agent/host-tools/build-tool-list.js +82 -39
- package/dist/embedded-agent/host-tools/create-website/contract.js +15 -22
- package/dist/embedded-agent/host-tools/execute-bash-command/contract.js +12 -15
- package/dist/embedded-agent/host-tools/get-tool-info/contract.d.ts +2 -2
- package/dist/embedded-agent/host-tools/get-tool-info/contract.js +13 -11
- package/dist/embedded-agent/host-tools/get-tool-info/shared.d.ts +1 -1
- package/dist/embedded-agent/host-tools/index.d.ts +1 -0
- package/dist/embedded-agent/host-tools/index.js +1 -0
- package/dist/embedded-agent/host-tools/invoke-llm/contract.js +15 -33
- package/dist/embedded-agent/host-tools/mcp/contract.d.ts +52 -0
- package/dist/embedded-agent/host-tools/mcp/contract.js +130 -0
- package/dist/embedded-agent/host-tools/mcp/index.d.ts +2 -0
- package/dist/embedded-agent/host-tools/mcp/index.js +2 -0
- package/dist/embedded-agent/host-tools/mode-host-tools.d.ts +4 -1
- package/dist/embedded-agent/host-tools/mode-host-tools.js +21 -13
- package/dist/embedded-agent/host-tools/modify-skill/contract.d.ts +5 -4
- package/dist/embedded-agent/host-tools/modify-skill/contract.js +5 -4
- package/dist/embedded-agent/host-tools/read-skill/contract.d.ts +4 -2
- package/dist/embedded-agent/host-tools/read-skill/contract.js +25 -20
- package/dist/embedded-agent/host-tools/registry.d.ts +5 -4
- package/dist/embedded-agent/host-tools/registry.js +7 -2
- package/dist/embedded-agent/host-tools/request-credential/contract.js +11 -14
- package/dist/embedded-agent/host-tools/request-oauth/contract.js +8 -12
- package/dist/embedded-agent/host-tools/sandbox-llm/contract.js +10 -11
- package/dist/embedded-agent/host-tools/shared/llm-stream.d.ts +4 -1
- package/dist/embedded-agent/host-tools/shared/llm-stream.js +7 -2
- package/dist/embedded-agent/host-tools/switch-mode/contract.d.ts +5 -2
- package/dist/embedded-agent/host-tools/switch-mode/contract.js +58 -45
- package/dist/embedded-agent/host-tools/take-screenshot/contract.js +13 -26
- package/dist/embedded-agent/host-tools/task/agents/clone.js +15 -8
- package/dist/embedded-agent/host-tools/task/agents/document-reader.js +1 -1
- package/dist/embedded-agent/host-tools/task/agents/index.js +3 -5
- package/dist/embedded-agent/host-tools/task/agents/verification.d.ts +2 -7
- package/dist/embedded-agent/host-tools/task/agents/verification.js +48 -91
- package/dist/embedded-agent/host-tools/task/agents/workbook-reader.js +1 -1
- package/dist/embedded-agent/host-tools/task/contract.d.ts +26 -11
- package/dist/embedded-agent/host-tools/task/contract.js +137 -71
- package/dist/embedded-agent/host-tools/task/index.d.ts +3 -2
- package/dist/embedded-agent/host-tools/task/index.js +2 -1
- package/dist/embedded-agent/host-tools/task/lifecycle.d.ts +58 -0
- package/dist/embedded-agent/host-tools/task/lifecycle.js +152 -0
- package/dist/embedded-agent/host-tools/task/manager.d.ts +108 -0
- package/dist/embedded-agent/host-tools/task/manager.js +346 -0
- package/dist/embedded-agent/host-tools/task/runner.d.ts +52 -0
- package/dist/embedded-agent/host-tools/task/runner.js +177 -0
- package/dist/embedded-agent/host-tools/task/send-message.d.ts +28 -0
- package/dist/embedded-agent/host-tools/task/send-message.js +167 -0
- package/dist/embedded-agent/host-tools/task/sidechain.d.ts +59 -0
- package/dist/embedded-agent/host-tools/task/sidechain.js +148 -0
- package/dist/embedded-agent/host-tools/timeouts.js +2 -0
- package/dist/embedded-agent/host-tools/tool-names.d.ts +2 -0
- package/dist/embedded-agent/host-tools/tool-names.js +2 -0
- package/dist/embedded-agent/host-tools/web-crawl/contract.js +9 -10
- package/dist/embedded-agent/index.d.ts +24 -2
- package/dist/embedded-agent/model-registry.d.ts +2 -0
- package/dist/embedded-agent/model-registry.js +28 -50
- package/dist/embedded-agent/model-selection.js +5 -0
- package/dist/embedded-agent/per-turn-options.d.ts +1 -1
- package/dist/embedded-agent/persistence.js +3 -0
- package/dist/embedded-agent/prompt/build.js +2 -3
- package/dist/embedded-agent/prompt/modes/action.js +25 -4
- package/dist/embedded-agent/prompt/modes/manage.js +9 -6
- package/dist/embedded-agent/prompt/modes/plan.js +4 -4
- package/dist/embedded-agent/prompt/sections.d.ts +4 -7
- package/dist/embedded-agent/prompt/sections.js +40 -76
- package/dist/embedded-agent/session-entry-builder.d.ts +5 -1
- package/dist/embedded-agent/session-entry-builder.js +28 -1
- package/dist/embedded-agent/session-store.d.ts +3 -0
- package/dist/embedded-agent/session-store.js +45 -2
- package/dist/embedded-agent/stream.d.ts +3 -3
- package/dist/embedded-agent/stream.js +38 -8
- package/dist/embedded-agent/task-notification-turn-queue.d.ts +30 -0
- package/dist/embedded-agent/task-notification-turn-queue.js +77 -0
- package/dist/embedded-agent/worker-bridge/dispatch.js +7 -0
- package/dist/embedded-agent/worker-bridge/embedded-agent-worker.js +5 -0
- package/dist/embedded-agent/worker-bridge/host-client.d.ts +2 -1
- package/dist/embedded-agent/worker-bridge/host-client.js +9 -0
- package/dist/main.js +2 -2
- package/dist/model-display.d.ts +11 -0
- package/dist/model-display.js +24 -0
- package/dist/model-ids.d.ts +2 -0
- package/dist/model-ids.js +2 -0
- package/dist/shell/components/primitives/footer.js +2 -18
- package/dist/shell/components/selectors/model-selector.js +4 -2
- package/dist/shell/export-html/session-view-model.d.ts +6 -2
- package/dist/shell/export-html/session-view-model.js +2 -0
- package/dist/shell/export-html/template.js +10 -0
- package/dist/shell/footer-data-provider.d.ts +2 -0
- package/dist/shell/interactive/interactive-mode-options.d.ts +1 -0
- package/dist/shell/interactive/interactive-mode.js +2 -5
- package/dist/shortcut-model-catalog.d.ts +5 -0
- package/dist/shortcut-model-catalog.js +57 -0
- package/dist/startup/preflight/shared.js +2 -2
- package/dist/startup/runtime-routing.d.ts +1 -1
- package/dist/tool-names.d.ts +1 -2
- package/dist/tool-names.js +1 -3
- package/package.json +61 -52
- package/plugins/shortcutxl/SKILL.md +6 -6
- package/plugins/shortcutxl/skills/shortcutxl/SKILL.md +6 -6
- package/skills/autonomous/SKILL.md +1 -7
- package/user-docs/dist/shortcutxl-docs.pdf +0 -0
- package/xll/ShortcutXL.xll +0 -0
- package/xll/python/Lib/site-packages/__pycache__/pythoncom.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/incremental_tree.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/__version__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_api.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_auth.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_client.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_config.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_content.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_decoders.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_exceptions.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_main.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_models.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_multipart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_status_codes.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_types.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urlparse.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_urls.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/__pycache__/_utils.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/asgi.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/base.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/default.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/mock.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx/_transports/__pycache__/wsgi.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/httpx-0.28.1.dist-info/RECORD +1 -1
- package/xll/python/Lib/site-packages/idna/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/core.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/idnadata.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/intranges.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/idna/__pycache__/package_data.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/idna-3.18.dist-info/RECORD +1 -1
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/__pycache__/_constants.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/_writer.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/cell.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/read_only.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/rich_text.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/cell/__pycache__/text.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_3d.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/axis.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/data_source.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/label.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/layout.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/legend.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/marker.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/picture.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/pivot.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/plotarea.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reader.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/reference.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/shapes.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/text.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/title.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/trendline.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/author.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/comments.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/numbers.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/compat/__pycache__/strings.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/base.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/container.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/colors.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/connector.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/effect.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/fill.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/geometry.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/image.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/line.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/picture.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/properties.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/relation.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/text.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/drawing/__pycache__/xdr.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formatting/__pycache__/rule.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/formula/__pycache__/translate.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/core.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/custom.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/cache.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/fields.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/record.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/pivot/__pycache__/table.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/drawings.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/excel.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/strings.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/reader/__pycache__/workbook.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/alignment.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/borders.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/builtins.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/colors.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/differential.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fills.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/fonts.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/numbers.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/protection.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/proxy.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/styleable.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/styles/__pycache__/table.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/cell.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/datetime.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/escape.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/formulas.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/protection.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/utils/__pycache__/units.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/_writer.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/child.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/properties.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/protection.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/views.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/web.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_read_only.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_reader.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_write_only.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/_writer.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/cell_range.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/formula.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/page.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/print_settings.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/related.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/scenario.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/table.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/views.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/excel.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/writer/__pycache__/theme.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/constants.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/openpyxl/xml/__pycache__/functions.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/release_control.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/direct_url.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/pip-26.1.2.dist-info/RECORD +3 -3
- package/xll/python/Lib/site-packages/pywin32-311.dist-info/RECORD +2 -2
- package/xll/python/Lib/site-packages/win32/lib/__pycache__/pywin32_bootstrap.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/win32/lib/__pycache__/pywintypes.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/win32/lib/__pycache__/winerror.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/win32com/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/win32com/client/__pycache__/CLSIDToClass.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/win32com/client/__pycache__/__init__.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/win32com/client/__pycache__/build.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/win32com/client/__pycache__/dynamic.cpython-313.pyc +0 -0
- package/xll/python/Lib/site-packages/win32com/client/__pycache__/gencache.cpython-313.pyc +0 -0
- package/xll/python/Scripts/httpx.exe +0 -0
- package/xll/python/Scripts/idna.exe +0 -0
- package/xll/python/Scripts/pip.exe +0 -0
- package/xll/python/Scripts/pip3.13.exe +0 -0
- package/xll/python/Scripts/pip3.exe +0 -0
- package/xll/python/Scripts/pywin32_postinstall.exe +0 -0
- package/xll/python/Scripts/pywin32_testall.exe +0 -0
- package/xll/python/sqlite3.dll +0 -0
- package/dist/app/subagents/general/agent.d.ts +0 -10
- package/dist/app/subagents/general/agent.js +0 -79
- package/dist/embedded-agent/host-tools/task/agents/general.d.ts +0 -10
- package/dist/embedded-agent/host-tools/task/agents/general.js +0 -74
- package/dist/embedded-agent/host-tools/task/run-subagent.d.ts +0 -51
- package/dist/embedded-agent/host-tools/task/run-subagent.js +0 -138
package/BINARY-INVENTORY.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"generatedAt": "2026-06-
|
|
3
|
+
"generatedAt": "2026-06-10T21:37:57.358Z",
|
|
4
4
|
"package": "shortcutxl",
|
|
5
5
|
"binaryExtensions": [
|
|
6
6
|
".dll",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"files": [
|
|
12
12
|
{
|
|
13
13
|
"path": "xll/ShortcutXL.xll",
|
|
14
|
-
"sha256": "
|
|
14
|
+
"sha256": "6eaecb6c7dd047ee91a0717b8849c43baa847d0c21afe094fe1d9e6fd1f89f6a",
|
|
15
15
|
"source": "ShortcutXL native XLL build",
|
|
16
16
|
"version": "package",
|
|
17
17
|
"builtBy": "shortcut",
|
|
@@ -523,7 +523,7 @@
|
|
|
523
523
|
},
|
|
524
524
|
{
|
|
525
525
|
"path": "xll/python/Scripts/httpx.exe",
|
|
526
|
-
"sha256": "
|
|
526
|
+
"sha256": "6e6b7c9bb24e920a8d59ee9464ee83f245f9a2daa1489bb23a09e80e1eac59f8",
|
|
527
527
|
"source": "httpx console launcher installed into embedded Python",
|
|
528
528
|
"version": "see packaged httpx distribution",
|
|
529
529
|
"builtBy": "third-party",
|
|
@@ -531,7 +531,7 @@
|
|
|
531
531
|
},
|
|
532
532
|
{
|
|
533
533
|
"path": "xll/python/Scripts/idna.exe",
|
|
534
|
-
"sha256": "
|
|
534
|
+
"sha256": "15dbbd45e6257c0ca2dc305880d90ccf626ddb5c9265f8e9116f564483176ce1",
|
|
535
535
|
"source": "Python package console launcher installed into embedded Python",
|
|
536
536
|
"version": "see owning Python package metadata in site-packages",
|
|
537
537
|
"builtBy": "third-party",
|
|
@@ -539,7 +539,7 @@
|
|
|
539
539
|
},
|
|
540
540
|
{
|
|
541
541
|
"path": "xll/python/Scripts/pip.exe",
|
|
542
|
-
"sha256": "
|
|
542
|
+
"sha256": "373818f3109b5b0e3d7f249ebced133b042d0e2ffd2fb983967cb611c40e5d57",
|
|
543
543
|
"source": "pip console launcher installed into embedded Python",
|
|
544
544
|
"version": "see packaged pip distribution",
|
|
545
545
|
"builtBy": "third-party",
|
|
@@ -547,7 +547,7 @@
|
|
|
547
547
|
},
|
|
548
548
|
{
|
|
549
549
|
"path": "xll/python/Scripts/pip3.13.exe",
|
|
550
|
-
"sha256": "
|
|
550
|
+
"sha256": "373818f3109b5b0e3d7f249ebced133b042d0e2ffd2fb983967cb611c40e5d57",
|
|
551
551
|
"source": "pip console launcher installed into embedded Python",
|
|
552
552
|
"version": "see packaged pip distribution",
|
|
553
553
|
"builtBy": "third-party",
|
|
@@ -555,7 +555,7 @@
|
|
|
555
555
|
},
|
|
556
556
|
{
|
|
557
557
|
"path": "xll/python/Scripts/pip3.exe",
|
|
558
|
-
"sha256": "
|
|
558
|
+
"sha256": "373818f3109b5b0e3d7f249ebced133b042d0e2ffd2fb983967cb611c40e5d57",
|
|
559
559
|
"source": "pip console launcher installed into embedded Python",
|
|
560
560
|
"version": "see packaged pip distribution",
|
|
561
561
|
"builtBy": "third-party",
|
|
@@ -563,7 +563,7 @@
|
|
|
563
563
|
},
|
|
564
564
|
{
|
|
565
565
|
"path": "xll/python/Scripts/pywin32_postinstall.exe",
|
|
566
|
-
"sha256": "
|
|
566
|
+
"sha256": "e6f28aa72208afcf845960aed0d938f48d993c78f111dab4da6e3c0b5f4a3a18",
|
|
567
567
|
"source": "Python package console launcher installed into embedded Python",
|
|
568
568
|
"version": "see owning Python package metadata in site-packages",
|
|
569
569
|
"builtBy": "third-party",
|
|
@@ -571,7 +571,7 @@
|
|
|
571
571
|
},
|
|
572
572
|
{
|
|
573
573
|
"path": "xll/python/Scripts/pywin32_testall.exe",
|
|
574
|
-
"sha256": "
|
|
574
|
+
"sha256": "3014d8654460053f2061f84ba4cfa908682a28e81780c53763ecc01a934fa4a8",
|
|
575
575
|
"source": "Python package console launcher installed into embedded Python",
|
|
576
576
|
"version": "see owning Python package metadata in site-packages",
|
|
577
577
|
"builtBy": "third-party",
|
|
@@ -779,11 +779,11 @@
|
|
|
779
779
|
},
|
|
780
780
|
{
|
|
781
781
|
"path": "xll/python/sqlite3.dll",
|
|
782
|
-
"sha256": "
|
|
783
|
-
"source": "SQLite
|
|
784
|
-
"version": "
|
|
782
|
+
"sha256": "73b045c910fc19a069bae2e2c7ebb5ea66fe6c85f166535a6e07e09155cd9e6d",
|
|
783
|
+
"source": "SQLite official precompiled Windows x64 DLL",
|
|
784
|
+
"version": "3.53.2",
|
|
785
785
|
"builtBy": "third-party",
|
|
786
|
-
"verification": "Downloaded from
|
|
786
|
+
"verification": "Downloaded from sqlite.org sqlite-dll-win-x64-3530200.zip; upstream SHA3-256 is b898ced2e0627999d7d0b9d554ea53086a9b165e52ae743277d115dcd39e6868, and vendor-python.ps1 verifies extracted sqlite3.dll SHA256 73b045c910fc19a069bae2e2c7ebb5ea66fe6c85f166535a6e07e09155cd9e6d before copying."
|
|
787
787
|
},
|
|
788
788
|
{
|
|
789
789
|
"path": "xll/python/unicodedata.pyd",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.62]
|
|
4
|
+
|
|
5
|
+
- **Windows runtime security** - Updated the embedded Windows SQLite DLL used by ShortcutXL's bundled Python runtime.
|
|
6
|
+
- **Default model update** - Updated the default model to Fable.
|
|
7
|
+
|
|
3
8
|
## [0.3.61]
|
|
4
9
|
|
|
5
10
|
- **ShortcutXL plugin guidance** - Refreshed the bundled Claude and Codex ShortcutXL plugin guidance.
|
package/binary-provenance.json
CHANGED
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"builtBy": "third-party",
|
|
51
51
|
"verification": "Downloaded from python.org CPython release artifacts; verify upstream SHA/signature before vendoring."
|
|
52
52
|
},
|
|
53
|
-
{
|
|
54
|
-
"pattern": "xll/python/sqlite3.dll",
|
|
55
|
-
"source": "SQLite
|
|
56
|
-
"version": "
|
|
57
|
-
"builtBy": "third-party",
|
|
58
|
-
"verification": "Downloaded from
|
|
59
|
-
},
|
|
53
|
+
{
|
|
54
|
+
"pattern": "xll/python/sqlite3.dll",
|
|
55
|
+
"source": "SQLite official precompiled Windows x64 DLL",
|
|
56
|
+
"version": "3.53.2",
|
|
57
|
+
"builtBy": "third-party",
|
|
58
|
+
"verification": "Downloaded from sqlite.org sqlite-dll-win-x64-3530200.zip; upstream SHA3-256 is b898ced2e0627999d7d0b9d554ea53086a9b165e52ae743277d115dcd39e6868, and vendor-python.ps1 verifies extracted sqlite3.dll SHA256 73b045c910fc19a069bae2e2c7ebb5ea66fe6c85f166535a6e07e09155cd9e6d before copying."
|
|
59
|
+
},
|
|
60
60
|
{
|
|
61
61
|
"pattern": "xll/python/vcruntime*.dll",
|
|
62
62
|
"source": "Microsoft Visual C++ runtime library bundled with CPython Windows embeddable runtime",
|
|
@@ -35,6 +35,14 @@ function createAgentSessionCore(session, pendingHostToolRequests) {
|
|
|
35
35
|
session.replaceToolsByName(configuration.toolNames);
|
|
36
36
|
session.agent.setSystemPrompt(configuration.systemPrompt);
|
|
37
37
|
},
|
|
38
|
+
async controlTask(request) {
|
|
39
|
+
return {
|
|
40
|
+
ok: false,
|
|
41
|
+
action: request.action,
|
|
42
|
+
taskId: request.taskId,
|
|
43
|
+
reason: 'Task control is only available in the embedded ShortcutXL runtime.'
|
|
44
|
+
};
|
|
45
|
+
},
|
|
38
46
|
dispose() {
|
|
39
47
|
session.dispose();
|
|
40
48
|
},
|
|
@@ -346,7 +346,7 @@ export declare class AgentSession {
|
|
|
346
346
|
private _setAutonomousState;
|
|
347
347
|
/** Reload autonomous-run state from the persisted session header on resume. */
|
|
348
348
|
private _restoreAutonomousStateFromSession;
|
|
349
|
-
/**
|
|
349
|
+
/** Handle the product-owned /autonomous command before sending text to the model. */
|
|
350
350
|
private _prepareAutonomousPrompt;
|
|
351
351
|
/**
|
|
352
352
|
* Queue a steering message to interrupt the agent mid-run.
|
|
@@ -362,7 +362,7 @@ export declare class AgentSession {
|
|
|
362
362
|
* @param images Optional image attachments to include with the message
|
|
363
363
|
*/
|
|
364
364
|
followUp(text: string, images?: ImageContent[]): Promise<void>;
|
|
365
|
-
/** Resolve raw prompt text + images into the final agent-input shape
|
|
365
|
+
/** Resolve raw prompt text + images into the final agent-input shape. */
|
|
366
366
|
private _preparePromptInput;
|
|
367
367
|
/** Enqueue a steering message to be delivered before the next assistant response. */
|
|
368
368
|
private _queueSteer;
|
|
@@ -22,7 +22,6 @@ import { isShortcutFastModeModel } from '../model-ids.js';
|
|
|
22
22
|
import { formatFileUploadsContext, mergeFileUploads } from './file-uploads.js';
|
|
23
23
|
import { createShortcutLlmProxyClient } from './providers/shortcut-llm-proxy-client.js';
|
|
24
24
|
import { expandPromptTemplate } from './resources/prompt-template-expansion.js';
|
|
25
|
-
import { parseSkillBlock } from './resources/skill-block.js';
|
|
26
25
|
import { AUTONOMOUS_STATE_CUSTOM_TYPE, buildAutonomousRefreshPrompt, extractProgressFolder, inferAutonomousStateFromEntries } from './session/autonomous-workflow.js';
|
|
27
26
|
import { BranchManager } from './session/branch-manager.js';
|
|
28
27
|
import { parseBudgetCommand } from './session/budget-command.js';
|
|
@@ -756,7 +755,7 @@ export class AgentSession {
|
|
|
756
755
|
enabled: true,
|
|
757
756
|
originalUserTask: trimmed
|
|
758
757
|
});
|
|
759
|
-
await this.prompt(
|
|
758
|
+
await this.prompt(trimmed);
|
|
760
759
|
}
|
|
761
760
|
/** Stage a pending session refresh (mode/model swap) to be applied on the next prompt. */
|
|
762
761
|
async preparePendingRefresh(refresh) {
|
|
@@ -977,7 +976,7 @@ export class AgentSession {
|
|
|
977
976
|
_restoreAutonomousStateFromSession() {
|
|
978
977
|
this._autonomousState = inferAutonomousStateFromEntries(this.sessionManager.getEntries());
|
|
979
978
|
}
|
|
980
|
-
/**
|
|
979
|
+
/** Handle the product-owned /autonomous command before sending text to the model. */
|
|
981
980
|
_prepareAutonomousPrompt(text) {
|
|
982
981
|
if (!text.startsWith('/autonomous'))
|
|
983
982
|
return text;
|
|
@@ -989,7 +988,7 @@ export class AgentSession {
|
|
|
989
988
|
enabled: true,
|
|
990
989
|
originalUserTask: task
|
|
991
990
|
});
|
|
992
|
-
return
|
|
991
|
+
return task;
|
|
993
992
|
}
|
|
994
993
|
/**
|
|
995
994
|
* Queue a steering message to interrupt the agent mid-run.
|
|
@@ -1025,7 +1024,7 @@ export class AgentSession {
|
|
|
1025
1024
|
}
|
|
1026
1025
|
await this._queueFollowUp(prepared.text, prepared.images);
|
|
1027
1026
|
}
|
|
1028
|
-
/** Resolve raw prompt text + images into the final agent-input shape
|
|
1027
|
+
/** Resolve raw prompt text + images into the final agent-input shape. */
|
|
1029
1028
|
async _preparePromptInput(text, images, options) {
|
|
1030
1029
|
let currentText = this._prepareAutonomousPrompt(text);
|
|
1031
1030
|
let currentImages = images;
|
|
@@ -1050,13 +1049,6 @@ export class AgentSession {
|
|
|
1050
1049
|
currentText = this._expandSkillCommand(currentText);
|
|
1051
1050
|
currentText = expandPromptTemplate(currentText, [...this.promptTemplates]);
|
|
1052
1051
|
}
|
|
1053
|
-
const parsedSkill = parseSkillBlock(currentText);
|
|
1054
|
-
if (parsedSkill?.name === 'autonomous' && parsedSkill.userMessage) {
|
|
1055
|
-
this._setAutonomousState({
|
|
1056
|
-
enabled: true,
|
|
1057
|
-
originalUserTask: parsedSkill.userMessage
|
|
1058
|
-
});
|
|
1059
|
-
}
|
|
1060
1052
|
if (options.commandMode === 'reject' && currentText.startsWith('/')) {
|
|
1061
1053
|
assertNotExtensionCommand(currentText, extensionRunner);
|
|
1062
1054
|
}
|
|
@@ -19,9 +19,9 @@ const PLATFORM_PACKAGES = {
|
|
|
19
19
|
let _cachedAddon;
|
|
20
20
|
/**
|
|
21
21
|
* Load the platform-native compute addon.
|
|
22
|
-
* Same resolution as @mog-sdk/
|
|
22
|
+
* Same resolution as @mog-sdk/sdk's internal tryLoadNapiAddon.
|
|
23
23
|
*
|
|
24
|
-
* Uses createRequire anchored to @mog-sdk/
|
|
24
|
+
* Uses createRequire anchored to @mog-sdk/sdk's package location so
|
|
25
25
|
* pnpm's symlinked node_modules resolves the platform package correctly.
|
|
26
26
|
*/
|
|
27
27
|
function loadNativeAddon() {
|
|
@@ -30,7 +30,7 @@ function loadNativeAddon() {
|
|
|
30
30
|
// Resolve the SDK's main entry, then create require from its directory.
|
|
31
31
|
// This ensures pnpm's symlinked deps (@mog-sdk/darwin-arm64 etc.) are findable.
|
|
32
32
|
const req = createRequire(import.meta.url);
|
|
33
|
-
const sdkEntry = req.resolve('@mog-sdk/
|
|
33
|
+
const sdkEntry = req.resolve('@mog-sdk/sdk');
|
|
34
34
|
const sdkReq = createRequire(sdkEntry);
|
|
35
35
|
const pkg = PLATFORM_PACKAGES[process.platform]?.[process.arch];
|
|
36
36
|
if (!pkg)
|
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
*
|
|
7
7
|
*/
|
|
8
8
|
import { fetchCreditBalance } from '../../credits/shortcut-credits.js';
|
|
9
|
+
function hasUsableCredits(balance) {
|
|
10
|
+
return balance.canSendMessage ?? (balance.isUnlimited || balance.creditsRemaining > 0);
|
|
11
|
+
}
|
|
9
12
|
export class CreditGate {
|
|
10
13
|
cachedResult = null;
|
|
11
14
|
cachedAt = 0;
|
|
@@ -28,7 +31,7 @@ export class CreditGate {
|
|
|
28
31
|
return { hasCredits: true, creditsRemaining: 0, isUnlimited: false, hasTeamBilling: false };
|
|
29
32
|
}
|
|
30
33
|
const result = {
|
|
31
|
-
hasCredits: balance
|
|
34
|
+
hasCredits: hasUsableCredits(balance),
|
|
32
35
|
creditsRemaining: balance.creditsRemaining,
|
|
33
36
|
isUnlimited: balance.isUnlimited,
|
|
34
37
|
hasTeamBilling: balance.hasTeamBilling
|
|
@@ -47,7 +50,7 @@ export class CreditGate {
|
|
|
47
50
|
/** Populate the cache from an already-fetched balance (e.g. from polling). */
|
|
48
51
|
populate(balance) {
|
|
49
52
|
this.cachedResult = {
|
|
50
|
-
hasCredits: balance
|
|
53
|
+
hasCredits: hasUsableCredits(balance),
|
|
51
54
|
creditsRemaining: balance.creditsRemaining,
|
|
52
55
|
isUnlimited: balance.isUnlimited,
|
|
53
56
|
hasTeamBilling: balance.hasTeamBilling
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
* Can switch to plan or installation mode.
|
|
6
6
|
*/
|
|
7
7
|
import type { AgentDefinition } from '../../agent-definition.js';
|
|
8
|
+
export declare const ACTION_AGENT_TOOL_NAMES: ("write" | "bash" | "execute_code" | "task" | "send_message" | "switch_from_action_mode" | "refresh_context" | "mcp" | "get_tool_info" | "execute_tool")[];
|
|
8
9
|
/** Construct the action-mode agent definition with the full execution toolset. */
|
|
9
10
|
export declare function actionAgent(): AgentDefinition;
|
|
10
11
|
//# sourceMappingURL=agent.d.ts.map
|
|
@@ -8,7 +8,7 @@ import { MODE } from '../../../mode-names.js';
|
|
|
8
8
|
import { ACTION_SWITCH_MODE, BASH, EXECUTE_CODE, EXECUTE_TOOL, GET_TOOL_INFO, MCP_TOOL_NAMES, REFRESH_CONTEXT, SEND_MESSAGE, TASK, WRITE } from '../../../tool-names.js';
|
|
9
9
|
import { buildActionPrompt } from './prompt.js';
|
|
10
10
|
const DESCRIPTION = 'Execute changes to the spreadsheet.';
|
|
11
|
-
const
|
|
11
|
+
export const ACTION_AGENT_TOOL_NAMES = [
|
|
12
12
|
BASH,
|
|
13
13
|
WRITE,
|
|
14
14
|
EXECUTE_CODE,
|
|
@@ -26,7 +26,7 @@ export function actionAgent() {
|
|
|
26
26
|
name: MODE.ACTION,
|
|
27
27
|
description: DESCRIPTION,
|
|
28
28
|
systemPrompt: buildActionPrompt(),
|
|
29
|
-
tools:
|
|
29
|
+
tools: ACTION_AGENT_TOOL_NAMES,
|
|
30
30
|
switchTo: [MODE.PLAN, MODE.INSTALLATION]
|
|
31
31
|
};
|
|
32
32
|
}
|
|
@@ -24,8 +24,8 @@ Deliver professional-grade results with precise calculations, consistent formatt
|
|
|
24
24
|
Beyond spreadsheets, you can interact with external services (email, databases, APIs, etc.). Check your docs and capabilities before telling the user you can't do something
|
|
25
25
|
Current date: ${new Date().toISOString().slice(0, 10)}. Use this as single source of truth for time, overriding pretrained knowledge. Verify recency with tools for time-sensitive facts.
|
|
26
26
|
|
|
27
|
-
General flow: execute
|
|
28
|
-
Avoid over-interpretation and don't be extra. Only make changes that are directly requested or clearly necessary
|
|
27
|
+
General flow: execute → verify yourself and via independent subagents → iterate on feedback.
|
|
28
|
+
Avoid over-interpretation and don't be extra. Only make changes that are directly requested or clearly necessary. Respond in Markdown, be brief
|
|
29
29
|
Keep solutions simple and focused. For example, don't add extra sheets, reformat untouched areas, or make "improvements" beyond what was asked
|
|
30
30
|
Do not add improvements, cleanup, formatting changes, structural edits, or extra analysis beyond what the user asked for.
|
|
31
31
|
Match the scope of your actions to what was actually requested. Complete the requested task, but do not overstep.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Manage mode agent definition — sink orchestration mode.
|
|
3
3
|
*
|
|
4
|
-
* Delegates
|
|
4
|
+
* Delegates workbook work to subagents, with bash for coordination files and inspection.
|
|
5
5
|
* Explicit /manage can enter it, but it does not switch out again.
|
|
6
6
|
*/
|
|
7
7
|
import type { AgentDefinition } from '../../agent-definition.js';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Manage mode agent definition — sink orchestration mode.
|
|
3
3
|
*
|
|
4
|
-
* Delegates
|
|
4
|
+
* Delegates workbook work to subagents, with bash for coordination files and inspection.
|
|
5
5
|
* Explicit /manage can enter it, but it does not switch out again.
|
|
6
6
|
*/
|
|
7
7
|
import { MODE } from '../../../mode-names.js';
|
|
8
|
-
import { EXECUTE_TOOL, GET_TOOL_INFO, MCP_TOOL_NAMES, SEND_MESSAGE, TASK } from '../../../tool-names.js';
|
|
8
|
+
import { BASH, EXECUTE_TOOL, GET_TOOL_INFO, MCP_TOOL_NAMES, SEND_MESSAGE, TASK } from '../../../tool-names.js';
|
|
9
9
|
import { buildManagePrompt } from './prompt.js';
|
|
10
10
|
const DESCRIPTION = 'Orchestration mode — decomposes complex tasks, delegates to subagents in parallel, and synthesizes results.';
|
|
11
|
-
const TOOLS = [TASK, SEND_MESSAGE, GET_TOOL_INFO, EXECUTE_TOOL, ...MCP_TOOL_NAMES];
|
|
11
|
+
const TOOLS = [TASK, SEND_MESSAGE, GET_TOOL_INFO, EXECUTE_TOOL, BASH, ...MCP_TOOL_NAMES];
|
|
12
12
|
/** Construct the manage-mode agent definition that orchestrates work via subagents. */
|
|
13
13
|
export function manageAgent() {
|
|
14
14
|
return {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { buildCurrentSkillsSection } from '../../prompts/shared-guidelines.js';
|
|
8
8
|
const MANAGE_BASE = `\
|
|
9
|
-
You are Shortcut in Manage Mode —
|
|
9
|
+
You are Shortcut in Manage Mode — an orchestrator. You decompose tasks, delegate workbook/document work to subagents via the task tool, use bash for coordination files and lightweight inspection, and synthesize results.
|
|
10
10
|
|
|
11
11
|
Current date: ${new Date().toISOString().slice(0, 10)}. Use this as single source of truth for time.
|
|
12
12
|
|
|
@@ -15,8 +15,9 @@ Be concise and direct. No emojis. No filler phrases. Describe what you're delega
|
|
|
15
15
|
|
|
16
16
|
## YOU ARE IN MANAGE MODE
|
|
17
17
|
|
|
18
|
-
You
|
|
18
|
+
You do not directly edit the spreadsheet. Your tools are:
|
|
19
19
|
- **task**: Spawn subagent workers (clone, document_reader, general)
|
|
20
|
+
- **bash**: Maintain progress files, inspect artifacts, run lightweight filesystem checks, and prepare clear handoffs. Do not use bash as a substitute for delegated workbook implementation.
|
|
20
21
|
- **get_tool_info / execute_tool**: Inspect and invoke tools dynamically
|
|
21
22
|
- **MCP tools**: Access external services via MCP
|
|
22
23
|
|
|
@@ -24,10 +25,12 @@ Mode switching is not available from Manage Mode. Finish orchestration here.
|
|
|
24
25
|
|
|
25
26
|
## Progress Tracking
|
|
26
27
|
|
|
27
|
-
For
|
|
28
|
+
For substantial builds or edits, make delegated workers maintain progress in small markdown files. Progress files are for auditability and resumability, not just the worker's convenience.
|
|
28
29
|
- Use a unique folder under \`/workspace/work/\`, such as \`/workspace/work/<task-slug>/\`.
|
|
29
|
-
-
|
|
30
|
-
-
|
|
30
|
+
- Require \`status.md\` when work creates or edits 3+ sheets, touches multiple workbook areas, has 3+ phases, requires source extraction, uses parallel/subagents, has nontrivial formulas, or includes enough decisions that a reviewer would need a record.
|
|
31
|
+
- When in doubt, require a concise \`status.md\`. A short status file is preferred over losing the decision trail.
|
|
32
|
+
- Use \`status.md\` for current goal, phase, completed work, next step, blockers, verification status, and decisions/rationale. Add \`plan.md\` when the task has phases or acceptance criteria.
|
|
33
|
+
- Tell workers to create/update \`status.md\` before the first major implementation step and after each phase or important decision.
|
|
31
34
|
- Before context refreshes or autonomous resumes, workers must leave enough state for a fresh context to continue safely.
|
|
32
35
|
|
|
33
36
|
## Phased Workflow
|
|
@@ -54,7 +57,7 @@ Delegate implementation tasks to clone subagents. Each task MUST be self-contain
|
|
|
54
57
|
Parallelize independent tasks. Serialize dependent ones.
|
|
55
58
|
|
|
56
59
|
### 4. Verification Phase
|
|
57
|
-
Launch verification subagent(s) to check results against requirements.
|
|
60
|
+
Launch verification subagent(s) in the background to check results against requirements unless the next orchestration step must wait for the verdict.
|
|
58
61
|
- Read back all modified cells and verify values
|
|
59
62
|
- Check formula linkages and cross-sheet references
|
|
60
63
|
- Confirm formatting matches conventions
|
|
@@ -8,16 +8,7 @@ import { MODE } from '../../../mode-names.js';
|
|
|
8
8
|
import { BASH, EXECUTE_CODE, EXECUTE_TOOL, FIND, GET_TOOL_INFO, GREP, LLM_ANALYSIS, LS, MCP_TOOL_NAMES, PLAN_SWITCH_MODE, READ } from '../../../tool-names.js';
|
|
9
9
|
import { buildPlanPrompt } from './prompt.js';
|
|
10
10
|
const DESCRIPTION = `\
|
|
11
|
-
Read-only planning mode
|
|
12
|
-
Switch to plan mode for: user frustrations, ambiguous asks, subjective asks, and complex workbooks.
|
|
13
|
-
- Multi-sheet financial models, DCF valuations, comprehensive dashboards
|
|
14
|
-
- Major structural reorganizations affecting multiple sheets
|
|
15
|
-
- Truly ambiguous asks: "build a DCF", "create executive KPI dashboard"
|
|
16
|
-
- Vague requests: "this is broken", "help", "make this look better"
|
|
17
|
-
|
|
18
|
-
DON'T switch to plan mode when:
|
|
19
|
-
- Recent messages already established what needs to be done
|
|
20
|
-
- The user just confirmed or approved a course of action`;
|
|
11
|
+
Read-only planning mode for exploration, clarifying requirements and drafting an implementation plan.`;
|
|
21
12
|
const TOOLS = [
|
|
22
13
|
BASH,
|
|
23
14
|
EXECUTE_CODE,
|
|
@@ -37,7 +37,7 @@ ${engine.execTool}
|
|
|
37
37
|
1. Gauge user experience: If unclear from their query, ASK about their spreadsheet familiarity first - then adapt all explanations accordingly (beginners need more context, experts want concise trade-offs)
|
|
38
38
|
2. After exploration: State (1) task understanding (MAX 3-4 lines), (2) list ALL open questions upfront with a brief description of each (e.g., "I need to clarify 3 things: 1) how to handle missing data, 2) whether to use formulas or static values, 3) where to place output"), (3) first question
|
|
39
39
|
3. ONE question per response. Before each question, state which open items remain (e.g., "Still need to resolve: output location, formula vs static values."). If a user's answer resolves multiple items, acknowledge that and move on. Do NOT re-count or renumber — just reference the open items by topic.
|
|
40
|
-
4.
|
|
40
|
+
4. Write the final plan as markdown to a file under /tmp, then call switch_from_plan_mode(mode: "action", documentPath: "<that file path>").
|
|
41
41
|
5. If plan rejected: Restart question cycle to understand needed changes
|
|
42
42
|
|
|
43
43
|
**Critical Rules:**
|
|
@@ -65,8 +65,8 @@ Structure:
|
|
|
65
65
|
- **Recommendation: [Letter]** - Your reasoning, or explain why you're uncertain
|
|
66
66
|
- **[Bold question]?**
|
|
67
67
|
|
|
68
|
-
**Final Plan Format
|
|
69
|
-
|
|
68
|
+
**Final Plan Format:**
|
|
69
|
+
Write the full plan as markdown to a file under /tmp. Then call switch_from_plan_mode(mode: "action", documentPath: "<that file path>").
|
|
70
70
|
|
|
71
71
|
\`\`\`
|
|
72
72
|
Task: [One sentence]
|
|
@@ -83,7 +83,7 @@ Things to Watch Out For:
|
|
|
83
83
|
- [Key considerations and edge cases]
|
|
84
84
|
\`\`\`
|
|
85
85
|
|
|
86
|
-
MUST call switch_from_plan_mode(mode: "action",
|
|
86
|
+
MUST call switch_from_plan_mode(mode: "action", documentPath: "<that file path>") - do NOT output plan directly.
|
|
87
87
|
`;
|
|
88
88
|
// ---------------------------------------------------------------------------
|
|
89
89
|
// Assembly
|
|
@@ -14,6 +14,7 @@ export interface ModeSettings {
|
|
|
14
14
|
export interface SwitchModeOptions {
|
|
15
15
|
settings?: ModeSettings;
|
|
16
16
|
reason?: string;
|
|
17
|
+
documentPath?: string;
|
|
17
18
|
ctx?: Pick<ExtensionContext, 'hasUI' | 'ui'>;
|
|
18
19
|
confirm?: (request: ModeSwitchConfirmationRequest) => Promise<boolean>;
|
|
19
20
|
/** Bypass switchTo constraints (used by slash commands — user explicitly chose the mode). */
|
|
@@ -23,6 +24,7 @@ export interface ModeSwitchConfirmationRequest {
|
|
|
23
24
|
currentMode: string;
|
|
24
25
|
targetMode: string;
|
|
25
26
|
reason?: string;
|
|
27
|
+
documentPath?: string;
|
|
26
28
|
ctx?: Pick<ExtensionContext, 'hasUI' | 'ui'>;
|
|
27
29
|
}
|
|
28
30
|
export declare function requiresModeSwitchConfirmation(currentMode: string, targetMode: string): boolean;
|
|
@@ -14,12 +14,16 @@ export function requiresModeSwitchConfirmation(currentMode, targetMode) {
|
|
|
14
14
|
function formatModeName(mode) {
|
|
15
15
|
return mode.length > 0 ? mode.charAt(0).toUpperCase() + mode.slice(1) : mode;
|
|
16
16
|
}
|
|
17
|
-
async function confirmModeSwitch(currentMode, targetMode, reason, ctx) {
|
|
17
|
+
async function confirmModeSwitch(currentMode, targetMode, reason, documentPath, ctx) {
|
|
18
18
|
if (!ctx?.hasUI)
|
|
19
19
|
return true;
|
|
20
20
|
const title = chalk.green(`Switch from ${formatModeName(currentMode)} to ${formatModeName(targetMode)}`);
|
|
21
21
|
const trimmedReason = reason?.trim();
|
|
22
|
-
const
|
|
22
|
+
const trimmedDocumentPath = documentPath?.trim();
|
|
23
|
+
const documentPathText = trimmedDocumentPath
|
|
24
|
+
? `\n\nThis document as written is saved at:\n${trimmedDocumentPath}`
|
|
25
|
+
: '';
|
|
26
|
+
const message = trimmedReason ? `${title}\n\n${trimmedReason}${documentPathText}` : title;
|
|
23
27
|
return (await ctx.ui.select(message, ['Confirm', 'Cancel'])) === 'Confirm';
|
|
24
28
|
}
|
|
25
29
|
function applyModeSwitch(session, target, settings) {
|
|
@@ -46,7 +50,7 @@ function applyModeSwitch(session, target, settings) {
|
|
|
46
50
|
})));
|
|
47
51
|
}
|
|
48
52
|
export async function switchMode(session, modeName, opts = {}) {
|
|
49
|
-
const { settings, reason, ctx, confirm, force } = opts;
|
|
53
|
+
const { settings, reason, documentPath, ctx, confirm, force } = opts;
|
|
50
54
|
const currentMode = getCurrentMode();
|
|
51
55
|
if (modeName === currentMode) {
|
|
52
56
|
return { ok: false, message: `Already in ${currentMode} mode.` };
|
|
@@ -79,14 +83,18 @@ export async function switchMode(session, modeName, opts = {}) {
|
|
|
79
83
|
}
|
|
80
84
|
if (requiresModeSwitchConfirmation(currentMode, target.name)) {
|
|
81
85
|
const confirmed = confirm
|
|
82
|
-
? await confirm({ currentMode, targetMode: target.name, reason, ctx })
|
|
83
|
-
: await confirmModeSwitch(currentMode, target.name, reason, ctx);
|
|
86
|
+
? await confirm({ currentMode, targetMode: target.name, reason, documentPath, ctx })
|
|
87
|
+
: await confirmModeSwitch(currentMode, target.name, reason, documentPath, ctx);
|
|
84
88
|
if (!confirmed) {
|
|
85
89
|
return { ok: false, message: 'User cancelled the mode switch.' };
|
|
86
90
|
}
|
|
87
91
|
}
|
|
88
92
|
applyModeSwitch(session, target, settings);
|
|
89
93
|
const reasonText = reason ? `\nReason: ${reason}` : '';
|
|
90
|
-
|
|
94
|
+
const trimmedDocumentPath = documentPath?.trim();
|
|
95
|
+
const documentPathText = trimmedDocumentPath
|
|
96
|
+
? `\nThis document as written is saved at:\n${trimmedDocumentPath}`
|
|
97
|
+
: '';
|
|
98
|
+
return { ok: true, message: `Switched to ${target.name} mode.${reasonText}${documentPathText}` };
|
|
91
99
|
}
|
|
92
100
|
//# sourceMappingURL=switch-mode.js.map
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* TODO: Indirect change tracking — detect formula dependents that recalculate
|
|
5
5
|
* when a direct cell is mutated. Currently all changes are marked as direct.
|
|
6
6
|
*/
|
|
7
|
-
/** Excel error strings returned by @mog-sdk/
|
|
7
|
+
/** Excel error strings returned by @mog-sdk/sdk. */
|
|
8
8
|
export declare const EXCEL_ERRORS: Set<string>;
|
|
9
9
|
/** Returns true if a value is an Excel error string. */
|
|
10
10
|
export declare function isExcelError(val: unknown): val is string;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* TODO: Indirect change tracking — detect formula dependents that recalculate
|
|
5
5
|
* when a direct cell is mutated. Currently all changes are marked as direct.
|
|
6
6
|
*/
|
|
7
|
-
/** Excel error strings returned by @mog-sdk/
|
|
7
|
+
/** Excel error strings returned by @mog-sdk/sdk. */
|
|
8
8
|
export const EXCEL_ERRORS = new Set([
|
|
9
9
|
'#DIV/0!',
|
|
10
10
|
'#NAME?',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* SDK type seam — the ONLY file in new-sheet/ that imports @mog-sdk/
|
|
2
|
+
* SDK type seam — the ONLY file in new-sheet/ that imports @mog-sdk/sdk.
|
|
3
3
|
*
|
|
4
4
|
* All other new-sheet files import from here. To sever the SDK dependency
|
|
5
5
|
* (e.g. for a build that excludes new-sheet), this is the single cut point.
|
|
@@ -9,7 +9,7 @@ export interface Worksheet {
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* Workbook type with runtime-only properties that exist on WorkbookImpl
|
|
12
|
-
* but aren't part of the public @mog-sdk/
|
|
12
|
+
* but aren't part of the public @mog-sdk/sdk .d.ts yet.
|
|
13
13
|
*
|
|
14
14
|
* - activeSheet: sync property returning the active Worksheet
|
|
15
15
|
* - sheetNames: sync property returning sheet name list
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* SDK type seam — the ONLY file in new-sheet/ that imports @mog-sdk/
|
|
2
|
+
* SDK type seam — the ONLY file in new-sheet/ that imports @mog-sdk/sdk.
|
|
3
3
|
*
|
|
4
4
|
* All other new-sheet files import from here. To sever the SDK dependency
|
|
5
5
|
* (e.g. for a build that excludes new-sheet), this is the single cut point.
|
|
6
6
|
*/
|
|
7
7
|
import { createRequire } from 'node:module';
|
|
8
8
|
let sdkModulePromise = null;
|
|
9
|
-
const MOG_SDK_NODE_SPECIFIER = '@mog-sdk/
|
|
9
|
+
const MOG_SDK_NODE_SPECIFIER = '@mog-sdk/sdk';
|
|
10
10
|
const requireFromHere = createRequire(import.meta.url);
|
|
11
11
|
export function isMogSdkAvailable() {
|
|
12
12
|
try {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Sheet Engine Pool — manages multiple headless workbooks via @mog-sdk/
|
|
2
|
+
* Sheet Engine Pool — manages multiple headless workbooks via @mog-sdk/sdk.
|
|
3
3
|
*
|
|
4
4
|
* Each workbook is created through the SDK's createWorkbook() function.
|
|
5
5
|
* Uses the full kernel so formulas, undo, and CRDT sync all work correctly.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Sheet Engine Pool — manages multiple headless workbooks via @mog-sdk/
|
|
2
|
+
* Sheet Engine Pool — manages multiple headless workbooks via @mog-sdk/sdk.
|
|
3
3
|
*
|
|
4
4
|
* Each workbook is created through the SDK's createWorkbook() function.
|
|
5
5
|
* Uses the full kernel so formulas, undo, and CRDT sync all work correctly.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Model resolution, scoping, and initial selection
|
|
3
3
|
*/
|
|
4
|
-
import { type Api, type
|
|
4
|
+
import { type Api, type Model } from '../../ai/types.js';
|
|
5
5
|
import type { AgentModelRegistry } from '../../contracts/agent-model.js';
|
|
6
6
|
import type { ThinkingLevel } from '../../core/core-types.js';
|
|
7
7
|
export declare function formatModelRef(model: Pick<Model<any>, 'provider' | 'id'>): string;
|
|
@@ -16,8 +16,8 @@ export interface ExactModelRefResult {
|
|
|
16
16
|
* must be unambiguous. Model ids may themselves contain slashes.
|
|
17
17
|
*/
|
|
18
18
|
export declare function resolveExactModelRef(availableModels: readonly Model<any>[], requested: string): ExactModelRefResult;
|
|
19
|
-
/** Default model IDs for each
|
|
20
|
-
export declare const defaultModelPerProvider: Record<
|
|
19
|
+
/** Default model IDs for each provider with a preferred initial model. */
|
|
20
|
+
export declare const defaultModelPerProvider: Record<string, string>;
|
|
21
21
|
export interface ParsedModelResult {
|
|
22
22
|
model: Model<Api> | undefined;
|
|
23
23
|
/** Thinking level if explicitly specified in pattern, undefined otherwise */
|