@toddzheng024/dscode-bundle 0.7.10 → 0.7.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/README.md +1 -1
  2. package/THIRD_PARTY_NOTICES.md +11 -11
  3. package/cordis.patch.yml +97 -0
  4. package/package.json +237 -236
  5. package/plugins/code-review/index.mjs +50 -13
  6. package/plugins/i18n/messages.mjs +30 -6
  7. package/plugins/session-metrics/view.mjs +6 -3
  8. package/plugins/tui-tools/index.mjs +23 -1
  9. package/plugins/tui-tools/update.mjs +109 -0
  10. package/vendor/tui/index.mjs +5098 -949
  11. package/vendor/tui/session-query.mjs +150 -0
  12. package/vendor/tui/startup.mjs +4 -4
  13. package/vendor/tui/{theme-DCT8Y2xf.mjs → theme-7u5Qo3dF.mjs} +657 -20
  14. package/vendor/tui/types/app.d.ts +106 -62
  15. package/vendor/tui/types/authorization-panel.d.ts +3 -3
  16. package/vendor/tui/types/git-workflow.d.ts +91 -2
  17. package/vendor/tui/types/i18n.d.ts +39 -0
  18. package/vendor/tui/types/index.d.ts +100 -1
  19. package/vendor/tui/types/input-split.d.ts +1 -1
  20. package/vendor/tui/types/kernel-panels.d.ts +107 -29
  21. package/vendor/tui/types/language-panel.d.ts +12 -0
  22. package/vendor/tui/types/locales/en.d.ts +450 -0
  23. package/vendor/tui/types/locales/zh.d.ts +9 -0
  24. package/vendor/tui/types/mentions.d.ts +7 -3
  25. package/vendor/tui/types/models.d.ts +14 -0
  26. package/vendor/tui/types/panel-accent.d.ts +28 -0
  27. package/vendor/tui/types/rainbow.d.ts +69 -0
  28. package/vendor/tui/types/render/animations.d.ts +42 -0
  29. package/vendor/tui/types/render/editor.d.ts +4 -3
  30. package/vendor/tui/types/render/ime-cursor.d.ts +60 -0
  31. package/vendor/tui/types/render/inspector.d.ts +26 -0
  32. package/vendor/tui/types/render/lines.d.ts +21 -1
  33. package/vendor/tui/types/render/markdown.d.ts +1 -1
  34. package/vendor/tui/types/render/projection.d.ts +130 -4
  35. package/vendor/tui/types/render/status.d.ts +9 -9
  36. package/vendor/tui/types/render/text.d.ts +6 -0
  37. package/vendor/tui/types/render/usage.d.ts +113 -0
  38. package/vendor/tui/types/session-directory.d.ts +17 -0
  39. package/vendor/tui/types/session-query.d.ts +92 -0
  40. package/vendor/tui/types/startup.d.ts +1 -1
  41. package/vendor/tui/types/terminal-title.d.ts +66 -0
  42. package/vendor/tui/types/theme-panel.d.ts +2 -2
  43. package/vendor/tui/types/theme.d.ts +271 -52
  44. package/vendor/tui/types/update-panel.d.ts +49 -0
  45. package/vendor/tui/types/update.d.ts +75 -0
  46. package/vendor/tui/types/version.d.ts +4 -3
package/README.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  Install through the DSCODE Hub preset, or use `npm install -g @toddzheng024/dscode` then `dscode`.
4
4
 
5
- Requires DSH 0.1.5-rc.1, macOS 14+, Node 22.19+ or 24+, and Chrome. Includes modified upstream modules; see THIRD_PARTY_NOTICES.md. No install-time patches or scripts.
5
+ Requires DSH 0.1.5-rc.2, macOS 14+, Node 22.19+ or 24+, and Chrome. Includes modified upstream modules; see THIRD_PARTY_NOTICES.md. No install-time patches or scripts.
@@ -1,32 +1,32 @@
1
- @deepseek-ai/dsh-tool-subagent@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/tool-subagent"}
1
+ @deepseek-ai/dsh-tool-subagent@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/tool-subagent"}
2
2
  Local changes: DSCODE effort, shell control, TUI commands and footer.
3
3
 
4
- @deepseek-ai/dsh-subagent@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/subagent"}
4
+ @deepseek-ai/dsh-subagent@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/subagent"}
5
5
  Local changes: DSCODE effort, shell control, TUI commands and footer.
6
6
 
7
- @deepseek-ai/dsh-subagent-in-process-driver@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/subagent-in-process-driver"}
7
+ @deepseek-ai/dsh-subagent-in-process-driver@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/subagent-in-process-driver"}
8
8
  Local changes: DSCODE effort, shell control, TUI commands and footer.
9
9
 
10
- @deepseek-ai/dsh-subagent-spawn-in-process@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/subagent-spawn-in-process"}
10
+ @deepseek-ai/dsh-subagent-spawn-in-process@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/subagent-spawn-in-process"}
11
11
  Local changes: DSCODE effort, shell control, TUI commands and footer.
12
12
 
13
- @deepseek-ai/dsh-subagent-fork-in-process@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/subagent-fork-in-process"}
13
+ @deepseek-ai/dsh-subagent-fork-in-process@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/subagent/subagent-fork-in-process"}
14
14
  Local changes: DSCODE effort, shell control, TUI commands and footer.
15
15
 
16
- dsh-code@1.0.6: MIT; {"type":"git","url":"git+https://github.com/unlinearity/dsh-code.git"}
16
+ dsh-code@1.2.0: MIT; {"type":"git","url":"git+https://github.com/unlinearity/dsh-code.git"}
17
17
  Local changes: DSCODE effort, shell control, TUI commands and footer.
18
18
 
19
- @deepseek-ai/dsh-llm-deepseek@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/llm/llm-deepseek"}
19
+ @deepseek-ai/dsh-llm-deepseek@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/llm/llm-deepseek"}
20
20
  Local changes: DSCODE effort, shell control, TUI commands and footer.
21
21
 
22
- @deepseek-ai/dsh-tool-bash@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/shell/tool-bash"}
22
+ @deepseek-ai/dsh-tool-bash@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/shell/tool-bash"}
23
23
  Local changes: DSCODE effort, shell control, TUI commands and footer.
24
24
 
25
- @deepseek-ai/dsh-tool-bash-persistent@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/shell/tool-bash-persistent"}
25
+ @deepseek-ai/dsh-tool-bash-persistent@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/shell/tool-bash-persistent"}
26
26
  Local changes: DSCODE effort, shell control, TUI commands and footer.
27
27
 
28
- @deepseek-ai/dsh-terminal-bash@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/terminal/terminal-bash"}
28
+ @deepseek-ai/dsh-terminal-bash@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/terminal/terminal-bash"}
29
29
  Local changes: DSCODE effort, shell control, TUI commands and footer.
30
30
 
31
- @deepseek-ai/dsh-compaction-basic@0.1.5-rc.1: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/compaction/compaction-basic"}
31
+ @deepseek-ai/dsh-compaction-basic@0.1.5-rc.2: MIT; {"type":"git","url":"git+https://github.com/deepseek-ai/deepseek-harness.git","directory":"packages/compaction/compaction-basic"}
32
32
  Local changes: DSCODE effort, shell control, TUI commands and footer.
package/cordis.patch.yml CHANGED
@@ -529,6 +529,17 @@
529
529
  config:
530
530
  mode: !!js process.env.DSH_TOOLS_MODE
531
531
 
532
+ # The base row keeps full-text search off entirely (openAt: never) so nothing
533
+ # imports node:sqlite at boot; the terminal replaces it with the bundle's
534
+ # skip-tolerant subclass below. An override row cannot retarget a row's
535
+ # MODULE (name is only honored on inserts), so the base row is disabled and
536
+ # an equivalent row mounts the subclass: the derived index opens lazily on
537
+ # the first search (no startup cost, no Node 22 experimental warning), and
538
+ # one unreadable source (a pre-release artifact the frozen codecs reject)
539
+ # is skipped with a warning instead of failing every cross-session search.
540
+ - id: session-query-sqlite
541
+ disabled: true
542
+
532
543
  # Agent-plane rows are mounted by the selected preset. Keep this list aligned
533
544
  # with the upstream Web bundle so two sessions can use different compositions
534
545
  # without leaking model-facing registrations through the host layer.
@@ -637,6 +648,92 @@
637
648
  - id: authorization
638
649
  name: '@deepseek-ai/dsh-authorization'
639
650
 
651
+ # The bundle's skip-tolerant session-query engine replacing the disabled
652
+ # base row above: same SQLite FTS5 service, observation loop patched to
653
+ # skip unreadable sources instead of failing every search.
654
+ - id: session-query-skip
655
+ name: 'dsh-code/session-query'
656
+ config:
657
+ path: ':memory:'
658
+ openAt: first-search
659
+
660
+ # Model-facing session-log search/trace/read tools over the sessionQuery
661
+ # service (read-only, workspace-scoped by exact cwd). A host-plane mount
662
+ # is deployment-global: every preset session sees the five tools. Kept
663
+ # ENABLED deliberately — read-only search leaks no capability — but note
664
+ # it does reach minimal-preset sessions too. The host CLI does not bundle
665
+ # this package, so it ships as a real dependency and resolves from the
666
+ # profile's own node_modules.
667
+ - id: tool-session-query
668
+ name: '@deepseek-ai/dsh-tool-session-query'
669
+
670
+ # Durable reminders: the schedule service arms per-root timers, injects
671
+ # due prompts as plugin-source user messages, and writes schedule/change
672
+ # events the projection folds into the /schedule panel. time-context
673
+ # gives the model a clock reading so 'at' times are phrased against the
674
+ # actual time; the 30s throttle bounds durable snapshot growth.
675
+ - id: schedule
676
+ name: '@deepseek-ai/dsh-schedule'
677
+
678
+ - id: time-context
679
+ name: '@deepseek-ai/dsh-time-context'
680
+ config:
681
+ refreshIntervalMs: 30000
682
+
683
+ # Persistent PTY plumbing: the owner-scoped registry and the one backend
684
+ # package in both dialects (pwsh is the Windows/ConPTY path, bash covers
685
+ # POSIX) mount as host SERVICES — no model-facing surface, so they break
686
+ # no preset boundary. The six terminal_* TOOLS ship DISABLED like LSP:
687
+ # enabling them at the host plane would hand every preset (including the
688
+ # shell-restricted minimal one) raw shell capability, the exact leak the
689
+ # disables above exist to prevent. Flip tool-terminal to disabled: false
690
+ # in the PROFILE layer to opt the deployment into PTY tools — but install
691
+ # @deepseek-ai/dsh-tool-terminal into the profile first (the host CLI does
692
+ # not bundle it; an enabled row over a missing package fails the boot):
693
+ # dsh plugin --profile cli add @deepseek-ai/dsh-tool-terminal
694
+ - id: pty
695
+ name: '@deepseek-ai/dsh-terminal'
696
+
697
+ - id: terminal-pwsh
698
+ name: '@deepseek-ai/dsh-terminal-bash'
699
+ disabled: !!js process.platform !== 'win32'
700
+ config:
701
+ shellDialect: pwsh
702
+
703
+ - id: terminal-bash
704
+ name: '@deepseek-ai/dsh-terminal-bash'
705
+ disabled: !!js process.platform === 'win32'
706
+
707
+ - id: tool-terminal
708
+ name: '@deepseek-ai/dsh-tool-terminal'
709
+ disabled: true
710
+
711
+ # LSP navigation ships DISABLED: lsp-stdio resolves every server command
712
+ # at mount and a missing binary would fail the whole composition boot.
713
+ # Enable in the PROFILE layer with real servers, e.g.:
714
+ # lsp / lsp-stdio / tool-lsp rows with disabled: false and
715
+ # lsp-stdio config.servers mapping extensions to server commands.
716
+ # The three packages are also not bundled by the host CLI: install them
717
+ # into the profile first or the enabled rows fail the boot.
718
+ - id: lsp
719
+ name: '@deepseek-ai/dsh-lsp'
720
+ disabled: true
721
+
722
+ - id: lsp-stdio
723
+ name: '@deepseek-ai/dsh-lsp-stdio'
724
+ disabled: true
725
+
726
+ - id: tool-lsp
727
+ name: '@deepseek-ai/dsh-tool-lsp'
728
+ disabled: true
729
+
730
+ # MCP servers (dsh-mcp-client) and hooks bridges (dsh-hooks-claude-code /
731
+ # -codex) take per-instance config (server transports, hooks.json paths),
732
+ # so they mount as rows in the USER profile layer, not here; the host CLI
733
+ # bundles these peers, so those rows resolve. README documents the row
734
+ # shapes, and rows over packages the host does not bundle need the package
735
+ # added to the profile first.
736
+
640
737
  - id: tui-startup
641
738
  name: '@toddzheng024/dscode-bundle/startup'
642
739