DSH Plugins Marketplace

DSH Plugins

Plugins

/

dsh-code-navigator

I

dsh-code-navigator

Discovered

Persistent C/C++, Python, and TypeScript code navigation for DeepSeek Harness.

dsh-code-navigator

简体中文 · Plugin documentation

Persistent, VS Code-style source navigation for DeepSeek Harness. The plugin works with BetterSidebar when it is installed and provides its own Explorer, tabs, breadcrumb, editor, and Quick Open workbench when it is not.

Status: stable 0.1.0 release for DSH 0.1.2-alpha.3+.

Prerequisites

The plugin itself works without an external language server. C/C++ definition navigation additionally requires clangd, which is not included because it is a native LLVM executable:

# Check first
clangd --version

# macOS with Homebrew
brew install llvm

# Debian / Ubuntu
sudo apt-get install clangd

On Windows, install an official LLVM release and ensure clangd.exe is in PATH. If Homebrew installs LLVM outside PATH, configure clangdCommand: /opt/homebrew/opt/llvm/bin/clangd in the plugin settings. See clangd's official installation guide for current platform packages and downloads.

Python and JavaScript/TypeScript navigation require no global installation: Pyright, TypeScript Language Server, and TypeScript are included in the npm package.

Features

| Navigation | Workspace UI | Language services | | --- | --- | --- | | Cmd/Ctrl-click definitions | Explorer tree and editable tabs | Persistent clangd for C/C++ | | Back and forward history | Clickable path breadcrumb | Bundled Pyright for Python | | Modifier-hover underline | Tab close/context menu | Bundled TypeScript Language Server | | Cmd/Ctrl+P file search | LSP status and index warm-up | Automatic dependency detection |

Screenshots

Standalone workbench — Explorer, tabs, breadcrumb, editor, and LSP status

Standalone workbench

Clickable breadcrumb directory picker

Breadcrumb directory picker

Back and forward navigation controls

Navigation history controls

Graceful degradation

Language servers are detected during activation and the result is cached. Missing tools disable only their language feature:

  • clangd is optional. Without it, C/C++ files still open with syntax highlighting, but C/C++ indexing and definition lookup stay disabled.
  • Pyright, TypeScript Language Server, and TypeScript ship with the plugin. A damaged or incomplete installation disables that server and leaves the workbench usable.
  • BetterSidebar is optional. Without it, the standalone workbench is mounted automatically.
flowchart LR
  Workspace[DSH workspace] --> Navigator[Code Navigator host]
  Navigator --> Detect{Server available?}
  Detect -->|yes| Persistent[Persistent LSP process]
  Detect -->|no| Viewer[File browser + editor]
  Persistent --> Sidebar[BetterSidebar adapter]
  Persistent --> Workbench[Standalone workbench]
  Viewer --> Sidebar
  Viewer --> Workbench

Install a development archive

pnpm install
pnpm --filter dsh-code-navigator check:release
pnpm --filter dsh-code-navigator pack
dsh plugin --profile web add file:./packages/code-navigator/dsh-code-navigator-0.1.0.tgz
dsh web

See the plugin README for configuration, dependency ownership, API integration, and release constraints.

Repository layout

  • packages/code-navigator/ — independently publishable plugin.
  • packages/better-sidebar/ — upstream-based compatibility fixture; it is not a runtime dependency of the navigator.

The sidebar source tracks omdsh-dev/DSH-better-sidebar through the upstream Git remote.

Development

pnpm install
pnpm --filter dsh-code-navigator check:release
pnpm peers check

Licensed under MIT. See the package's third-party notices for bundled runtime components.

Similar plugins

dsh-coding-tools

by leonardoxr

Secure bounded coding tools for DeepSeek Harness

Manifest valid

0

MIT

TypeScript

Aug 24, 2026

dsh plugin --profile web add dsh-coding-tools

by Qingzhou-Joshua

DeepSeek Harness plugin—a simple toolkit for developers.

Manifest valid

0

MIT

TypeScript

Aug 14, 2026

dsh plugin --profile web add dsh-dev-toolbox

by omdsh-plugins

Code mode for the DeepSeek Harness web GUI: a third segment beside Chat and Work whose column is the harness's own terminal, running in the conversation's workspace

Manifest valid

0

MIT

TypeScript

Sep 4, 2026

dsh plugin --profile web add @omdsh-plugins/omdsh-codemode

by necokeine

Selectable Codex model provider for DeepSeek Harness over the local Codex app-server

Manifest valid

3

MIT

TypeScript

Aug 28, 2026

dsh plugin --profile web add @necokeine/dsh-codex-relay

by NOirBRight

Codex-app-style sidebar for a DeepSeek Harness 主会话

UI & ExperienceManifest valid

0

TypeScript

Sep 3, 2026

dsh plugin --profile web add dsh-codex-sidebar

by yuanc1204

Codex-style multiple independent selection comments for DeepSeek Harness (DSH).

Manifest valid

3

MIT

TypeScript

Sep 1, 2026

dsh plugin --profile web add dsh-plugin-multi-selection-comments