npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@jiayuw/dsh-files-panel

v0.1.0

Published

One-command installer for the dsh-files-panel plugin: interactive terminal, workspace file explorer, and tmux-style split panes for the DeepSeek Harness web GUI (dsh web). Applies the plugin patch to a deepseek-harness checkout and builds it.

Readme

dsh-files-panel

Layout overview

Interactive terminal, workspace file browser, and tmux-style split panes for the DeepSeek Harness web GUI (dsh web).

This plugin extends the DeepSeek Harness browser surface with three features:

| Feature | What you get | |---|---| | Terminal | A real interactive terminal tab beside Chat/Trajectory. Per-pane PTYs with a shell picker (Windows: pwsh / cmd; Linux/macOS: bash / zsh / sh). | | File browser | A workspace file tree with per-type icons and syntax-highlighted editing (save with conflict detection, Vim/Emacs keymaps, drag-resizable tree/editor split). | | Split panes | tmux-style panes: recursive split right/down, per-pane fullscreen, draggable dividers, sizes that follow the window. Splitting a Chat pane starts a new session side by side, and each chat pane gets its own input box sized with the pane. |

Install

The plugin is a set of packages inside the deepseek-harness monorepo. Apply the single cumulative patch to a clean checkout, then build — one command:

# Windows PowerShell:  .\install.ps1 <deepseek-harness checkout>
# Linux/macOS/Git Bash: ./install.sh  <deepseek-harness checkout>

The installer validates the checkout, applies patch/dsh-files-panel.patch (skipped when already applied), then runs pnpm install and pnpm run build. Manually, that is:

# in a deepseek-harness checkout at base commit 47f943859b
git apply path/to/dsh-files-panel.patch
pnpm install
pnpm run build
pnpm dsh --profile web   # do NOT use npx @deepseek-ai/dsh web

Open the printed URL (default http://127.0.0.1:3080) and hard-refresh (Ctrl+F5).

Usage

  • Open a session → the Terminal tab opens a live shell; the toolbar lets you pick the shell and restart it.
  • The folder icon in the session header opens the workspace file browser.
  • Each pane's thin toolbar has split right, split down, fullscreen, close. Focus a pane, then click the top tab to switch its view (Chat / Trajectory / Terminal). A split chat pane has its own input box; closing a pane re-flows the rest to fill the grid.

Full usage: docs/USAGE.md · docs/USAGE.zh.md(中文)

Repository layout

patch/dsh-files-panel.patch   the single cumulative patch (everything above)
install.ps1 / install.sh      one-command installer (apply + pnpm install + build)
src/packages/                 the plugin source, mirroring the monorepo packages/ layout
assets/layout.png             the layout screenshot shown above

src/packages/ mirrors the harness monorepo paths, so each file's location tells you where it belongs:

  • host/web-terminal, host/web-terminal-local — terminal capability seam + local provider
  • host/workspace-files, host/workspace-files-fs — workspace file seam + provider
  • host/apiproxy/src/api/{terminal,files}.* + fetch/* — the terminal.* / files.* wire domains
  • client/ui-terminal, client/ui-files — the browser Terminal and file-panel views
  • client/ui-conversation — the split-pane grid, pane store, and cross-session panes
  • client/ui-slots, client/web-react, client/runtime — framework additions (SessionBoundary, provideInfoOf)
  • client/tsdown.client.ts, bundle/web-app — build + registration

Limitations

  • Terminal output is polled (~60 ms), not streamed; fixed size, TERM=dumb (no color / full-screen programs yet).
  • A split grid shares each session's chat state across panes of that session.
  • The file tree and terminal are human-facing only; their content is not fed to the model.

License

MIT