Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Agent-only local instructions and state
AGENTS.md
.dsh/
.agents/
.codex/

# Dependencies and generated output
node_modules/
lib/
coverage/
*.tsbuildinfo
*.tgz
_tmp_*

# Logs and operating-system files
*.log
.DS_Store
Thumbs.db
18 changes: 0 additions & 18 deletions AGENTS.md

This file was deleted.

4 changes: 2 additions & 2 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ The Browser entry uses a global runtime owner for the React root, slot contribut
Requires Node.js 22.19+ and DeepSeek Harness with the `web` profile.

```sh
npx -y --package @deepseek-ai/dsh dsh plugin --profile web add github:LoftyTao/dsh-ui-workbench#v0.1.0
npx -y --package @deepseek-ai/dsh dsh plugin --profile web add github:LoftyTao/dsh-ui-workbench#v0.2.0
```

GitHub installs build from source; allow the `prepare` script when DSH prompts. After adding the package to the `web` profile, source builds are claimed by HMR in the same Web process; the theme integration adds no restart step, and one page load creates the initial Browser aggregate.
Use the `v0.2.0` tag to install the hot-reload, Git review, and light/dark theme features from this release. GitHub installs build from source; allow the `prepare` script when DSH prompts. After adding the package to the `web` profile, source builds are claimed by HMR in the same Web process; the theme integration adds no restart step, and one page load creates the initial Browser aggregate.

## License

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ dsh --profile web --dump-config
需要 Node.js 22.19+ 与带 `web` profile 的 DeepSeek Harness。

```sh
npx -y --package @deepseek-ai/dsh dsh plugin --profile web add github:LoftyTao/dsh-ui-workbench#v0.1.0
npx -y --package @deepseek-ai/dsh dsh plugin --profile web add github:LoftyTao/dsh-ui-workbench#v0.2.0
```

GitHub 安装会从源码构建,请在 DSH 提示时允许 `prepare` 脚本。将包加入 `web` profile 后,源码构建由 HMR 在同一 Web 进程接管;主题适配不增加重启步骤,页面加载一次即可完成初始 Browser aggregate。
使用 `v0.2.0` tag 安装本轮热重载、Git 审查和亮暗主题特性。GitHub 安装会从源码构建,请在 DSH 提示时允许 `prepare` 脚本。将包加入 `web` profile 后,源码构建由 HMR 在同一 Web 进程接管;主题适配不增加重启步骤,页面加载一次即可完成初始 Browser aggregate。

## 许可证

Expand Down
2 changes: 1 addition & 1 deletion dsh.plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "dsh-external/dsh-ui-workbench",
"version": "0.1.0",
"version": "0.2.0",
"main": "./lib/index.js",
"description": "DSH web plugin: right-side workbench panel (file tree / file viewer / git review) with draggable width, coexisting with the official tool-details panel.",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ui-workbench",
"version": "0.1.0",
"version": "0.2.0",
"description": "DSH web plugin: a right-side workbench panel (file tree / file viewer / git review) with a draggable-width side panel that coexists with the official tool-details panel.",
"repository": {
"type": "git",
Expand Down
Loading