The generic New Session action opens a default-directory workspace instead of requiring a folder pick, and the workspace picker lists that workspace as a no-folder choice.
Install
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:wjy9902/dsh-web-default-session
GitHub-sourced plugins run build scripts on your machine at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).
README
English | 简体中文
面向 DeepSeek Harness Web 界面的客户端插件:把「必须选一个文件夹才能开始对话」的限制去掉。
- 点「新会话」默认无文件夹:侧栏的「新会话」按钮会打开一个绑定在宿主默认目录(
dsh web的启动目录,即host.describe返回的cwd)上的会话,不再落到「当前/最近工作区」,也无需选文件夹; - 选文件夹时也有「无文件夹」选项:插件会在默认目录上维护一个名为 「默认目录」 的工作区,它出现在顶部文件夹 chip 的菜单和侧栏工作区列表里,点它就是“无文件夹”;
- 零工作区启动:没有任何工作区时,插件自动创建「默认目录」并打开,输入框直接可用;
- 升级安全:只改用户 profile(
~/.dsh),不动 dsh 安装本体,dsh 升级不会覆盖; - 工作区上右键等显式指定工作区的入口保持原行为。
安装
dsh plugin --profile web add dsh-web-default-session
包声明了 dsh.bundle,dsh plugin add 会自动把它激活为 profile layer,无需手工改 patch。然后重启 dsh web(或依赖 HMR),刷新页面即可。
其它等价装法:
# 从 GitHub 装(发布后可用)
dsh plugin --profile web add github:<你的用户名>/dsh-web-default-session
# 或手动:先 pnpm add,再在 ~/.dsh/profiles/web/cordis.patch.yml 注册宿主行
dsh plugin --profile web add dsh-web-default-session
手动注册方式(一般不需要,bundle 会自动生效):
- insert:
- id: web-default-session
name: 'dsh-web-default-session'
行为细节
- 默认目录 =
dsh web进程的启动目录(在/Users/user启动就是/Users/user); - 「默认目录」工作区首次加载页面时自动创建,标题从目录名重命名为「默认目录」(只在标题还是目录名时改名,不覆盖你的手动重命名);
- 会话期间手动删除「默认目录」不会被立刻复活;刷新页面后会重新出现;
- 已在「默认目录」的空白会话里再点「新会话」时,会新建一个全新空白会话,保证点击有可见反馈。
定制
- 想改菜单里显示的名字:编辑
lib/client.js顶部的DEFAULT_TITLE; - 想改默认目录:把
resolveCwd()换成你自己的逻辑(例如固定"/path/to/dir")。
卸载
dsh plugin --profile web remove dsh-web-default-session
并删除 cordis.patch.yml 里的 web-default-session 行。
English
A client plugin for the DeepSeek Harness Web UI that lifts the "pick a folder before chatting" gate.
- New Session defaults to no folder: the generic New Session button opens a session rooted at the Host's default working directory (the directory
dsh webwas launched from, i.e. thecwdfromhost.describe) instead of the current/recent workspace — no folder picking required; - A "no folder" choice in the workspace picker: the plugin maintains a workspace named 默认目录 ("Default directory") at the default directory; it appears in the hero workspace-picker menu and the sidebar, and picking it is the no-folder choice;
- Zero-workspace boot: with no Workspace at all, the plugin creates the default workspace and opens it, so the composer is usable immediately;
- Upgrade-safe: only the user profile (
~/.dsh) is touched — dsh upgrades do not overwrite it; - Workspace-scoped actions (e.g. "new session in this workspace") keep their built-in behaviour.
Install
dsh plugin --profile web add dsh-web-default-session
The package declares dsh.bundle, so dsh plugin add activates it as a profile layer automatically — no manual patch edits. Restart dsh web (or rely on HMR) and refresh the page.
Equivalent options:
# From GitHub (once published)
dsh plugin --profile web add github:<your-username>/dsh-web-default-session
Manual registration (normally unnecessary — the bundle takes effect on its own):
- insert:
- id: web-default-session
name: 'dsh-web-default-session'
Customisation
- Menu title: edit
DEFAULT_TITLEat the top oflib/client.js. - Default directory: replace
resolveCwd()with your own logic.
Uninstall
dsh plugin --profile web remove dsh-web-default-session
and remove the web-default-session row from cordis.patch.yml.
License
MIT
Links
More in this category
zhu1090093659/dsh-web-ui★ 1766
Plugin and skin collection for the DSH Web UI: task board, Git graph, right-side panel, remote mobile UI, pet, live token stats, and a skin center.
ccch1mneyyy/dsh-TUI★ 829
Claude Code-style full-screen terminal UI: pixel-whale header, live status line, and streaming thought expansion.
omdsh-dev/DSH-better-sidebar★ 705
Full sidebar workbench with file rendering and editing, terminal, Git, and subagents; third-party plugins can register new tabs.
huiliyi37/dsh-tianshu-tui★ 131
A terminal UI (TUI) for DeepSeek Harness.
omdsh-dev/dsh-at-file★ 117
Codex-style `@file` mentions: search workspace files in the composer and attach their contents to prompts.
Nagi-ovo/dsh-visualize★ 79
In-conversation generative UI: the model renders interactive HTML cards into the chat stream, with streaming preview and sandboxed rendering.