Back to home@leonardoxr

dsh-plugins

No description

Stars
0
Language
Created
Aug 22, 2026
Updated
Aug 23, 2026

Introduction

DSH Plugins

A master repository for DeepSeek Harness plugins. Each plugin remains an independent Git repository and is included here as a Git submodule, so plugin history, branches, releases, and CI stay isolated.

Plugins

PluginRepositoryPurpose
dsh-auto-chat-titlesleonardoxr/dsh-auto-chat-titlesSemantic, configurable chat titles
dsh-better-sidebarleonardoxr/DSH-better-sidebarSidebar workbench and extension API
dsh-codex-usageleonardoxr/dsh-codex-usageCodex usage UI
dsh-companionleonardoxr/dsh-companionRead-only workspace/session API and notifications
dsh-nativeleonardoxr/dsh-nativeNative desktop and mobile shell for DSH web servers
dsh-routed-subagentleonardoxr/dsh-routed-subagentComplexity-routed subagent delegation
dsh-workspace-gitleonardoxr/dsh-workspace-gitWorkspace Git integration

Repository model

  • This repository coordinates the plugin collection; it does not merge their histories.
  • Plugin directories are independent Git repositories. Use git -C <plugin> ... for plugin work.
  • Update the pinned plugin revision in the master repo with git -C <plugin> pull followed by git add <plugin>.
  • Do not commit DSH source changes here or inside a plugin. Plugins must be mounted through the DSH profile and cordis.patch.yml mechanism.
  • Code changes follow each plugin’s contribution rules; documentation-only collection changes may be made here.

DSH plugin behavior

Plugins are Cordis modules with optional host and client halves. The package manifest declares the DSH bundle patch and client injection metadata. Host code must use public DSH services/routes; client code must use injected services and must unload cleanly.

For better-sidebar integrations, see dsh-better-sidebar/AGENTS.md. Key rules: use inject = ['betterSidebar'], register tabs/viewers through ctx.betterSidebar, wrap registration in ctx.effect() so the disposer is HMR-safe, use package-prefixed IDs, and keep dsh-better-sidebar as an optional peer dependency. The service exists only on the client side.

Local development

# Clone this collection with plugin repositories
git clone --recurse-submodules <master-repository-url> dsh-plugins

# Initialize plugins after a normal clone
git submodule update --init --recursive

# Work inside one plugin
cd dsh-better-sidebar
pnpm install
pnpm build

Install a local plugin into a DSH web profile using the official plugin mechanism, then refresh the existing DSH UI. Do not modify the DSH checkout.

Documentation references