shortcutxl 0.3.37 → 0.3.38
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 +6 -0
- package/dist/app/index.d.ts +2 -1
- package/dist/app/prompts/mog-api-reference.json +870 -244
- package/dist/app/prompts/spreadjs-api-reference.json +552 -552
- package/dist/app/resources/index.d.ts +1 -1
- package/dist/app/resources/skills.d.ts +5 -0
- package/dist/app/sync/skills-download.d.ts +20 -12
- package/dist/cli.js +830 -827
- package/dist/shared/skills/invocation.d.ts +19 -0
- package/dist/shell/interactive/interactive-mode.d.ts +4 -2
- package/dist/shell/interactive/skills-workflow.d.ts +3 -1
- package/dist/startup/interactive-commands.d.ts +2 -2
- package/dist/tui/autocomplete.js +33 -1
- package/dist/tui/components/editor.js +30 -5
- package/dist/tui/skill-autocomplete.js +30 -0
- package/package.json +1 -1
- 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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.38]
|
|
4
|
+
|
|
5
|
+
- **Inline `/skill:name` invocations** — Trigger a skill from anywhere in your message, not just the start.
|
|
6
|
+
- **Interactive approval for skill downloads** — `/download-skills` now shows per-skill diffs (modified, local-only, and remote-only files) and asks before replacing a local skill folder with the cloud copy.
|
|
7
|
+
- **Larger context windows** — Claude Opus 4.6 bumped to 400K tokens; GPT-5.4 bumped to 272K tokens.
|
|
8
|
+
|
|
3
9
|
## [0.3.37]
|
|
4
10
|
|
|
5
11
|
- **Bug fixes** — Improved stability for autonomous workflows and update checks.
|
package/dist/app/index.d.ts
CHANGED
|
@@ -38,7 +38,8 @@ export type { SessionEntry, SessionHeader, SessionInfoEntry, SessionMessageEntry
|
|
|
38
38
|
export type { BranchSessionStore, ModelSessionStore, PersistenceSessionStore, ProductSessionStore, SessionInfoStore } from './session/session-store-types.js';
|
|
39
39
|
export { SettingsManager, type CompactionSettings, type ImageSettings, type PackageSource, type RetrySettings } from './settings-manager.js';
|
|
40
40
|
export type { StartupInfoEntry } from './startup-info.js';
|
|
41
|
-
export {
|
|
41
|
+
export { downloadSkillsWithApproval, syncSkillsConservatively } from './sync/skills-download.js';
|
|
42
|
+
export type { SkillDownloadApprovalHandler, SkillDownloadApprovalRequest, SkillsDownloadResult } from './sync/skills-download.js';
|
|
42
43
|
export { uploadSkills } from './sync/skills-upload.js';
|
|
43
44
|
export type { SkillUploadApprovalRequest, SkillsUploadResult } from './sync/skills-upload.js';
|
|
44
45
|
export type { DiffPayload } from './tools/execute-code/diff.js';
|