DSH / REGISTRY / ECOSYSTEM

DeepSeek Harness plugin registry

Find, install, and publish DSH plugins

Browse 735 structured Registry records and 504 public ecosystem entries. Discover broadly, then inspect source, capability, and installation boundaries.

Registry records

The ecosystem index is imported from the public DSH.Tools directory. Source repositories remain canonical. Indexed does not mean compatible, installable, reviewed, or safe.

dsh-acp

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Automation-only Agent Client Protocol server over JSON-RPC stdio. Programmatic clients create fresh harness agents, send text prompts, collect committed assistant text, resolve one-shot permission requests by policy, and cancel work. The primary in-repository client is `dsh-subagent-acp`.

acpPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-api-gateway

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Two-sided Typert RPC endpoint for Host and Client Cordis environments. The Host entry provides `ctx.typertGateway`, while `@deepseek-ai/dsh-api-gateway/client` provides `ctx.remote`; both consume the same generated `InvocationDescriptor` contract and leave business selection to API Remotes and transport, request correlation, trust, and response envelopes to Connection.

PlatformPluginsWeb UIbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-api-remotes

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Two-sided BFF for Host Remote capabilities selected by this application. The Host entry owns Agent/Session identity policy; the Client entry imports generated `/remote` artifacts as runtime values, mounts each contribution through `ctx.remote.$mount()`, and re-exports their declaration merges. Client business packages depend on this facade rather than the Gateway implementation or individual Remote runtime entries.

PlatformPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-attachment-local

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The private local implementation of `@deepseek-ai/dsh-attachment`. Objects land at `<DSH_HOME>/attachments/v1/objects/<sha256-prefix>/<sha256>` and are addressed by an opaque `sha256:` id. Each process proves a home durable once by syncing every ancestor entry to the filesystem root, so a directory another process created but has not yet synced is never mistaken for a safe boundary. Writes then use a private staging directory, owner-only files, a synced temporary file, an atomic exclusive hard-link publish, and directory syncs on the publication path (POSIX; Windows relies on filesystem metadata journaling) so the reported reference survives a crash. Write admission and reads fully decode the raster before accepting its format and dimensions; reads also re-check the digest and logged metadata. Byte and pixel limits are write-time admission policy, so a later policy reduction does not make already-admitted history unreadable.

attachmentPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-base

deepseek-ai/deepseek-harness
Built-in profile layer
Built-in source

The shared dsh core as a profile bundle: `cordis.patch.yml` inserts every base plugin row — model adapters, the shared `agent-default-model` selection, tools, persistence, policy, settings/credentials, telemetry, and host-level subagent providers — over the empty profile root, as the first layer of every profile's `dsh.profile.bundles` list. Codex and Claude Code providers load dormant; Agent Presets independently decide whether their agent contributes either model-facing delegation tool. Later bundle layers (e.g. `dsh-web-app`) and the user's profile `cordis.patch.yml` override these rows by id; a patch replaces a row's whole `config`, so mode-specific values live in mode bundles, not here. The package has no runtime API; the profile composer resolves the patch through the `dsh.bundle.patch` manifest field, never through code.

BundlesBundlesbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Bundles
Availability
Web

dsh-headless

deepseek-ai/deepseek-harness
Built-in profile layer
Built-in source

The dsh one-shot bundle. `cordis.patch.yml` rides directly over `dsh-base`: it supplies the coding persona and tool mode, disables HMR, mounts Code Mode's worker as a core execution capability, and inserts this package's `headless-runner` plugin (config `{task}`, resolved from the injected `headlessStartup` provider). It mounts no Host, HTTP server, Web runtime, or browser plugin.

BundlesBundlesConfigurableheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Bundles
Availability
Included in DSH

dsh-web-app

deepseek-ai/deepseek-harness
Built-in profile layer
Built-in source

The dsh browser-surface bundle. `cordis.patch.yml` rides over `dsh-base`: it sets the coding persona, inserts the Web host rows (webserver, API gateway, workspace, projection cache, storage) and the browser plugin roster, the always-on client-plugin reload chain (`dsh-client-hmr`, idle until a rebuild watcher rewrites client bundles), and mounts this package's `web-runtime` glue plugin (config `{printUrl, surfaceContext, trustedHosts}`). That plugin resolves the built frontend dist through `@deepseek-ai/dsh-web-frontend`'s exports, samples bind-dependent LAN trust once, provides it as `webRuntime` to the browser-trust fence and client roster, mounts the `frontend-static` fallback owner, registers the harness-source and web-surface prompt sections plus the bash-visible `DSH_WEB_URL` runtime variable when `surfaceContext` is true, and prints the `dsh web:` URL line when `printUrl` is true, after its Loader tree settles so a sibling failure cannot announce a dead app. This bundle also owns the app command line: the ordinary `web-startup` provider (`src/startup.ts`) injects `ctx.cmdlineArgs` (`dsh-cmdline`), parses `--host`, `--port`, repeatable `--trusted-host`, and the app's `--help`, then provides `webStartup`. It rejects `--host 0.0.0.0` before publishing that service because the CLI intentionally does not support all-interfaces binding yet. Flag-configured rows inject the service and read it directly from lazy config, so nothing binds a port before argument resolution and `dsh --profile web --help` starts no server. `dsh-headless` is a sibling surface over the same base and does not mount this bundle.

BundlesBundlesConfigurableweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Bundles
Availability
Web

dsh-client-connection

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Wire consumer layer: the client plugin's apply mounts `ctx.connection` (shared api client + current-page loopback state + observable generation-scoped `hostDescription` + single-consumer stream-loop starter); the export face carries the wire contract types, the `AbstractApiClient` abstraction, and the loop's sink/config types. Each successful readiness handshake publishes the exact `host.describe` value before `onConnected`; generation loss and explicit stop clear it, so native-capability consumers never retain a disconnected answer. The browser carrier uses HTTP POST for unary and respond operations and opens one downlink-only WebSocket each for `events.mux` and `events.host`; the in-process carrier satisfies the same two-stream abstraction. The Host half owns the single `/api` route and its Fetch bridge; a registered Typert interceptor claims its Remote endpoints before the API Proxy fallback. Loopback hostname classification stays package-internal: the `/api` Host fence and WebSocket upgrades use it directly, while other client plugins consume the derived `ctx.connection.isLoopback` state. The node half's `/api` route pins the privileged method set (`host.pickDirectory`, `host.openPath`, and the whole configuration plane — `settings.describe`/`openDocument`/`update`/`replace`/`mutate` and `credentials.describe`/`set`/`unset`; reads and native actions included, since describing returns the exposed configuration, opening acts on the Host desktop, and probing an arbitrary reference reports where a credential comes from — and the agent-preset authoring plane, `agentPreset.read`/`copy`/`openDocument`/`remove`, since a composition names the plugins a session runs, so reading one is reconnaissance, and copy/remove/openDocument manage the roster and drive the host desktop (authoring is copy-only, so none of them accepts composition text or a path); `agentPreset.list` and `agentPreset.select` stay out — the roster carries only ids and trust, and choosing a preset grants nothing `session.create`'s own `agentPreset` did not, over a default that already carries bash) to loopback by passing the trust fence with an empty trust list — a declared `trustedHosts` authority reaches every other method, while these stay loopback-local until a real authentication layer exists. The platform carriers and ConnectionController loop are package-internal; apply selects and drives them. The downlink boundary is documented in the WebSocket downlink carrier Agent Note.

UI & clientPluginsConfigurableWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-hmr

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Hot reload for script-loaded client plugins. The web bundle mounts the row unconditionally; without a rebuild watcher (`pnpm run dev:web`) rewriting client bundles, the poll observes no changes and the chain stays idle.

UI & clientPluginsConfigurableWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-locale

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Locale plugin: LocaleRuntime — the `zh`/`en` preference stored as `locale.preference` in `$DSH_HOME/settings.yaml`; when that explicit Host value is absent, a fresh browser starts provisionally in the language `navigator` asks for (primary-subtag matching, with `zh` when it asks for no language this app ships). The Host read runs after plugin activation so an unavailable settings service cannot block the page; its result replaces the provisional browser value live. Remote browsers retain only a process-local selection because the settings API is loopback-only. `locale/change` fires on switches. The service also owns the ns×locale dictionary registry (typed `register(ns, {zh, en})` checked against `LocaleNamespaceMap`, `bind(ns)`→`TranslateNS<ns>`; lookup chain ns → common → zh → key), implements the slot system's `LocaleFace`, and installs itself through `ctx.slots.installLocale`, backing the framework-injected `t` standard seat (`Translate`/`TranslateNS` are ui-slots types; import them from there — this package only re-exports for dictionary owners' convenience). The Host-backed preferences decision owns the persistence boundary.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-modules

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Client module system: the browser peer of Node's internal ESM loader, built as a lazy CJS table. The web shell mounts the vendored cordis Loader for entry governance (fiber lifecycle, inject waiting, update/refresh) and injects this package's `ClientModuleLoader` through its `internal` contract — the vendored side's only consumption point is `EntryTree.import`, so replacing `internal` replaces exactly "how plugin code arrives" and nothing else.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-runtime

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Client cordis boot and React-free object services: SlotRegistry wraps SlotCore and supplies renderer data sources; SessionRuntime owns Session objects, list and scope state, and the shared event window and history paging used by registered conversation view targets. WorkspaceRuntime depends on SessionRuntime and owns Workspace objects, list/actions, default-target derivation, and the New Session blank-reuse entry (`connectWorkspace`). The runtime fans the shared Host stream into Session and Workspace owners and hands each generic `host/remote-event` frame to `ctx.remote.$dispatch`; domain packages subscribe to their owner events through `ctx.remote.$on` and decide which caches or session rows they invalidate. Client sessions are always Host-born (Session+Agent+cwd in one `session.create`); the client holds no pre-entity session state — a session's Agent scope (the client mirror of host dsh-scope, keyed by the shared agent/session id) is born when its row enters the list mirror and dies with the prune. Contract: api-contracts v3 §4. Each `Session` holds a generic `ProjectionValueStore` seeded from the history-tail `projections` block and updated by `session/projection` frames under higher-seq-wins; domain keys (including `todos`) are read via `projections.faceOf` / `useProjection`, not via `ConversationSnapshot`. The store also publishes one reference-stable whole-value map through `SessionSummary.projectionValues`, allowing global list consumers to reuse the same projections without creating per-session subscriptions.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-agent-preset

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The agent-preset surfaces: a General-settings row choosing which preset new sessions are composed from, a chip on the new-session screen choosing the next session's, a read-only label in the session header, and a settings section that manages the roster — copy, delete, default, and the way into a preset's own files.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-commands

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Client command API (`ctx.commandUi`): the session-keyed command-directory cache, the `/` command source with `matchSpace`/`matchEnter` decision hooks, three-kind dispatch (`execute` / `popupSelect` / `leadingInput`), and popupSelect registration for business packages. The web command Agent Note records the decision.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-conversation

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Conversation domain: skeleton (header/tabs/composer/empty state), chat view (grouped step-summary flow, streaming tail isolation, and turn status), composer dock (session stats sticky with the input), input dock (queue rows plus the todo plan strip), details shell, and scope-addressed ConversationController. Tool presentation belongs to `ui-tool`.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-deliverables

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Produced-files and clickable-reference feature owner. The Node half registers final-response guidance with the system-prompt registry; the browser half registers the deliverables row a finished turn ends with into the chat view's `conversation.chat.turnTail` hole and links matching inline-code references in the closing prose. The shipped Web patch is the only composition that loads this package. Removing its one cordis.yml entry removes the guidance, row, and prose links together.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-directory-picker-browse

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

In-app directory browsing surface: the browser half of the browse picking interaction. It fills ui-workspace's two directory-flow holes (`conversation.hero.workspace.directoryFlow` and `sidebar.workspaces.directoryFlow`) with the Select Workspace Directory dialog, driving the local Host's `host.listDirectory` and `host.createDirectory` primitives through `ctx.workspaces`. Its node counterpart is `dsh-host-directory-picker-browse`; mounting this package composes the surface with that backend from one cordis.yml row, so no client code branches on a capability kind. Unlike the `-native` surface, the dialog needs no local operating-system chooser, so it also serves in-process and remote-browser deployments.

UI & clientPluginsWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Included in DSH

dsh-client-ui-directory-picker-native

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Native directory-picker surface: the browser half of the native picking interaction. It fills ui-workspace's two directory-flow holes (`conversation.hero.workspace.directoryFlow` and `sidebar.workspaces.directoryFlow`) with a renderless occupant that answers each `open` request by driving the local Host's OS chooser through `ctx.workspaces.pickDirectory()`, then reports exactly one outcome — a picked path, a cancellation, or a failure — back through the owner conversation. The OS dialog itself belongs to `dsh-host-directory-picker-native`; mounting this package composes the surface with that backend from one cordis.yml row, so no client code branches on a capability kind.

UI & clientPluginsWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Included in DSH

dsh-client-ui-goal

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Goal surface plugin, browser half: the `GoalBar` strip is the second standalone card in the `conversation.input.dock` composer-context stack (order 10, after Todo and before Queue). The live goal arrives through `useProjection('goal')` — the host-computed whole value seeded by the history tail page and updated by `session/projection` frames — so the plugin owns no domain store, refresh chain, or event listener. The slot inject face carries only the four mutation verbs (edit / pause / resume / clear through `ctx.remote.goals` — an active goal offers the pause action, a paused one resume); each reads the CAS ref from the session's current projected value at call time and surfaces the rejected Remote error inline. The strip single-flights mutations synchronously because React's pending render cannot fence same-frame clicks; after a successful clear it immediately suppresses that exact goal id while the authoritative null projection catches up. Goal creation stays on the `/goal` host command; loading, absent, completed, and successfully cleared goals render nothing.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-input-trigger

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Input trigger pipeline plugin: `/` and `@` detection under the caret (word-boundary + guard-tier rules), the grouped candidate menu, and pick routing to registered sources. `ctx.inputTriggers` owns the source roster and resolves one `InputTriggerController` per session scope (`sessionOf`); the conversation wiring layer drives `track`/`arbitrate`/`onSpace`/`adjudicate` on the controller. The same controller exposes `toggleSource` for a chrome launcher to open exactly one registered source over a synthetic selection span; the resulting candidates still use the ordinary menu, keyboard arbitration, pick callback, and scoped input mutations. Sources receive a `ClientSessionContext` projection per call — sessions are always agent-backed, so the projection is the session identity alone. A source is warmed in every session controller it can reach: the roster present at scope birth warms during controller construction, and a source registered later is warmed into every live controller by the registration itself. Sources whose `lexicon` roll changes after warm implement `subscribeLexicon(session, listener)`; the controller re-polls on each notification and publishes the aggregation through its `lexicon` snapshot store. The pipeline is command-agnostic: space/enter adjudication polls the optional `matchSpace`/`matchEnter` hooks in registration order and the first non-undefined answer wins.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-jobs

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Web background-job feature owner: contributes one entry to `conversation.session.header.actions` listing the `ctx.jobs` records this session can see. The data arrives entirely through the `jobsBySession` list mirror that `dsh-client-runtime` folds from `session/jobs` frames, so this package issues no RPC and holds no state beyond popover visibility.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-layout

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Shell plugin: three-column AppFrame (drag handles and concession chain) plus the `ctx.layout` panel-geometry service; it registers into the runtime-owned `root` slot and declares `sidebar`, `conversation`, `details`, and `conversation.empty`. The sidebar resize boundary is an invisible hit strip, while the details boundary retains its floating pill; only details shrinks during concession and then auto-closes. A closed sidebar retains a 56px control rail while details closes to zero width. The package also seats the theme presenter: it consumes resolved `ctx.theme` snapshots and projects them onto the document (`html { color-scheme }` for native UA chrome, `body[data-ds-dark-theme]` from the active color scheme, the theme's alias tokens as inline variables on body, and one owned `<meta name="theme-color">` whose content follows the computed body background). Measuring after palette and token application keeps the rendered background as the single color authority; disposing the presenter removes its metadata node with its other global writes.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-message-feedback

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Per-message feedback plugin, browser half: a Like/Dislike pair plus an optional note, contributed as the `feedback` entry (order 10) of the `conversation.chat.assistant-actions` strip. The strip is declared by `ui-conversation` and rendered inside the finalized assistant message's IconActions row, between copy and branch, so the controls inherit that row's chrome and hover behavior. Only finalized messages reach the slot — an interruption-frozen partial carries no `messageId` and therefore no feedback controls. The strip renders once per turn, on the closing assistant message that owns the turn's IconActions row: earlier steps of a multi-step turn produce tool rows rather than a rateable body, so they present no controls even though the Host would accept them as targets.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-model-selection

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Model selection plugin, browser half: TWO entries over ONE per-session directory owned by `ModelDirectoryResolver` (`ctx.modelDirectories`). For ordinary sessions, the `/model` popupSelect contribution (registered through `ctx.commandUi`) and the composer's named `conversation.input.model` seat both load the session's advisory directory through `session.models` and submit through `session.selectModel` via the same `ModelDirectory` instance. The compact composer trigger opens a two-level Model/Effort menu: models stay provider-grouped, while the selected exact model supplies its adapter-owned effort names, descriptions, and default. `/model` applies the selected model's default effort, and the composer can then choose any advertised effort.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-permission-presets

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Permission browser surfaces for two different lifetimes. The General-settings row reads the explicitly exposed `permission` Settings descriptor, derives its options from the host's dynamic `defaultPreset` enum, and writes one `settings.mutate` path operation with the descriptor revision. Its observable rides the slot system's `hooks` compartment, so the renderer owns React hook binding; a push invalidation refetches the descriptor. This value applies only when a later session is created; changing it does not switch the current session. Choosing Full access requires an explicit risk acknowledgement before the row writes it.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-plan

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Plan-mode status chip, a pure browser surface plugin. The browser half occupies the conversation-declared `conversation.input.plan` single seat (to the right of the access-mode control); the node half is an empty apply (the roster row). Plan behavior itself — the `/plan` command, the boundary-or-idle-committed `plan/mode` state, the `plan` projection unit, and the policy section — is owned by `@deepseek-ai/dsh-plan-mode`, composed independently on the host roster.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-settings

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The settings domain's base layer, with two roles and no presentation of its own. It provides `ctx.settingsScope`, the Host transport every preference row binds its durable namespace section through, and it declares the settings slot types registrants fill: `settings.trigger` / `settings.header` / `settings.close` (chrome content), `settings.action` (ordered content-header actions), `settings.section` (one page per feature), `settings.plugins.tab` (feature-owned pages inside the Plugins section), and `settings.onboarding` (ordered feature-owned pages). It depends on no `ui-*` presentation package, so any feature that owns a preference can reach it; the settings SHELL — the `sidebar.settings` occupant, its navigation, and the chrome — lives in ui-settings-general, because a shell dependency on ui-sidebar would close a reference graph cycle through ui-layout and ui-theme. The shell's own contract types live beside the shell for the same reason.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-settings-general

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Settings shell, ownerless copy, and durable product-onboarding namespace. It occupies `sidebar.settings` with the trigger chrome and modal settings panel, projects the `settings.section` ledger into the navigation and the `settings.onboarding` ledger into one mounted step at a time, and registers everything on the Settings pages that belongs to no single feature — the trigger/header/close chrome content, the local configuration-file action, the General section and its `settings.general.item` slot, and the `settings` dictionaries. The slot types it renders into belong to ui-settings, the settings domain base; only the shell's own contract types live here, because they reference ui-sidebar's slot type and the base layer must depend on no `ui-*` package. Feature-owned rows (Permission, Language, Appearance), sections (Models), and conditional onboarding steps stay with their feature packages.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-settings-models

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Models settings and product-onboarding plugin. The same client Cordis plugin registers the Models page plus two ordered first-run dialogs: a versioned internal-testing notice and the conditional official-DeepSeek credential step. Both steps share one modal wrapper and remain sequenced by `settings.onboarding`. The Models plane joins three wire domains into one shared snapshot — `llm.providers` (the configurable-provider directory with each route's live/dormant state), `settings.describe` (serialized schemas, layered redacted values, secret slots), and `credentials.describe` (value-free configured/source/writable badges) — and renders provider rows with one editor card at a time, without presenting route liveness as provider status.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-settings-plugin-inventory

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Read-only **Plugin list** tab for Web Settings. The browser plugin registers one localized `settings.plugins.tab` contribution with id `all`; the Plugins section owns the navigation entry and tab chrome. It performs no Remote read during plugin activation. Selecting the tab for the first time mounts it and lazily calls `ctx.remote.pluginInventory.list()` through `api-remotes`.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-settings-plugins

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **Plugins** settings section and its **Plugin configuration** tab. The section owns the heading and compact tab chrome; feature plugins contribute pages through `settings.plugins.tab`. This package's own tab shows one expandable card per Host plugin whose configuration a user owns. A card shows the plugin's name and what it governs; expanding it in place reveals hand-written controls bound to that plugin's settings namespace, each field marking whether the user overrode it and offering a reset back to the value the deployment composed.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-sidebar

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Sidebar shell plugin: the wordmark, New Session action, layout-owned collapse control, scroll-aware region seat, and bottom-pinned Settings seat. ui-workspace owns the Workspace and Session browser rendered into `sidebar.workspaces`; this package neither derives its rows nor owns its view preferences. Collapse into the layout-owned 56px rail remains presentation-local. Contract: the slot system standard.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-skill

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Skill invocation source, browser half: registers the `/`-trigger `skill` source into `ctx.inputTriggers`. Ordinary-session candidates come from the `skill.list` RPC addressed by the per-call `ClientSessionContext` projection's `{sessionId}`, with the host resolving `cwd` from the session header. The host serves every user-invocable skill; a `modelInvocable: false` entry (a `disable-model-invocation` skill, whose only entry point is this path) wears the user-only marker as a description prefix in the active language. Catalog-addressed continuable children resolve no skill candidates locally because the existing skill RPC requires an attached session; viewing their persisted history must not activate them. Catalogs cache per ordinary session with a single-flight fetch; the scope-birth `warm` hook prewarms the session's entry, the forwarded `agent-preset/selected` owner event drops that one session's entry (the catalog belongs to the preset, and a blank session may switch after the warm), and `connection/reset` clears everything. Results filter by `startsWith(query)`.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-subagent

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Web subagent feature owner: contributes the lazily expandable catalog tree to `conversation.session.header.actions`, reason-specific read-only replacements to the conversation composer chain, and the existing `@` reference source to `ctx.inputTriggers`.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-theme

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Theme plugin: ThemeRuntime over the --dsw-* token base stylesheets (static scale + alias semantic layers). The service owns the live theme preference (`light`/`dark`/`system`), resolves `system` through `prefers-color-scheme`, and publishes immutable `ThemeSnapshot`s on the `theme/change` event; it never touches the DOM — ui-layout's presenter applies the resolved snapshot (`html { color-scheme }`, `body[data-ds-dark-theme]`, and inline alias tokens). A loopback browser provides the service immediately with `system`, then loads `ui-theme.preference` in the background and writes each built-in selection through the Host settings API, whose local provider stores it in `$DSH_HOME/settings.yaml` by default; pushed settings changes and reconnects refetch it, rapid selections are serialized in gesture order with namespace revisions, and a rejected latest write reloads the durable value. A remote browser cannot access the privileged settings API, so its selection remains process-local. Third-party registered theme ids remain an in-process extension and do not cross the built-in settings schema; removing one never overwrites the last durable built-in preference. The Host-backed preferences decision owns the persistence boundary.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-tool

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Client Tool presentation plugin. `ui-conversation` dispatches each ordered `tool-call` Conversation Node through the matching key of `conversation.chat.node`; this package renders its root and Code Dispatch children, then dispatches every atomic call through the keyed `tool.call.toolview` slot. Unregistered Tool names use the generic card.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-trajectory

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Trajectory renders a turn-aware event ledger with selectable User, Assistant, Tool, and nested Subtool records. Thick rules mark Turn boundaries, compact inline markers identify Steps, and the main ledger keeps only index, event, and content; selection opens a local inspector for token usage, duration, Input, Output, and Timing. Scrollable Summary regions keep their scrollbar thumbs transparent until the region is hovered or contains keyboard focus, without changing the reserved scroll geometry. A standalone compaction request appears chronologically in its own `Between turns` section, while a numbered compaction remains inside its owning turn. Long ledgers open at the current tail, load one older page when the user reaches the loaded range's top, and mount only the visible row window plus a small overscan; request-only separators share the next measurable virtual item, while semantic row keys and ARIA indexes survive prepends. Selection, timeline navigation, folding, search, and Request totals cover the currently loaded window. The ledger covers records with an explicit loading row until the initial tail is positioned. While an older prefix remains unloaded, a first-row control precedes the loaded records, loads one earlier page on click, and changes in place to a disabled loading status while that page is pending. A fixed Overview above the ledger projects real record start/duration timing from left to right; when earlier records remain unloaded and the viewport includes the loaded domain's start, a neutral ellipsis control identifies the omitted prefix and loads one earlier page without assigning unknown history fabricated duration. Assistant spans divide recorded TTFT from decoding, and a 500 ms hover reveals exact clock and duration details. Dragging an interval focuses the ledger on every record active at any point in that inclusive range, while clearing the selection restores the full loaded ledger. Wheel gestures zoom the time domain. A right-button click clears the selected interval, while a right-button drag pans an already zoomed viewport without changing it. The initial view and streaming updates stay at the tail; scrolling upward suspends following so new records do not interrupt inspection of earlier rows. Content-only stream frames preserve virtual row keys and heights, reuse measurements, and do not issue repeated tail-scroll writes. Completed replies retain assembled blocks, timing, and usage in Trajectory target State, while the shared Session window keeps the raw Events. Trajectory asks the conversation shell to float the composer over the full-height ledger, while its responsive vertical scrollers reserve the composer's live height so final rows remain reachable. Trajectory-owned Definitions assemble business records, including cancellation-frozen Assistant and Tool records, from the shared Session window, so Trajectory neither reads nor changes the Chat conversation snapshot. The package provides no service and declares no Context merge; it registers target-specific Event Definitions, a Trajectory view builder, and one tab in the conversation's `'conversation.view'` slot ring. Contract: api-contracts v3 §8.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-user-questions

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Web question feature plugin: its browser half registers the `question` entry in the conversation-owned `conversation.composer` keyed slot. Its host half is empty on purpose — mounting `dsh-tool-ask-user` there put the tool in the registry's GLOBAL layer, which merges into every agent regardless of the preset that composed it, so a two-tool benchmark preset really presented three. Rendering a question is a host UI capability; having the tool is an agent capability, so the `tool-ask-user` row belongs to the presets that want it (and to the TUI composition, which has no presets).

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-workflow-run

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The browser plugin that reconstructs durable top-level workflow runs as independent Chat nodes. It consumes the four `tool-workflow/*` Session events owned by `dsh-tool-workflow`, registers one `ConversationNodeDefinition`, and renders through the keyed `conversation.chat.node` slot without changing the existing workflow tool card.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-client-ui-workspace

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Shared Workspace browser and picker plugin. `WorkspaceBrowser` fills the sidebar's `sidebar.workspaces` slot, while `WorkspacePicker` fills the page-local Session Intent hero's `conversation.hero.workspace` slot; both surfaces use the same Workspace menu and add flow.

UI & clientPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-code-runtime-worker-thread

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Worker-thread implementation of the `@deepseek-ai/dsh-code-runtime` seam: `WorkerThreadCodeRuntime` runs each program in ONE fresh Node `worker_threads.Worker` — TypeScript in, type-stripped host-side, bindings bridged over the message port, `{ value, logs, error? }` out. **Containment, not a security boundary**: trust posture is bash-equivalent by design (the Code Mode Agent Note § Trust posture), with containment bash does not have — separate isolate, empty environment, heap cap, hard termination.

RuntimePluginsConfigurableheadlessweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-command-compact

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Human-facing `/compact` control over `ctx.compaction`. The plugin registers one global command through `ctx.commands`, so every composed command adapter discovers and executes it without a model turn. The queued manual compaction Agent Note owns the admission, lock, and durability decisions.

compactionPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-compaction-basic

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **basic compaction backend**: a `BasicCompactionEngine` implementing the `@deepseek-ai/dsh-compaction` Service Definition with reusable `ctx.tokenMeter` pressure, token-budget retention, and summarization as a direct one-shot `ctx.llm.stream()` call that replays the conversation prefix to reuse the provider's KV cache (interceptable at `llm/stream`).

compactionPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-compaction-tool-result-pruner

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The replay-safe model-free pruning service (`ctx.toolResultPruner`). It rewrites over-budget `tool/result` surface nodes to a bounded head, a fixed omission marker, and a bounded tail while retaining the full original event in the append-only session log.

compactionPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-agent-instructions

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Per-session workspace instruction loading for `AGENTS.md`-compatible files. The plugin injects the initial user-global and project instruction chain into durable history, then discovers nested files and reports later changes or removals after successful filesystem tool calls.

contextPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-session-reference

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

`ctx.sessionReferenceResolver` prepares bounded, read-only snapshots of other sessions as sourced model-facing context. It consumes `ctx.sessionQuery` and the backend-independent compact checkpoint marker; SQLite FTS is not required. Hosts that support cross-session mentions may opt into the service.

contextPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-time-context

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Opt-in durable context with the current zoned time, the browser zone attached to the open request, and elapsed time sampled during model-request preparation. Default compositions leave it disabled; the Schedule Web overlay mounts it so the model can interpret otherwise-unqualified dates and times in the user's browser zone. Decision record: the durable time-context Agent Note.

contextPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-tmux-context

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Opt-in durable context naming the tmux session, window, and pane this agent process runs in, plus the window's pane-tree layout. It is sampled once per turn during model-request preparation and is not part of the shipped Web/headless composition. Decision record: the tmux-context Agent Note.

contextPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-agent

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Agent interface, registry, process-local initiator scope, and `agent/*` event vocabulary. Every plugin (UI, hooks, orchestrators) programs against the `Agent` handle defined here — it has zero loop dependency, so the loop is swappable.

CorePluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-agent-default-model

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The deployment default used when an entry point creates an Agent that has no session-local model selection. `AgentDefaultModelConfig` provides `ctx.agentDefaultModel`; direct entry points such as `dsh --profile headless` and Host-backed entry points such as ApiProxy read the same service instead of owning parallel provider/model defaults.

CorePluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-agent-loop

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

THE concrete agent plugin and loop driver. Its package-internal implementation satisfies the `Agent` interface and drives the session/turn/step lifecycle.

CorePluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-agent-tool-presentation

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The row an agent preset carries to say which form of its tools the model sees: `native` (every schema), `code` (only `run_code` plus a generated TypeScript SDK), or `both`.

CorePluginsConfigurablepreset:code
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-session

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Event-sourced session log and in-memory store. A `Session` is the append-only source of truth for an agent's whole interaction history — the LLM message history is *derived* from it. A **surface** layer (an ordered projection of message-producing events) is maintained on top of the raw log for efficient derivation and compaction.

CorePluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-system-prompt

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

System prompt assembly registry. Plugins contribute ordered sections, tool schemas, and named variables. The loop assembles once per step and renders the result as the complete model prompt. This plugin owns the static harness identity and global deployment persona; an agent-scoped persona shadows the global default.

CorePluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tools

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Tool registry and execution pipeline. Tool plugins register their schemas and executors; the agent loop executes each call through `tools/pre-execute` (the extensible allow/deny gate) → monotonic registered guards → `tools/execute` (an around-dispatch wrapper for timeout/retry/metrics plugins) → `tools/post-execute` (inspect/replace the result, attach context) → the definition-owned `finalizeContent` boundary → the observe-only `tools/result` notification. The registry also owns HOW its tools are presented to the model — its `mode` config selects native function calling, Code Mode, or both, and one agent shadows that default for itself with `presentAs`.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-credentials-local

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

File-backed credentials provider: four layers, one honest precedence.

credentialsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-e2b

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Shared lifecycle owner for one E2B sandbox. The filesystem and subprocess adapters inject `ctx.e2b`, await its single SDK handle, and therefore inhabit the same remote Linux working tree and process world. The package pins `e2b@2.29.1`; the family map lists the opt-in composition.

e2bPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-fs-e2b

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

E2B implementation of the `@deepseek-ai/dsh-fs` provider contract. It has no config: load `@deepseek-ai/dsh-e2b` first, then this service in place of `dsh-fs-local`. The provider uses the owner's remote cwd and SDK handle, so file tools observe the same world as E2B-backed Bash processes.

e2bPlugins
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-subprocess-e2b

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

E2B implementation of the `@deepseek-ai/dsh-subprocess` seam. Load `@deepseek-ai/dsh-e2b` first, then this service in place of `dsh-subprocess-local`. Existing Bash, PTY, and LSP consumers then execute in the shared remote sandbox without E2B-specific capability packages.

e2bPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-acp-demo

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

ACP automation server app: the default agent spine, client-created agents through `@deepseek-ai/dsh-acp`, JSONL persistence, and semantic checkpointing behind one JSON-RPC stdio bin. Programmatic clients create fresh sessions; this package mounts no human UI.

examplesPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-agent-spine-demo

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **default executor-less, UI-less agent spine** as ONE Cordis bundle plugin. It loads the fixed set of services every harness agent needs, including the local skill provider, and forwards the loop's `agents` list as its own config — so an app package composes a working agent by adding only an entry point and the swappable backends.

examplesPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-cordis-client-runner

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Browser half of dynamic dual-half plugin packages. The host-side runner holds every definition's code in process memory and asks the open pages, over a `cordis/request-run` event, whether to run one; this package answers that request, turns the definition into a live browser plugin, and turns a `dynamicCordisRunner/retract` event back into a clean page.

PlatformPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-cordis-host-runner

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The host half of model-mounted dynamic packages: the definition registry, the `node:vm` sandbox and fiber lifecycle for host halves, the invoke handler table, and the run round trip a browser page carries out. Provided as `ctx.dynamicCordisRunner`. The model-facing tools live in `@deepseek-ai/dsh-tool-cordis`; the browser half is loaded by `@deepseek-ai/dsh-cordis-client-runner`.

PlatformPluginsConfigurableweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-cordis

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The self-referential Cordis toolset: five model-facing tools over the live runtime in the current DSH process. The registry, the vm sandbox, and the browser broadcast belong to `@deepseek-ai/dsh-cordis-host-runner` (`ctx.dynamic`), which this toolset injects — a composition with these tools but no runner never activates them. Design home — sandbox semantics, dynamic-package lifecycle and composition, standing decisions: the toolset Agent Note.

Model toolsPluginspreset:cordis
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-client-ui-cordis

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Cordis dynamic-plugin surfaces, browser half: a frame-wide panel that operates every definition the host holds, and a read-only `cordis_define` card that records what a session defined.

PlatformPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-command-feedback

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Trigger-independent session feedback plus human-facing `/feedback` capture. The package exports `recordFeedback(session, text)`, which appends one log-only `feedback/record` event. Its plugin registers one global command through `ctx.commands`, so every composed command adapter discovers it; the shipped Web client executes it without a model turn.

feedbackPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-message-feedback

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Host-owned editable feedback for one finalized assistant message. The package registers `ctx.messageFeedback`, persists one lifecycle-bound sidecar row per Session in storage-domain, and publishes the Host `messageFeedback.list`, `messageFeedback.put`, and `messageFeedback.delete` unary Remote contract. It is separate from the immutable Session-level `feedback/record` event and performs no telemetry handoff. The message-feedback sidecar Agent Note owns the design boundary.

feedbackPluginsConfigurableweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-fs-local

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **local-filesystem implementation** of the `ctx.fs` provider contract (`@deepseek-ai/dsh-fs`). Backs the twelve `FileSystem` primitives with the host filesystem; loading it as a plugin populates `ctx.fs`.

RuntimePluginsConfigurablepreset:minimal
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-fs-observation-policy

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **fs-observation-policy plugin**: it records observed presence or absence and adds read-before-edit plus guarded write/edit on top of the `ctx.fs` provider contract (`@deepseek-ai/dsh-fs`) — through the `fs/*` event gate, **NOT** through a method service. This plugin registers **no** `ctx.fsPolicy` service and has no public `read`/`write`/`edit`/`resolve` methods. It is the policy third of the filesystem stack: not a swappable seam, but the policy that does not belong on the `FileSystem` provider base class.

RuntimePluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-fs-sandbox

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

`SandboxedFileSystem` extends `LocalFileSystem` and registers as `ctx.fs`. It inherits every text-storage mechanic verbatim (resolve, stat, read/stream, list, the atomic write, the read-match-write edit critical section) and adds only a per-call MODE fence on `writeText`/`editText`. Reads always pass through — every mode permits reading.

RuntimePluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-fs

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **model-facing filesystem tools** — `read`, `read_image`, `write`, `edit` — and their **executor**. This is the consumer layer of the filesystem stack: it owns tool names, JSON schemas, argument validation, prompt sections, **read windowing**, and result formatting. It reads/writes/edits through the `ctx.fs` provider contract (`@deepseek-ai/dsh-fs`) **directly**. The freshness/observation policy is contributed by a separate plugin (`@deepseek-ai/dsh-fs-observation-policy`) through the `fs/*` event gate; the tool is not method-coupled to it. Under a confining provider, the shared sandbox-policy service is required for per-session execution and the tool exposes escalation for filesystem mutations.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-fs-search

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **model-facing filesystem discovery tools**—`glob`, `grep`—are backed by the **packaged ripgrep binary** (`@vscode/ripgrep`), not by `ctx.fs` provider methods and not by a system `rg` install. Registration is unconditional: the binary ships inside the npm dependency, so there is no load-time availability probe. Each call spawns the binary through the `ctx.subprocess` seam with a fixed argv vector (`--no-config` prepended so a host `RIPGREP_CONFIG_PATH` cannot inject a `--pre` preprocessor into the unconfined spawn; model-controlled values are plain argv elements — no shell layer exists, so no quoting applies), parses the raw `rg` output, and returns a workdir-relative canonical value. The package injects `tools`, `systemPrompt`, and `subprocess`—deliberately **not** `fs`; `ctx.spillStore` is read opportunistically with `ctx.get()` because formatted-result spill is optional.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-str-replace-editor

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Standalone model-facing `str_replace_editor` over `ctx.fs`. It can be composed with persistent Bash, one-shot Bash, sandboxed Bash, or another terminal surface.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-command-goal

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Human-facing `/goal` control over `ctx.goals`. The plugin registers one global command through `ctx.commands`, so every composed command adapter discovers and executes it without a model turn. The human goal-command Agent Note owns the UX and composition decisions.

goalPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-goal

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Event-sourced same-session goal state. The service retains one current completion objective in an agent's existing session while keeping permission to continue as process-local activation. The goal-domain Agent Note owns the design rationale; the goal type catalog records the literal data shapes.

goalPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-goal-round-driver

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Same-session continuation driver for `ctx.goals`. It turns an active, armed goal into sequential goal rounds through the public `Agent` and session services; the same-session driver Agent Note owns the race and lifecycle rationale.

goalPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-goal

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing control tools for `ctx.goals`: `get_goal`, `create_goal`, and `update_goal`. The goal-tool Agent Note owns the authority split and Codex-shaped UX.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-repeat-tool-reminder

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

An advisory loop-breaker, not a model-facing tool: it never appears in the tool list, never vetoes or rewrites a call, and adds exactly one behavior — it watches each agent's stream of tool calls, counts runs of consecutive calls to the same tool with identical canonicalized arguments, and at configured run lengths injects an escalating advisory reminder telling the model to stop repeating itself, re-read the last result, and either change approach or conclude. The decision (retry differently, gather more evidence, or finish) stays entirely with the model: a legitimately repeated call is delayed by nothing and blocked by nothing. Decision record: the repeat-tool-reminder Agent Note.

guardPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-call-timeout-policy

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Tool-call timeout enforcer: a single `tools/execute` around-dispatch listener that arms a per-call cooperative deadline on `exec.signal` for a tool declaring `timeoutMs` on its `ToolDefinition` and returns a structured `TOOL_TIMEOUT` result when that deadline wins. The budget is read from the tool's own declaration (`ToolDefinition.timeoutMs`, set by the owning tool plugin), so this plugin is **zero-config**. It is the reference `tools/execute` wrapper and the enforcement home for model-facing tool-call budgets (timeout-library Agent Note).

Model toolsPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-hooks-claude-code

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

A cordis plugin that runs the supported command-hook subset of a user's existing **Claude Code** hook config (a `hooks.json`, or a settings file's `hooks` key) on the harness's canonical interception points. It is the **CC dialect** half of the hooks subsystem: it owns the bridge's CC-shaped per-event stdin payloads, CC's env + `${CLAUDE_PLUGIN_ROOT}`/`${CLAUDE_PROJECT_DIR}` substitution, and the mapping from a hook's neutral outcome onto the harness's typed Decisions. The dialect-agnostic primitives (matcher, exit-code/stdout codec, `ctx.shell` execution, most-restrictive merge, the `hook/*` events) come from `@deepseek-ai/dsh-hook-protocol`.

hooksPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-hooks-codex

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

A cordis plugin that runs the supported subset of a user's existing **Codex** hook config on the harness's canonical interception points. The **Codex dialect** half of the hooks subsystem. The dialect-agnostic primitives come from `@deepseek-ai/dsh-hook-protocol`; this bridge owns the Codex-shaped payloads, matcher mode, and decision mapping.

hooksPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-host-apiproxy

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The API gateway shared by every client consists of the TypeScript API contract (`src/api/`, zero Node dependencies, importable from the browser), the fetch carrier pair (`src/fetch/`: `toFetchHandler` on the host side, `AbstractApiClient` plus platform subclasses on the client side), and the host-side implementation (`src/api-proxy.ts`: `createApiProxy` plus the default-exported `ApiProxyService` gateway plugin — config `{nativeOpen?, sessionExportCompressionLevel?, coldBlankProbeMaxBytes?}`, provides `ctx.apiProxy`). This package registers no routes; carriers such as HTTP wrap `ctx.apiProxy` themselves. The shipped Web composition lives in `packages/bundle/web-app/cordis.patch.yml`, while its default Agent model selection belongs to `@deepseek-ai/dsh-agent-default-model` in the base bundle.

PlatformPluginsConfigurableweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-host-directory-picker-auto

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **adaptive chooser** of the directory-picker seam: a node-half-only plugin that resolves the host's situation once at boot and mounts the matching dual-face backend — `-native` or `-browse` — as a real Loader entry in the in-memory root tree (never persisted to a config file; the root tree's `write()` is a no-op). Because the backend arrives as an ordinary entry, its browser half is discovered by the client module table exactly as a config-row's would be, so the seam's one-row-swaps-both-faces invariant holds for the resolved choice. Unloading the chooser removes the entry again, unloading both faces with it.

PlatformPluginsweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-host-directory-picker-browse

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **in-app browsing backend** of the directory-picker seam: `BrowseDirectoryPicker` registers `ctx.directoryPicker` with the `browse` capability — one-level directory listing and child-directory creation over Node's stdlib, which already carries the per-OS adaptation. Nothing renders on the host display, so this backend serves remote clients the native backend cannot.

PlatformPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-host-directory-picker-native

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **native-OS-chooser backend** of the directory-picker seam: `NativeDirectoryPicker` registers `ctx.directoryPicker` with the `native` capability, whose `pick(signal)` opens one native chooser per call and resolves the chosen absolute path (`null` on cancel). Platform tools run without a shell: `osascript` on macOS and Zenity with a KDialog fallback on Linux; the caller's abort terminates the native process. Windows opens the modern `IFileOpenDialog` in a spawned child process — a koffi-driven COM conversation on the child's main thread with the best thread DPI awareness the host accepts (per-monitor-v2 first), aborted by posting `WM_CLOSE` to the dialog thread. Only viable when the operator sits at the host's display — remote deployments compose `-browse` instead. The command boundary (`DirectoryPickerRunner`) and platform facts are injectable. The shared no-shell subprocess runner lives in `dsh-native-command`.

PlatformPlugins
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-host-frontend-static

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

SPA dist server for the Web shell: a function plugin (config `{distIndex}`) that claims the webserver's single fallback seat and serves the built frontend directory with the shell's locked semantics — traversal outside the dist root is 403, any miss falls back to `index.html` with HTTP 200 (SPA routing), unknown extensions ship as `application/octet-stream`, and non-GET/HEAD without a matching named route is 405. Every index response runs through the webserver's registered index taps (`applyIndexTaps`), which is how the boot manifest reaches the page. `distIndex` is an assembly fact of the composing application: `dsh-web-app` resolves it through the frontend package's exports and mounts this plugin; a deployment never hardcodes it.

PlatformPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-host-plugin-inventory

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Read-only Host projection of the current Cordis Loader tree. `PluginInventoryGateway` registers the `pluginInventory` service and publishes one generated direct Remote, `pluginInventory/list`. Every call reads `ctx.loader.entries()` directly, skips structural group rows, and returns the remaining entries in Loader order with only their Loader entry id, module specifier, effective enablement, and current root Fiber phase.

PlatformPluginsweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-host-webserver

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Web HTTP and upgrade-route registration plugin (default-exported `WebServer`, config `{host, port}`): a `node:http` server that listens on activation and provides `ctx.webServer`. `register(route)` adds a named `exact`/`prefix` HTTP route; `registerUpgrade(route)` adds an upgrade route for an exact pathname. A duplicate path within either table throws because route patterns are a composition-level contract and a collision is a misconfiguration; both methods return a disposer that removes the registration. `registerFallback(handler)` registers the one handler for requests that match no named route. A second registration throws; the SPA dist server `dsh-host-frontend-static` is the shipped owner, and the server returns 404 while none is registered. `tapIndex(transform)` adds an index.html transform, and `applyIndexTaps(html)` runs a body through the registered transforms in order; the fallback handler calls it on every index response. `port` reads the listening port (the OS-assigned value when `port` is 0), and `host` reads the configured bind host (composition-time facts other plugins adapt to, e.g. the directory-picker chooser). HTTP match order is fixed: exact over the whole table, then longest prefix, then the fallback handler. Upgrades match exactly and unmatched connections are closed; registration order carries no request-facing semantics.

PlatformPluginsConfigurableweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-commands

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Plugin-owned human-command registry consumed by interactive UI adapters. The plugin command registration Agent Note owns the boundary and dispatch contract.

interactionPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-permission-presets

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

User-facing permission presets through `ctx.permissionPresets` (`PermissionPresetService`). Each configured name bundles `sandbox/mode` with `approval/policy`; the defaults are `workspace-write` (`workspace-write` + `ask`) and `danger-full-access` (`danger-full-access` + `never`). UI adapters may expose the table as one selector, while sandbox execution and approval continue to consume their own knobs.

interactionPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-ask-user

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Model-facing `ask_user_question` tool over `ctx.userQuestions`. It lets the model ask the human a concise question when it needs confirmation, a choice, or missing information before continuing.

Model toolsPluginspreset:codepreset:cordis
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-user-approval

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Channel-neutral one-shot approval seam. `ctx.approval.request(req)` returns `allowed-once`, `rejected`, `cancelled`, or `unavailable`; missing or failing answerers fail closed, and a grant applies only to the requested action. Exact event signatures live in the generated region of approval.md.

interactionPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-user-questions

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

User-interaction Service Definition. It owns `ctx.userQuestions`, the service a model-facing tool or permission plugin uses when it needs to pause work and ask the human for a decision.

interactionPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-jobs-local

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Process-local implementation of the `@deepseek-ai/dsh-jobs` registry contract: `LocalJobRegistry` keeps every record in memory, issues per-kind `<kind>-N` ids, and hands out fresh snapshots, never live state. Load it as a plugin and it registers as `ctx.jobs`.

OrchestrationPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-jobs

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing controller for `ctx.jobs`: three kind-independent tools, completion notices, and one background-work prompt section. Loading the plugin attaches the controller required by `ctx.jobs.start()`.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-llm

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Provider-neutral LLM vocabulary and abstract service. This package defines the canonical language spoken by the agent loop, session logs, and every plugin.

ModelsPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-llm-deepseek

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

DeepSeek chat-completions adapter for the harness LLM seam: direct `fetch` + SSE (framed by `eventsource-parser`) translating the official wire format (source of truth: the API docs — guides/thinking_mode, guides/tool_calls, api/create-chat-completion) into the `StreamChunk` protocol.

ModelsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-llm-pi-ai

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Generic multi-provider adapter for the harness LLM seam backed by `@earendil-works/pi-ai`. One plugin instance owns a dict of provider profiles keyed by route; every request selects a profile with `GenerateOptions.provider` and resolves `GenerateOptions.model` against that route's configured catalog. A route naming an installed pi-ai provider inherits its endpoint, wire protocol, and model catalog as defaults and overrides them field by field; a route pi-ai does not ship is declared outright, so an OpenAI-compatible gateway, a self-hosted server, or a provider newer than the installed catalog is configuration rather than a code change.

ModelsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-llm-retry

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Function plugin that applies exact-provider retry policy through the agent loop's closed-step `agent/request-error` waterfall. It does not wrap `ctx.llm.stream()`: every adapter call remains one provider attempt, and every retry opens a fresh numbered turn.

ModelsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-token-meter

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Replay-aware token measurement through the singleton `ctx.tokenMeter` service. It advances one isolated fold per session from the durable log, so compaction and other pressure-sensitive plugins can share accounting without depending on `CompactionEngine`.

ModelsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-lsp

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **LSP capability seam**: an abstract `LspService` (`ctx.lsp`) defining WHAT semantic code navigation the harness has — go to definition, find references, find implementations, hover — over language-server providers, without binding the model contract to local subprocesses.

lspPlugins
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-lsp-stdio

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

A **generic stdio language-server backend** for `ctx.lsp`. One plugin instance accepts a named server table and registers one isolated provider per entry. It reads through `ctx.fs` and launches through `ctx.subprocess`, so the server and source always inhabit the mounted execution world. This is a generic host, not a language-server catalog or installer — deployments configure commands and mappings explicitly; presets belong in `cordis.yml` overlays.

lspPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-tool-lsp

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing **`lsp` tool** over `ctx.lsp`: one read-only tool with four operations for precise code navigation. It owns the model schema, prompt guidance, coordinate conversion, result limits and formatting, and UI presentation; it imports no provider.

Model toolsPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-mcp-client

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

MCP client bridge plugin: connects to external Model Context Protocol servers and registers their tools on `ctx.tools`, making them available to the model as native tools under server-qualified names (`mcp__<serverName>__<rawName>`).

mcpPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-plan-mode

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Logged, per-agent plan collaboration state with deployment-owned guidance, direct `/plan [message]` entry and `/plan off` exit commands, and the reviewed `exit_plan_mode` exit. Plan mode is soft guidance; sandbox mode and approval policy enforce restrictions independently and do not read or write plan state.

planPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-agent-presets

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Per-preset agent composition. A **preset** is a directory holding one `agent.cordis.yml`; the roster mounts it ONCE per process under a standing scope, and each session that names it joins by having its agent scope key parented to the mount's (`dsh-scope`'s parent chain). The mount's tools, prompt sections, and projection units exist exactly once and cover every joined agent — its plugins key their state by Session/Agent, so sessions stay apart inside one shared instance — and a host reader with no agent at all (a cold transcript read) resolves the same standing registrations by preset id.

presetPluginsConfigurableweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-persona

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The agent persona as a composable row. It can either shadow the deployment persona or own the complete system prompt.

presetPluginsConfigurablepreset:codepreset:cordis
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-invariants

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Configurable registry service for package-owned runtime invariant checks. The root plugin registers `ctx.invariants`; it contains no product checks or product-package imports. Every workspace package publishes a `./invariant` companion that registers its exact npm package name.

runtime-diagnosticsPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-sandbox-local

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Local implementation of the `dsh-sandbox` seam. It selects and caches one platform runner: Linux prefers a working `bwrap` then Landlock; macOS uses Seatbelt; Windows uses the ACL restricted-token runner. Multiple candidates are probed in order, while a sole candidate is selected directly.

RuntimePluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-sandbox-policy

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The single owner of sandbox-policy resolution: the deployment's default `SandboxMode` and fallback root, plus each session's durable mode override and immutable workspace root. Every enforcing capability receives one resolved mode-and-root policy per call; before each request, the model receives the current policy without a separate capability inventory.

RuntimePluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-schedule

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

`dsh-schedule` gives future live root Agents three Session-scoped tools for durable reminders. Version 1 accepts positive safe-integer `after_seconds` delays, explicit absolute `at` targets, and fixed-rate `every_seconds` intervals of at least five minutes. The Session event log owns reminder state; timers, tool values, and model follow-ups are disposable projections of that log.

schedulePlugins
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-sdk-jsonrpc-server

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The `jsonrpc` plugin serves newline-delimited JSON-RPC over stdio so out-of-process SDK clients can drive harness agents. `HarnessSdkJsonRpcServer` owns the protocol methods and notifications; the transport and the named wire types live in `dsh-sdk-protocol`, shared with the client SDKs; `jsonrpc-demo` supplies the surrounding `cordis.yml` application.

sdkPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-session-log-export

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Web Session-log download control over the host-streamed ZIP endpoint owned by `dsh-host-apiproxy`. The Host half registers `/export`; the browser half owns a 111×32 `Session log` action in the Session Header, one download controller, and one modal shared by that button and the slash command. ZIP generation, raw JSONL/zstd reads, descendants, attachments, backpressure, and HTTP error semantics remain owned by the ApiProxy download implementation.

SessionsPluginsWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
Availability
Web

dsh-session-query-sqlite

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Concrete `ctx.sessionQuery` provider. `SqliteSessionQueryEngine` inherits exact reads, traces, and provider-independent filters from the Service Definition package and implements its two full-text methods with SQLite FTS5. Search uses the live-preferred logical session corpus and groups cross-session results by their strongest event.

SessionsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-session-query

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Workspace-authorized model tools over `ctx.sessionQuery`. The opt-in package depends only on the unified interface and registers `session_search`, `session_event_search`, `session_trace`, `session_event_trace`, and `session_event_read`; shipped host compositions do not mount it by default.

Model toolsPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-session-checkpoint-policy

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Semantic durability policy for persisted agents. It checkpoints the event-sourced session before a model adapter receives a request, before a top-level tool body may produce an external side effect, and at each `agent/pre-step` boundary so the preceding response and ordered tool results are durable before the next request.

SessionsPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-session-persistence-jsonl

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The JSONL durable session-persistence backend — a concrete `SessionPersistence` (the `dsh-session-persistence` seam). Each session has one append-only logical JSONL log, stored as `.jsonl.zstd` by default or raw `.jsonl` when compression is disabled.

SessionsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-session-persistence-sqlite

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

A SQLite durable session-persistence backend — a second `SessionPersistence` provider (session persistence) satisfying the same contract as `dsh-session-persistence-jsonl` (append-only, contiguous-seq, lazy materialization, interrupted-turn close on load), expressed over `node:sqlite` rows instead of file bytes.

SessionsPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-session-projection

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Session-projection Service Definition and drive registry. It owns `ctx.sessionProjections`, the registry that drives every registered projection unit over committed session events and serves finished whole values to carriers, currently the api-proxy history tail page and `session/projection` push frame. A domain registers pure mathematics; the framework owns the drive. The session-projection RFC records the design rationale.

SessionsPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-session-projection-cache

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The persisted projection cache (`ctx.sessionProjectionCache`): durable checkpoints of every registered projection unit's state, one record per session on the domain data form (`session_projcache` domain — the shipped json backend lands it beside `workspace.json` under the configured storage root). Design authority: the session-projection RFC (persisted projection cache section).

SessionsPluginsConfigurableweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-session-stats

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Function plugin registering the `sessionStats` projection unit: whole-log conversation figures — turn/step counts and the LLM, tool, first-token, and decode wall times — folded from step boundaries, stream chunks, tool pairs, and assembled assistant messages, and served through the session-projection seam (registry snapshot, change feed, and every projection carrier: history tail page, `session/projection` push frames, session list rows). Clients render full-session figures that paging and compaction cannot change; the reference consumer is the web chat stats strip, whose window fold mirrors these field names as its no-unit fallback.

SessionsPluginsweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-session-telemetry-otel

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The OpenTelemetry backend for the telemetry seam — the only entry a deployment loads. Its `mode` decides whether the seam follows session events live, replays the canonical log only at recorded feedback, or keeps telemetry local. Uploading modes compose the OTel JS SDK as-is (`LoggerProvider` → `BatchLogRecordProcessor` → OTLP/HTTP log exporter) and map each handed-over record onto `logger.emit()`, under two instrumentation scopes: ledger records on `@deepseek-ai/dsh-session-sessionTelemetry-otel`, operational records on `@deepseek-ai/dsh-session-sessionTelemetry-otel/ops`. Resource identity contains `service.name`/`service.version` from `dsh-llm`'s `APP_IDENTITY` plus this package's anonymous `user.id` (`$DSH_HOME/.anonymous-user-id`, a random UUID created on first use and reset by deleting the file), carried once per export batch rather than per record.

SessionsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-session-title

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Log-backed session titles with an immediate deterministic fallback and one optional asynchronous provider. Every accepted revision is a log-only `session/title` event; `foldSessionTitle()` and `ctx.sessionTitle.get()` select the latest event and return its event seq and timestamp.

SessionsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-session-title-all-prompts-llm

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Optional `ctx.sessionTitle` provider that summarizes every eligible human message through `ctx.llm`. It registers the `all-prompts` cadence and starts a new revision after each new human prompt, using seeded history as well as child-session prompts. A newer revision aborts and supersedes older work; even a provider that ignores cancellation cannot commit stale output.

SessionsPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-session-title-first-prompt-llm

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Optional `ctx.sessionTitle` provider that summarizes the first eligible human message through `ctx.llm`. It registers the `first-prompt` cadence, runs automatically only when a fresh non-fork session first creates its fallback, and attributes the result to that message's exact seq. An automatic failure retains the fallback and is retried only through `ctx.sessionTitle.refresh()`.

SessionsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-settings-file

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

File-backed settings provider. One YAML or JSON document carries every namespace section; external edits hot-publish through `ctx.settings`, and `update()` re-reads the document under a writer lock before writing back atomically, preserving the user's YAML comments, any section owned by a plugin that is not currently loaded, and any on-disk change this process has not observed yet.

settingsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-bash-local

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Local Service Provider for the `@deepseek-ai/dsh-shell` executor seam over the `@deepseek-ai/dsh-subprocess` service: `LocalBashExecutor` spawns `bash -c <command>` per call as a managed process group through `ctx.subprocess`, and owns everything bash-shaped — command defaulting and caps, timeout/cancel classification, the model-friendly terminal environment, and the model-facing stdout/stderr merge for background reads. Group mechanics (bounded spill-backed output, credential scrub, kill escalation, disposal) are the subprocess service's.

RuntimePluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-bash-sandbox

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Sandbox-consuming Service Provider for the `@deepseek-ai/dsh-shell` executor seam. Load it **instead of** `@deepseek-ai/dsh-bash-local`, together with a `ctx.sandbox` provider (e.g. `@deepseek-ai/dsh-sandbox-local`) and a `ctx.sandboxPolicy` (which owns the default mode + workspace root, shared with the sandboxed filesystem) — no alternate tool plugin is needed; `dsh-tool-bash` detects the executor's `sandboxMode` capability and adds the escalation fields.

RuntimePluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-pwsh-local

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Local PowerShell Service Provider for the `@deepseek-ai/dsh-shell` executor seam over the `@deepseek-ai/dsh-subprocess` service: `PwshLocalExecutor` spawns `pwsh -NoLogo -NoProfile -NonInteractive -Command <command>` per call as a managed process through `ctx.subprocess`, and owns everything PowerShell-shaped — executable resolution, command defaulting and caps, timeout/cancel classification, the model-friendly terminal environment, and the model-facing stdout/stderr merge for background reads. Group mechanics (bounded spill-backed output, credential scrub, kill escalation, disposal) are the subprocess service's.

RuntimePluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-pwsh-sandbox

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Sandbox-consuming PowerShell implementation of the `ctx.shell` executor seam: every command runs as `pwsh -NoLogo -NoProfile -NonInteractive -Command <command>` **confined through `ctx.sandbox`**, with the selected mode, enforcement, and denial facts stamped on each settled result. The pwsh twin of `@deepseek-ai/dsh-bash-sandbox`, a call-for-call mirror per the pwsh executor and tool decision — the confinement substance is platform-neutral: on Windows the sandbox seam resolves to the ACL restricted-token runner chain (`@deepseek-ai/dsh-sandbox-windows-acl`), on Linux/macOS to bwrap/Landlock/Seatbelt.

RuntimePluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-shell-env

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The tool-independent shell environment plugin: owns the `ctx.shellEnv` registry of trusted, per-execution `DSH_*` variables that the model-facing shell tools (`dsh-tool-bash`, `dsh-tool-pwsh`) collect into every shell call's environment. Built-in shell facts (`DSH_HOME`, `DSH_SHELL=1`, `DSH_SESSION_ID`) are owned by the registry itself; other plugins register additional enumerable facts with effect-scoped disposal, and duplicate ownership or undeclared runtime keys fail loudly.

RuntimePluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-bash

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing `bash` tool registered over the `ctx.shell` executor seam. Foreground execution stays behind that seam; a background process handle is registered with the generic `ctx.jobs` runtime and controlled through `job_output`, `job_list`, and `job_kill` from `@deepseek-ai/dsh-tool-jobs`.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Tools
1
Availability
Web

dsh-tool-bash-persistent

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Model-facing `bash(command)` backed by one owner-scoped `ctx.terminals` shell. The package owns the tool contract and shell reuse; deployments select the PTY backend and sandbox policy.

Model toolsPluginsConfigurablepreset:minimal
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-tool-pwsh

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing `pwsh` tool registered over the `ctx.shell` executor seam. Intended for Windows compositions where a PowerShell executor (e.g. `@deepseek-ai/dsh-pwsh-local`) backs `ctx.shell`; the tool contract is PowerShell-dialect: native `C:\...` paths and `$env:NAME` variables. Behavior mirrors `dsh-tool-bash` call-for-call — foreground and `run_in_background` execution through the generic job runtime, the managed `DSH_*` environment through the shared `shell-env` registry, the sandbox denial rendering with the same-turn `sandbox_permissions` escalation surface, and the bash marker/truncation rendering story (a clean exit produces no marker).

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-skill

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Pure agent skill provider registry.

skillPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-skill-badge

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Optional bundled skill provider that contributes `dsh-badge` to `ctx.skills`. The skill supplies the official “powered by dsh” Markdown snippets and the packaged PNG for systems that cannot import a remote image reliably.

skillPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-skill-filesystem

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Local filesystem provider for the `ctx.skills` registry.

skillPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-skill

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing skill catalog and `skill` tool.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-spill-local

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **local-filesystem** implementation of the `@deepseek-ai/dsh-spill` storage seam. Registers as `ctx.spillStore` and persists a tool's oversized text to a private, session-scoped file; its locator is the file path and its retrieval hint tells the model to use `read` or `grep` on that path.

spillPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-spill-policy

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **tool-result spill policy**: a `tools/post-execute` transformer that keeps oversized plain-text tool results out of the model's context. When a final result exceeds `maxInlineBytes`, it saves the FULL text through `ctx.spillStore` and replaces the model-facing result with a bounded head/tail preview plus the backend's locator and retrieval hint.

spillPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-storage

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Storage hub (`ctx.storage`) for non-session data: a named backend registry plus mounted data-form facilities. The hub performs no IO itself — backends own media, and data forms own semantics. The storage family overview maps those packages; the domain KV storage Agent Note records the design rationale.

StoragePluginsweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-storage-domain

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Domain data form for the DeepSeek Harness storage hub: exposes the injectable `ctx.storageDomain` service and the matching `ctx.storage.domain` projection after every configured backend is registered. A domain is declared once with `defineDomain` (zod record schemas, `z.infer`-derived types), opened through `DomainFacility.open`, and served from authoritative in-memory state — reads are synchronous, writes serialize on one per-domain chain, reach durability on the routed backend first, then update memory and emit `domain/changed`. The opening consumer owns the handle's lifecycle and releases it with `Domain.close()` (idempotent; typically its own `ctx.effect` disposer); domains still open when the plugin unmounts are closed by the facility.

StoragePluginsConfigurableweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-storage-json

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

JSON backend for the storage hub: one human-readable `<unit>.json` file per unit under a configured root, registered as backend `json`. Design: domain KV storage Agent Note.

StoragePluginsConfigurableweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-storage-sqlite

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

SQLite backend for the storage hub: registers as backend `sqlite`, serving the `kv` facet over one `node:sqlite` database file (or `:memory:`). Design and trade-offs: domain KV storage Agent Note.

StoragePluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-subagent

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The subagent seam lets one agent delegate work to a child through a named provider. Callers use one service API (`ctx.subagents`); providers decide whether the child runs in this process, in another process, or through a future transport.

OrchestrationPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-subagent-acp

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The ACP provider runs each subagent in a fresh subprocess and drives it as an Agent Client Protocol client. It is the out-of-process alternative to spawn and fork: the child has its own runtime, session, model configuration, and tools.

OrchestrationPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-subagent-claude-code

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

This package registers the fixed `claude-code` subagent provider. Each accepted run invokes the official Claude Agent SDK in the delegating Session's workspace, resolves the native `claude` executable through the shared subprocess service, submits one self-contained text task, and returns only the final answer through the shared `dsh-subagent` result contract.

OrchestrationPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-subagent-codex

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

This package registers the fixed `codex` subagent provider. Each accepted run starts the official `codex app-server --stdio` command in the delegating Session's workspace, creates one ephemeral Codex thread, submits one self-contained text task, and returns only the final answer through the shared `dsh-subagent` result contract.

OrchestrationPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-subagent-dsh-sdk

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The SDK provider runs each subagent as a complete DeepSeek Harness runtime in a fresh subprocess, driven over stdio JSON-RPC through the TypeScript SDK client. It is the second out-of-process backend beside `subagent-acp`, differing in the wire and the child contract: the ACP backend drives any Agent Client Protocol agent; this backend drives specifically a harness SDK runtime (`dsh-jsonrpc-agent` bin or packaged executable), so the child is a full peer harness — own `cordis.yml`-decided composition, session persistence, model route, and tools.

OrchestrationPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-subagent-fork-in-process

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The fork provider creates an in-process child seeded with the parent's completed conversation turns. It shares all run mechanics with spawn; the session seed is the only behavioral difference.

OrchestrationPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-subagent-spawn-in-process

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The spawn provider creates a fresh child `Agent` in the current process. The child has its own session, sees no parent conversation history, and reuses the host's agent factory and LLM/tool services.

OrchestrationPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-subagent

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing delegation tool over one configured `ctx.subagents` provider. Changing the provider changes transport without changing the execution contract.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-subagent-control

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The optional, globally named `send_message`, `interrupt_agent`, and `list_agents` tools are thin adapters over `ctx.subagents`. Provider-bound `@deepseek-ai/dsh-tool-subagent` instances register distinct delegation tools per transport; this separately loaded package registers shared control tools once, so multiple delegation tools never register duplicate global controls. The root plugin registers `send_message` and `interrupt_agent` and requires only `subagents`; the separately loadable `./list-agents` plugin registers `list_agents` and declares `subagents` plus `agents` as load-time dependencies. Its catalog reads additionally require the session store and projection registry at call time, but no query service. A deployment can keep the root tools while omitting the list tool. No tool's presence determines whether a delegation tool starts continuable work. These tools own only the parent-to-child direction; the independently installed `@deepseek-ai/dsh-tool-subagent-report` owns the child-to-parent direction.

Model toolsPluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-subagent-report

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The optional child-scoped `report` tool is a thin adapter over `ctx.subagents.reportFrom()`. It gives every continuable in-process child a return channel to the Agent that started it, and installs the prompt section that instructs the child to use it. The package registers a continuable-child setup contribution instead of a global tool, so the tool and its guidance exist only inside those children. Roots, one-shot subagents, remote subagent providers, sibling scopes, and agentless tool execution never present or execute it. Installing this package grants only that child-scoped capability; the parent-to-child direction remains the independent `@deepseek-ai/dsh-tool-subagent-control`, and continuable mode depends on neither package.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-subprocess-local

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Local Service Provider for the `@deepseek-ai/dsh-subprocess` seam. `LocalSubprocessRuntime` resolves local executables, spawns ordinary detached process trees with explicit stdio, and implements terminal processes through `node-pty` plus platform process inspection. It has no config: every disposition, limit, terminal dimension, grace, and directory arrives from the calling capability seams (`dsh-bash-local`, `dsh-lsp-stdio`, and `dsh-terminal-bash`).

RuntimePluginsbaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-terminal

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Owner-scoped persistent PTY seam. `TerminalSessionService` registers as `ctx.terminals`, mints opaque session ids, routes creation through named backends, fences every operation to the exact live `Agent`, and awaits backend quiescence when that agent or the service disposes.

RuntimePluginspreset:minimal
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-terminal-bash

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Persistent shell backend for `ctx.terminals` over `ctx.subprocess.spawnTerminal`. It starts an interactive shell under the shared `ctx.sandboxPolicy`, retains bounded line-oriented output, and detects readiness while the subprocess provider owns PTY allocation, environment scrubbing, foreground process groups, signalling, and complete terminal-session cleanup. The same PTY backend therefore composes with local or remote execution-world providers.

RuntimePluginsConfigurablepreset:minimal
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-tool-terminal

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Six model-facing tools over `ctx.terminals`: `terminal_open`, `terminal_send`, `terminal_read`, `terminal_signal`, `terminal_close`, and `terminal_list`. Every operation requires the exact initiating `Agent`, so a model cannot address another agent's terminal even if it learns the id.

Model toolsPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-llm-replay

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

A replay LLM plugin for keyless snapshot tests. It yields model streams reconstructed from a recorded **session JSONL** fixture, so a test can boot the real agent against a fixed model transcript with no API key. With `providers` configured it registers a replay-only adapter whose catalog is available to scenarios that exercise model discovery; without `providers` it installs the catch-all `llm/stream` waterfall used by tests that do not need discovery.

test-supportPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-tool-todo

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing `todo_write` tool: the agent's whole task list, replaced wholesale on each call.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-typert-loader

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Node-only Loader integration for generated Typert artifacts. The plugin requires `ctx.loader` and `ctx.typert`; it does not provide the registry itself.

typertPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-web

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing web tool suite — `web_search` and `web_fetch` — over the web capability seam (`ctx.web`). It owns model-facing concerns only: tool names, JSON schemas, snake_case argument names, prompt sections, the result-count bound, result formatting, HTML→markdown presentation, and the UI presentation projection — `presentCall`, `presentResult` (a `card: 'web'` result card discriminated by `kind: 'search' | 'fetch'`), and the `output.presentationMeta` that carries the structured search sources or the fetch summary the lossy render text cannot (see the web-result-card Agent Note). All web access goes through `ctx.web`; this package never imports a concrete provider. Neither tool exposes a model-facing timeout — each tool's cooperative tool-call budget is declared here via config (`fetchTimeoutMs`/`searchTimeoutMs`, attached as `ToolDefinition.timeoutMs`) and enforced by `@deepseek-ai/dsh-tool-call-timeout-policy` (a `tools/execute` wrapper); each tool just forwards `exec.signal` to the seam.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-web

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The **`WebRuntime`** (`ctx.web`) defines WHAT web access the harness has — search the web, fetch a URL — over multiple providers, without binding the model contract to one vendor's API shape.

webPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-web-fetch-http

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

An anonymous public HTTP(S) `WebFetchProvider` for the harness web capability seam (`ctx.web`). It retrieves a concrete URL and returns a status code plus bounded decoded content.

webPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-web-search-deepseek

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

A DeepSeek-backed `WebSearchProvider` for the harness web capability seam (`ctx.web`). It calls DeepSeek's **Anthropic-compatible Messages API** (`POST {baseURL}/messages`) with the native `web_search_20250305` server tool enabled, and maps the structured `web_search_tool_result` blocks DeepSeek returns into the seam's normalized `WebSearchResult`.

webPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-web-search-exa

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

An Exa-backed `WebSearchProvider` for the harness web capability seam (`ctx.web`). It calls Exa's `POST /search` endpoint with highlight contents and maps the flat `results[]` into the seam's normalized `WebSearchResult`.

webPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-web-search-perplexity

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

A Perplexity-backed `WebSearchProvider` for the harness web capability seam (`ctx.web`). It calls Perplexity's OpenAI-compatible `POST /chat/completions` endpoint and maps the generated answer plus citations into the seam's normalized `WebSearchResult`.

webPluginsConfigurable
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Included in DSH

dsh-tool-ralph

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing `ralph` tool runs a fixed foreground workflow that gives one immutable objective to a sequence of fresh child agents. It demonstrates a specialized orchestration policy as an ordinary plugin over `ctx.workflowEngine` and `ctx.subagents`: no Ralph mode or fresh-agent loop is added to `agent-loop`, and the same-session goal domain remains independent. The Ralph Agent Note owns the policy and deferred work.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-tool-workflow

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

The model-facing **`workflow` tool**: run a JavaScript orchestration script that fans out subagents, and return the script's final value. This package owns the model-facing schema and run lifecycle over `ctx.workflowEngine`; script parsing, execution, caps, and cancellation live behind the seam, while the consumer retains ownership of the parent-facing schema and result envelope.

Model toolsPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-workflow-worker-thread

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

This package implements `WorkflowEngine` with one Node worker thread per run. The worker executes the orchestration script; child agents remain on the host and are reached through `ctx.subagents` over a typed host/worker protocol.

OrchestrationPluginsConfigurablebaseheadless
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-workspace

deepseek-ai/deepseek-harness
Included in DSH
Built-in source

Workspace entity registry (`ctx.workspaceRegistry`) for the DeepSeek Harness: durable workspace records, stable workspace order, and a newest-first candidate session index stored through the domain data form. Consumers see the `Workspace` interface; the entity implementation stays package-private.

workspacePluginsweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
Type
Plugins
Availability
Web

dsh-open-in-vscode

omdsh-dev/dsh-open-in-vscode
External Git bundle
Community · source reviewed

Adds an Open in VS Code action to each workspace row in the DSH web sidebar.

UI & clientBundlesConfigurableWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.5
UI
1
CLI installs

dsh-at-file

omdsh-dev/dsh-at-file
External Git bundle
Community · source reviewed

Adds Codex-style @file mentions to the web composer and expands selected workspace files into the model request.

interactionBundlesConfigurableWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
2
CLI installs

@dsh-external/dsh-automation

titanwings/dsh-automation
External Git bundle
Community · source reviewed

Runs recurring or one-shot coding tasks in fresh DSH agent sessions and manages them from the web UI or agent tools.

OrchestrationBundlesConfigurableWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.5
UI
1
CLI installs

dsh-notification

omdsh-dev/dsh-notification
External Git bundle
Community · source reviewed

Shows configurable browser desktop notifications when a DSH session finishes a turn.

UI & clientBundlesConfigurableWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

@omdsh-dev/dsh-genui

omdsh-dev/dsh-genui
External Git bundle
Community · source reviewed

Renders interactive components, charts, forms, and panels from model-produced dsh-ui fences inside assistant replies.

UI & clientBundlesWeb UIweb
HOSTCLIENTUITOOLDATAFLOW
Version
0.8.0
UI
2
CLI installs

dsh-cc-tui

ccch1mneyyy/dsh-cc-tui
External Git bundle
Community · source reviewed

A full-screen Claude Code-style terminal front door for DSH agents, mounted as a Cordis bundle.

interactionBundlesConfigurablecc-tui
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.6
Type
Bundles
CLI installs

dsh-conversation-cost

Ayaka157/dsh-conversation-cost
External Git bundle
Community · Topic auto-analysis

在 DSH 对话底部统计行实时显示 DeepSeek 用量费用(人民币/美元双币,含缓存命中与峰谷定价)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-provider-model-configurator

LiangYin233/dsh-provider-model-configurator
External Git bundle
Community · Topic auto-analysis

Provider Model Configurator for DeepSeek Harness: view, create, edit, copy and delete model entries (context window, max output, modalities, reasoning efforts) across your configured providers, with quick-fill from the pi-ai preset catalog.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.2
UI
1
CLI installs

@liustack/modlens

liustack/modlens
External Git bundle
Community · Topic auto-analysis

Plug-in vision for text-only LLMs, powered by the free Antigravity CLI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
3.15.0
UI
1
CLI installs

whale-girl

vlln/whale-girl
External Git bundle
Community · Topic auto-analysis

DSH Web GUI 内的桌面宠物(QQ 宠物形态)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-plugin-rdk

D-Robotics/dsh-plugin-rdk
External Git bundle
Community · Topic auto-analysis

D-Robotics RDK (地瓜机器人) integration for DeepSeek Harness: native RDK skill catalog, rdk_skills browser tool, and rdk_board_detect device detection.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-foxy-jumpscare

01Virex/dsh-foxy-jumpscare
External Git bundle
Community · Topic auto-analysis

Every second there is a 1-in-1000 chance that Foxy (Withered Foxy) from Five Nights at Freddy's 2 jumpscares you in the DeepSeek Harness web UI: a full-screen scare plus the iconic scream.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-context-provenance

030611/dsh-context-provenance
External Git bundle
Community · Topic auto-analysis

Observe-only provenance ledger over public DeepSeek Harness runtime evidence

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-plugin-greet

0lidaxiang/dsh-plugin-greet
External Git bundle
Community · Topic auto-analysis

A minimal greet tool plugin for DeepSeek Harness.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-vision-sidecar

121103qwq/dsh-vision-sidecar
External Git bundle
Community · Topic auto-analysis

Add no-key hosted or OpenAI-compatible vision to DeepSeek Harness while keeping the configured reasoning model

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs
External Git bundle
Community · Topic auto-analysis

夕小瑶 × DeepSeek Harness 黑鲸实验室主题皮肤

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
UI
1
CLI installs

dsh-mcp-manager

1a125/dsh-mcp-manager
External Git bundle
Community · Topic auto-analysis

DSH 全局 MCP 管理器:设置页「MCP 管理」——粘贴 JSON 一键添加 / 开关 / 删除全局 MCP 服务(统一写入宿主 cordis.patch.yml,跨项目生效)。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-hdc-bridge

1na-ko/dsh-hdc-bridge
External Git bundle
Community · Topic auto-analysis

DSH-native HarmonyOS dev-assistant plugin: hdc device bridge, official-first versioned API docs (SDK .d.ts + offline bundled Tier-1 knowledge), and an optional DevEco CLI backend for build/sign/lint.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.5.0
Type
Bundles
CLI installs

deepseek-harness-memory

2303572348/deepseek-harness-memory
External Git bundle
Community · Topic auto-analysis

Claude Code-style long-term memory for dsh: markdown memory files with frontmatter, MEMORY.md index, session-start prompt injection, and a memory tool.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs

dsh-vision

237229953-create/dsh-vision
External Git bundle
Community · Topic auto-analysis

给纯文本模型自动配眼:图片消息自动桥接为视觉模型描述(日志内表面替换,不改写人类转录),附带 see_image 追问工具

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs

dsh-bottom-stats

318197375/dsh-bottom-stats
External Git bundle
Community · Topic auto-analysis

DSH web 插件:对话底部统计栏增强 —— 全宽统计行(轮/步·耗时·吞吐·缓存·输入/输出 token,不再截断)+ 上下文占用进度条(系统/工具/消息三色分段与占比)。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-codex-import

918154429/dsh-codex-import
External Git bundle
Community · Topic auto-analysis

Read-only Codex setup compatibility scanner for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-usage-billing

940842546/dsh-usage-billing
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 用量与消费统计插件:按 2026-08-17 调价前后峰谷价格计费,含主界面汇总面板、会话级明细与图表

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-file-mentions

a903067276-rgb/dsh-file-mentions
External Git bundle
Community · Topic auto-analysis

Clickable file paths in DSH replies: open files/directories from inline paths (Codex-style), with a mentioned-files chip list as fallback

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-hud

a903067276-rgb/dsh-hud
External Git bundle
Community · Topic auto-analysis

A HUD status panel for DSH web: git status, MCP servers, skills, model and token usage in a floating side panel

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

@acnlabs/dsh-plugin-acn

acnlabs/dsh-plugin-acn
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: join ACN so this agent can discover, message, and collaborate with other agents. Defaults to the China region.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-plugin-acp

agentic-control-plane/dsh-acp-plugin
External Git bundle
Community · Topic auto-analysis

Agentic Control Plane for DeepSeek Harness — check every tool call against your policies before it runs, and keep a durable record of what was allowed and why.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-paddleocr-skills

Aidenwu0209/dsh-PaddleOCR-Skills
External Git bundle
Community · Topic auto-analysis

PaddleOCR text-recognition and document-parsing skills with native DeepSeek Harness tools and GUI configuration.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-unlimited-ocr-skill

Aidenwu0209/dsh-Unlimited-OCR-Skill
External Git bundle
Community · Topic auto-analysis

Unlimited-OCR long-document parsing with a native DeepSeek Harness tool and GUI configuration.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-operating-context

AIMFllyYS/dsh-operating-context
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness settings page: cap every configured model service to a working context window, clamped to what each model can actually hold

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-godot-skill

akira399/dsh-godot-skill
External Git bundle
Community · Topic auto-analysis

Godot Engine 4.x full-stack game development skill for DeepSeek Harness (DSH). A host plugin that registers the `godot-4-development` skill — covering renderers, 2D/3D graphics & physics, GDScript/C#, shaders, audio, input, navigation, networking, i18n, GUI, animation, file formats, mobile/XR and exporting — so any session can load it via the `skill` tool.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
Type
Bundles
CLI installs

dsh-plugin-publisher

akira399/dsh-plugin-publisher
External Git bundle
Community · Topic auto-analysis

DSH plugin development & GitHub publishing workflow plugin for DeepSeek Harness (DSH). Host: registers the `dsh-plugin-publishing` skill (enabled by default, opt-out), and bridges a GUI-entered GitHub PAT (fine-grained Personal Access Token) into the system Git credential manager. Client: a settings card on the 设置 → 插件配置 page with an enable toggle (persisted across refreshes), a write-only GitHub PAT field, and an embedded PAT creation tutorial with required permissions.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.3.3
UI
1
CLI installs

@omdsh-dev/dsh-drag-and-drop

AKIRACOD/dsh-drag-and-drop
External Git bundle
Community · Topic auto-analysis

Drag local files or folders into the DSH Web UI: resolve their real filesystem paths and attach them as removable chips above the composer — no uploads, no path text in the input, no 'images only' toast

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-media-skills

akqwpeter-prog/dsh-media-skills
External Git bundle
Community · Topic auto-analysis

Free image reading (vision) and image generation skills for DeepSeek Harness — Zhipu GLM-4V-Flash for reading, SiliconFlow Kolors for generation.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-projects

Alexis-fish/dsh-projects
External Git bundle
Community · Topic auto-analysis

Codex-style projects for DeepSeek Harness: isolated named work units with a persistent background/goal description, injected into every bound session (default on)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.0
Type
Bundles
CLI installs

dsh-quant-workspace

AllenCX/dsh-quant-workspace
External Git bundle
Community · Topic auto-analysis

Self-contained quant workspace for DeepSeek Harness: bundled Python engine (Yahoo data) with pluggable strategies — single-ticker signal card / backtest / review tools.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-external/dsh-session-pins

alooshxl/dsh-session-pins
External Git bundle
Community · Topic auto-analysis

Persistent pinned-session menu for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-memory

Amengclass/dsh-memory
External Git bundle
Community · Topic auto-analysis

A persistent, model-editable memory/notes store for DeepSeek Harness. Adds memory_set / memory_get / memory_delete / memory_search tools backed by the built-in storage domain (ctx.storageDomain) so facts survive across sessions.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

embedded-workbench

AmethystLuna/embedded-workbench
External Git bundle
Community · Topic auto-analysis

Embedded C/C++ firmware development toolbox — 4 agents, 7 skills covering FreeRTOS, ISR, NVM storage, Keil MDK, ARMCLANG, HardFault, state machines, architecture, and LVGL patterns. Ships a native DeepSeek Harness (dsh) bundle that injects the session-start gate into the first model step.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.6.0
Type
Bundles
CLI installs

logicprobe

AmethystLuna/logicprobe
External Git bundle
Community · Topic auto-analysis

Design document & plan claim verification — enumerate claims, verify against codebase facts, then escalate to logic-primitive verification (7 structural checks + 7 adversarial probes) for behavioral claims. Before/after model comparison for refactoring regression detection. Ships a native DeepSeek Harness (dsh) bundle that injects the claim-verification gate into the first model step.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-douyin

AnacondaKC/dsh-douyin
External Git bundle
Community · Topic auto-analysis

DSH WebUI 侧栏短视频插件:原生播放器、21 个系列选择、直链解析、滚轮历史回放与自动连播

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-plugin-gouden-leeuw-theme

Andy294753951/dsh-plugin-gouden-leeuw-theme
External Git bundle
Community · Topic auto-analysis

Unofficial Gouden Leeuw moonlit sanctuary theme for the DeepSeek Harness web UI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

@dsh-external/dsh-computer-use

Anionex/dsh-computer-use
External Git bundle
Community · Topic auto-analysis

Accessibility-first macOS Computer Use capability for DeepSeek Harness with stale-observation protection, app leases, confirmations, screenshots, and Web diagnostics

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@dsh-external/turn-rewind

Anionex/dsh-turn-rewind
External Git bundle
Community · Topic auto-analysis

Turn-level conversation and workspace rewind for DeepSeek Harness, powered by a persistent Change Ledger

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@dsh-external/dsh-vision-toolkit

Anionex/dsh-vision-toolkit
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness-native integration for agent-vision-toolkit: image Q&A, OCR, grounding, UI restoration, pixel diff, Artifacts, and Web UI.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.5
UI
1
CLI installs

@anweat/dsh-browser

anweat/dsh-browser
External Git bundle
Community · Topic auto-analysis

Self-contained browser runtime plugin for DeepSeek Harness (scoped @anweat) — bundles Playwright (chromium) and OpenCLI as plugin-local dependencies (with global-reuse fallback), exposes a `browser` service and interactive browser tools.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs

dsh-restart

anweat/dsh-restart
External Git bundle
Community · Topic auto-analysis

DSH 重启插件:可配置的重启方式(Node 原生 / 旧 PowerShell 适配)、重启后自动继续的提示词、可选看门狗自动拉起。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-web-search-pro

anweat/dsh-web-search-pro
External Git bundle
Community · Topic auto-analysis

Enhanced, persistent web search plugin for DeepSeek Harness — multi-engine routing (DeepSeek/Exa/DDG/Bing/Jina + GitHub/B站/YouTube/V2EX/小红书/Twitter/Reddit/RSS), SQLite+LRU cache, userscript-style extraction, and Playwright rendering.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.2
Type
Bundles
CLI installs

dsh-wordbox

arcmosin/dsh-wordbox
External Git bundle
Community · Topic auto-analysis

Common Word Box (常用词盒子) — DeepSeek Harness web client plugin: a persistent slide-up word/phrase panel next to the composer input, with global/current-project buckets and one-click insert. Works in every workspace.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-fail-logger

Areium/dsh-fail-logger
External Git bundle
Community · Topic auto-analysis

DSH 插件:全模式工具失败自动实录——把原生工具、PTC(Code Mode) run_code、代码内嵌工具调用的失败按错因去重计数,自动写入 skill 的机器维护区段,越用越少错。Auto-record tool failures from every execution mode into a skill's machine-maintained section (dedup + counts).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.1
Type
Bundles
CLI installs

dsh-turn-approval

arrow949/dsh-turn-approval
External Git bundle
Community · Topic auto-analysis

Codex-style "Allow for this task": turn-scoped, in-memory danger-full-access grants for DeepSeek Harness approvals. Ephemeral by design — nothing is persisted; grants die at turn/end, session/agent dispose, or restart. Client half shadows the official approval card via the conversation.composer slot — zero official-bundle changes.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-message-preview

asukasec/dsh-message-preview
External Git bundle
Community · Topic auto-analysis

Sidebar message-history preview for DeepSeek Harness web UI: lists the current session's sent messages with previews; click to jump the chat to that message.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-find-plugin

awesome-dsh-plugin/dsh-find-plugin
External Git bundle
Community · Topic auto-analysis

Find DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.5
Type
Bundles
CLI installs

dsh-llm-codebuddy

Axiaohungry/dsh-llm-codebuddy
External Git bundle
Community · Topic auto-analysis

使用 WorkBuddy API Key 为 DeepSeek Harness 接入 CodeBuddy 模型

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
1.3.4
Type
Bundles
CLI installs

dsh-openclaw-acp

BeAChanger/dsh-openclaw-acp
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness bundle that exposes a profile as an OpenClaw-compatible ACP agent.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs

@dsh-external/dsh-conv-export

beijingwahw/dsh-conv-export
External Git bundle
Community · Topic auto-analysis

dsh-conv-export(对话导出)— export the current DeepSeek Harness conversation as Markdown, PDF, or a long PNG image.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@dsh-external/dsh-conv-search

beijingwahw/dsh-conv-search
External Git bundle
Community · Topic auto-analysis

dsh-conv-search(对话内文本搜索)— in-conversation text search for DeepSeek Harness (Ctrl+F).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-dardar

benzhoupo/dsh-dardar
External Git bundle
Community · Topic auto-analysis

在 DSH 对话框模型选择框左侧显示当前 DeepSeek V4 Pro / V4 Flash 的 codexradar IQ,每 5 分钟刷新

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-effort-config

benzhoupo/dsh-effort-config
External Git bundle
Community · Topic auto-analysis

第三方模型思考努力度配置(DeepSeek Harness 插件):在设置页为模型声明 reasoningEfforts 档位、路由默认档位与 Anthropic token 预算,写入 llm-pi-ai 命名空间;档位调节复用原生模型框 Effort 面板。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-angelina-themes

bilbillm/deepseek-harness-angelina-themes
External Git bundle
Community · Topic auto-analysis

Angelina light and dark glass themes with restrained parallax for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@bill9109/dsh-101

bill9109/dsh-101
External Git bundle
Community · Topic auto-analysis

A document-first reader profile bundle for DeepSeek Harness: curated, ordered, searchable, translatable reading of DSH's own documentation over dsh-base + dsh-web-app.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.7
UI
1
CLI installs

@bill9109/dsh-conversation-share

bill9109/dsh-conversation-share
External Git bundle
Community · Topic auto-analysis

Select a range of a DeepSeek Harness conversation and share it as a branded PNG long image, with draggable magnetically snapping range markers.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

@omdsh-dev/dsh-drag-and-drop

bill9109/dsh-drag-and-drop
External Git bundle
Community · Topic auto-analysis

Drag local files into the DSH Web UI and insert their original filesystem paths without uploading or copying them

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.4
UI
1
CLI installs

@bill9109/dsh-web-ui-notify

bill9109/dsh-web-ui-notify
External Git bundle
Community · Topic auto-analysis

Desktop notifications for DeepSeek Harness approvals, questions, and turn completion — so neither DSH nor you end up waiting while you browse another tab.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
UI
1
CLI installs

@bill9109/dsh-webbridge

bill9109/dsh-webbridge
External Git bundle
Community · Topic auto-analysis

Kimi WebBridge host plugin for DeepSeek Harness: model tools that drive the user's REAL browser (navigate, snapshot, click, fill, evaluate, screenshot, network inspection, tab management) through the local kimi-webbridge daemon

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.2
Type
Bundles
CLI installs

dsh-mac-desktop

bitterSmilezzz/dsh-mac-desktop
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: open the Web GUI in a native macOS desktop window (WKWebView shell).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-model-selector

bitterSmilezzz/dsh-model-selector
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness web plugin: enhance the conversation model picker with provider-group collapse and model name search.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-skill-manager

bitterSmilezzz/dsh-skill-manager
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: manage user skills (~/.dsh/skills) via slash commands and the skill_manage tool.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

math-copy

Blackspace2/dsh-math-copy
External Git bundle
Community · Topic auto-analysis

Interactive LaTeX copy affordances for DeepSeek Harness math output

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-achievements

Blaczz/dsh-achievements
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness achievement & gamification plugin: cross-session badges for turns, tool calls, sessions and daily streaks, with a badge panel, unlock toasts and a ctx.achievements service. Zero core changes.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-deck-builder

Blaczz/dsh-deck-builder
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness tool plugin: convert Markdown into a self-contained HTML presentation (slides) with themes and keyboard navigation. Zero dependencies, no core changes.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-soundscape

Blaczz/dsh-soundscape
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness Web UI soundscape: turn-complete celebration (synthesized chime + confetti burst), blocked/approval alerts, error buzz, send clack and optional typing ambience. Zero audio assets, zero core changes, and a ctx.soundscape service other plugins can call.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-verify-gate

blueWhalei/dsh-verify-gate
External Git bundle
Community · Topic auto-analysis

Engineering verify gate for DeepSeek Harness: configured commands are authority; dirty receipts block conclude.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-calculator

bobcat848/dsh-calculator
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness web plugin: DeepSeek API spend (per session / all sessions) and account balance in the aside panel. Only deepseek-official routes are billed; third-party models are reported as unbilled.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.1.1
UI
1
CLI installs

dsh-acp-for-bitfun

bobleer/dsh-acp-for-bitfun
External Git bundle
Community · Topic auto-analysis

BitFun 与 DSH ACP 交互对接 插件: expose the BitFun agent (https://github.com/GCWing/BitFun) as a subagent provider inside DeepSeek Harness over the Agent Client Protocol

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-web-billing

bpc-oss/dsh-web-billing
External Git bundle
Community · Topic auto-analysis

RMB/USD token-billing plugin for DSH web: official-policy auto pricing (incl. peak/off-peak), per-message ledger, account balance, locale-driven currency display

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-quota-panel

brittanistrehlowll-oss/dsh-quota-panel
External Git bundle
Community · Topic auto-analysis

Provider quota/balance widget for the dsh web surface: collapsed glanceable capsule expanding into a Harness-native card, with server-side credential proxies for DeepSeek balance and OpenCode Zen Go usage windows.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
Type
Bundles
CLI installs

dsh-plugin-template

bugmaker2/dsh-plugin-template
External Git bundle
Community · Topic auto-analysis

Minimal Hello World plugin template for DeepSeek Harness.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-legal-dashboard

ByronLeeeee/dsh-legal-dashboard
External Git bundle
Community · Topic auto-analysis

Matter-aware legal workspace dashboard and document agent tools for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-toy

c3ll256/dsh-toy
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin for safety-bounded Buttplug/Intiface and MonsterParty toy control

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-ding

CAOGGL/dsh-ding
External Git bundle
Community · Topic auto-analysis

DSH 宿主插件:对话完成(Agent 回到 idle)时播放提示音并弹出 Windows 通知

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-llm-kiro

caopu16/dsh-llm-kiro
External Git bundle
Community · Topic auto-analysis

AWS Kiro (CodeWhisperer) adapter for the DeepSeek Harness LLM seam: Claude and open-weight models through one signed-in Kiro account

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-mcp-json

caopu16/dsh-mcp-json
External Git bundle
Community · Topic auto-analysis

Load MCP servers for the DeepSeek Harness from the mcp.json of Claude Code, Kiro, OpenCode, and Codex, with user and project layers and live reload

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@cabeta/dsh-image-theme

Carpon39038/dsh-image-theme
External Git bundle
Community · Topic auto-analysis

Warp-inspired image-to-theme plugin for the DeepSeek Harness web client.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

analyze-image-tool

CaseyTso/analyze_image_tool
External Git bundle
Community · Topic auto-analysis

A vision bridge for text-only DeepSeek Harness models: registers an `analyze_image` tool that answers questions about images via ANY OpenAI-compatible vision/multimodal endpoint (SiliconFlow, DashScope, Zhipu, OpenRouter, Ollama, ...).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-pomodoro

causebefore/dsh-pomodoro
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness Web 番茄钟插件:可配置专注与休息时长,提供侧栏入口和可拖动浮动面板

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-image-to-path

cesaryike/dsh-image-to-path
External Git bundle
Community · Topic auto-analysis

Let DSH text-only-model conversations accept dragged/pasted images: save them into the session workspace and insert the file path as text, bypassing the webui attachment channel that otherwise rejects image parts.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-mimo-agent-tools

ch1bug/dsh-mimo-agent-tools
External Git bundle
Community · Topic auto-analysis

Xiaomi MiMo search + multimodal tools for DSH agents: mimo_search/vision/audio/video/asr/tts.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-wsl-bridge

ch1bug/dsh-wsl-bridge
External Git bundle
Community · Topic auto-analysis

Windows access tools for WSL agents: win_ls/win_read/win_write/win_run/win_open/win_path/win_drives.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-tool-playwright

cheng-nan01/dsh-tool-playwright
External Git bundle
Community · Topic auto-analysis

Playwright browser automation tools for DeepSeek Harness — a native port of microsoft/playwright-mcp

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-session-cost

ChengChe106/dsh-session-cost
External Git bundle
Community · Topic auto-analysis

dsh plugin: show the estimated DeepSeek API cost of the current session in the web GUI stats strip (token usage × official pricing, peak/off-peak aware)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.2
UI
1
CLI installs

dsh-web-auto-open

ChengChe106/dsh-web-auto-open
External Git bundle
Community · Topic auto-analysis

dsh plugin: auto-open the default browser as soon as the dsh web GUI server is listening — one-step startup for `dsh web`

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs

@dsh-external/dsh-plugin-control

chenluyao680/dsh-plugin-control
External Git bundle
Community · Topic auto-analysis

Persistent enable and disable controls for the DSH Web plugin settings page

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-plugin-healthcheck

chenw2759-wq/dsh-plugin-healthcheck
External Git bundle
Community · Topic auto-analysis

DSH 插件健康检查:设置面板内的「插件检测」向导 — L0 静态检查(files 白名单/依赖声明/高危副本/依赖可解析/Windows 命令/lockfile 一致性)+ L1 配置组合检查 + L2 隔离试跑(子进程 boot 全树),发现即自动回滚(写 home patch 前弹确认),复杂问题打包预制提示词交给 agent 修复。铁律:只修改插件代码与配置层,严禁修改 harness 源码。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@chi-hong22/dsh-latexcp

Chi-hong22/dsh-latexcp
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness Web LaTeX formula copy helper: hover a formula to copy its TeX source as $...$ or \(...\), with inline/display delimiters auto-matched

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@chi-hong22/dsh-mdbox

Chi-hong22/dsh-mdbox
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness Web composer markdown editing helper: Shift+Enter list continuation with ordered-list auto-renumbering and Tab indent

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-open-with

ChuanTianML/dsh-open-with
External Git bundle
Community · Topic auto-analysis

Open registered DeepSeek Harness workspaces in detected or configured local editors from the Web GUI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-share

ChuanTianML/dsh-share
External Git bundle
Community · Topic auto-analysis

Privacy-first Markdown and self-contained HTML sharing for DeepSeek Harness sessions

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@chushixixin/dsh-harness-mcp-server

chushixixin/dsh-harness-mcp-server
External Git bundle
Community · Topic auto-analysis

Expose DeepSeek Harness agent capabilities as an MCP server, so an external MCP client (e.g. Hermes) can drive Harness to execute coding tasks. Hermes = brain, Harness = arms.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.5
Type
Bundles
CLI installs

dsh-report-studio

ciceroyang/dsh-report-studio
External Git bundle
Community · Topic auto-analysis

Turn a DeepSeek Harness session into deliverable work reports (daily/weekly/handoff/article) with verifiable receipts

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-superpowers

codeAnqiang-ma/dsh-superpowers
External Git bundle
Community · Topic auto-analysis

Superpowers (obra/superpowers) for DeepSeek Harness: the software-development methodology skills plus their session bootstrap, as a dsh plugin

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-ssh-remote

CrazyShout/dsh-ssh-remote
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness SSH remote workspaces: browse, read/write, run commands and open terminals on remote hosts, with connection status dots in the sidebar.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-plugin-browser

CriscolTheCoder/dsh-plugin-browser
External Git bundle
Community · Topic auto-analysis

Browse every plugin currently loaded in your DSH profile — agent tool + Web settings page with versions, sources, and load status. · 轻松浏览当前 DSH 已加载的全部插件:agent 工具 + Web 设置页(版本 / 来源 / 加载状态)。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-workspace-digest

cui-stack/dsh-workspace-digest
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness bundle: workspace_digest tool that lists files in a directory.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-landscape

cyanseek/dsh-landscape
External Git bundle
Community · Topic auto-analysis

Find DeepSeek Harness plugins, verify what they implement, and identify missing capabilities.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-bilibili

CZX2244/dsh-bilibili
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness tool plugin: analyze Bilibili videos — transcript first, subtitle-driven keyframes, model summaries

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.6.2
Type
Bundles
CLI installs

dsh-ego-browser

Da1dr1em/dsh-ego-browser
External Git bundle
Community · Topic auto-analysis

ego-browser (ego-lite Windows preview) agent tools for DeepSeek Harness: execute one JavaScript script per browser task in the ego-browser nodejs runtime (page / page.locator / browser / taskSpaces / fetch / cdp facades, console.log output channel), plus an API guide tool and a host status tool. Host-only cordis plugin, mounted via cordis.patch.yml + a profile node_modules link; no dsh source changes.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dskin

dancingmemory/dskin
External Git bundle
Community · Topic auto-analysis

DSKIN - cartoon pixel kittens for DeepSeek Harness (DSH): 1-4 random kittens spawn each session, they play together, you can pet them (hearts) and drag them around. Original UI untouched.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.13
UI
1
CLI installs

dsh-thinking-status-customizer

Dbi-Eshuh/dsh-thinking-status-customizer
External Git bundle
Community · Topic auto-analysis

A lifecycle-safe CSS-only customizer for the DSH Web thinking status.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-openapi

Degurechaff57/dsh-openapi
External Git bundle
Community · Topic auto-analysis

OpenAPI 3.x discovery and safe API calling tools for DeepSeek Harness.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-resume-plugin

Demogorgon314/dsh-resume-plugin
External Git bundle
Community · Topic auto-analysis

Resume Claude Code and Codex sessions as inert handoff context in DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@detpecca/dsh-llm-wiki

detpecca/dsh-llm-wiki
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin — manage an LLM-Wiki knowledge base from the agent: wiki_search / wiki_read / wiki_stats / wiki_validate / wiki_fix / wiki_errorbook / wiki_ingest

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
Type
Bundles
CLI installs

deepseek-harness-openai-oauth

DGPisces/deepseek-harness-openai-oauth
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness LLM provider for Codex models using managed ChatGPT OAuth

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs

dsh-layout-tools

dHR-P/dsh-layout-tools
External Git bundle
Community · Topic auto-analysis

DSH Web 三栏工作台:对话流只保留 AI 输出(工具调用/思考移入右侧面板),左侧工作区文件树带 git 状态徽标。Three-column workbench for the DSH web GUI: clean conversation flow, workspace file tree with git badges, and a live tool-call/think panel.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-usage-cost

Dino6021/dsh-usage-cost
External Git bundle
Community · Topic auto-analysis

DSH plugin: per-step timestamped API usage timeline (usageTimeline projection) + peak/off-peak cost readout for DeepSeek V4 Pro

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-refined

djh2203/dsh-refined
External Git bundle
Community · Topic auto-analysis

DeepSeek-Refined 移植:为 DeepSeek Harness 前端注入 5 套 Obsidian Border 风格主题与 Markdown 美化(部署级 Cordis 客户端插件)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-2origin

dongsheng123132/dsh-2origin
External Git bundle
Community · Topic auto-analysis

Evidence-first 2Origin state projection, diff and immutable freeze for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-action-parity

dongsheng123132/dsh-action-parity
External Git bundle
Community · Topic auto-analysis

Evidence that CLI, MCP and GUI bindings reach the same DeepSeek Harness action core

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-audit-bundle

dongsheng123132/dsh-audit-bundle
External Git bundle
Community · Topic auto-analysis

Content-addressed audit indexes across independent DeepSeek Harness evidence producers

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-benchmark

dongsheng123132/dsh-benchmark
External Git bundle
Community · Topic auto-analysis

Reproducible deterministic benchmark evidence for DSH tools and plugins

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-cache-stabilizer

dongsheng123132/dsh-cache-stabilizer
External Git bundle
Community · Topic auto-analysis

Cache-prefix stabilization and evidence-based cache metrics for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-cad-review

dongsheng123132/dsh-cad-review
External Git bundle
Community · Topic auto-analysis

Evidence-first ASCII DXF inspection and rule-backed CAD review for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-capability-receipt

dongsheng123132/dsh-capability-receipt
External Git bundle
Community · Topic auto-analysis

Content-addressed receipts for skills actually loaded by DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-cost

dongsheng123132/dsh-cost
External Git bundle
Community · Topic auto-analysis

Evidence-first token cost ledger and budget checks for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-lineage

dongsheng123132/dsh-lineage
External Git bundle
Community · Topic auto-analysis

Content-addressed data and action lineage evidence for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-narrative-ledger

dongsheng123132/dsh-narrative-ledger
External Git bundle
Community · Topic auto-analysis

Content-addressed timeline, canon and character-knowledge evidence for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-policy-drift-proof

dongsheng123132/dsh-policy-drift-proof
External Git bundle
Community · Topic auto-analysis

Content-addressed, value-redacted policy drift evidence for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-profile-lock-proof

dongsheng123132/dsh-profile-lock-proof
External Git bundle
Community · Topic auto-analysis

Content-addressed proof that a DeepSeek Harness profile declaration, pnpm lock and installed bundles agree

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-recovery-proof

dongsheng123132/dsh-recovery-proof
External Git bundle
Community · Topic auto-analysis

Read-only recovery drill evidence for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-release-proof

dongsheng123132/dsh-release-proof
External Git bundle
Community · Topic auto-analysis

Reproducible multi-source release evidence for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-surface-contract-proof

dongsheng123132/dsh-surface-contract-proof
External Git bundle
Community · Topic auto-analysis

Content-addressed conformance proof across recorded DSH ToolRuntime, MCP JSON-RPC and CLI JSON surfaces

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-switch

dongsheng123132/dsh-switch
External Git bundle
Community · Topic auto-analysis

Evidence-first model control plane for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-terminal

dongsheng123132/dsh-terminal
External Git bundle
Community · Topic auto-analysis

Persistent interactive terminal mode for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-windows-readiness-proof

dongsheng123132/dsh-windows-readiness-proof
External Git bundle
Community · Topic auto-analysis

Content-addressed readiness proof for sanitized DeepSeek Harness observations on managed Windows hosts

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-skillx

drowned-fish1/deepseek-harness-skillx
External Git bundle
Community · Topic auto-analysis

A safe external-skill discovery and adoption bundle for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-conversation-rewind

DTSFO/dsh-conversation-rewind
External Git bundle
Community · Topic auto-analysis

Append-only conversation rewind and safe message editing for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-model-modes

DTSFO/dsh-model-modes
External Git bundle
Community · Topic auto-analysis

Capability-aware reasoning controls and an honest Fast routing mode for the DeepSeek Harness web composer

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-browser

duyefeng/dsh-browser
External Git bundle
Community · Topic auto-analysis

Playwright-backed browser automation bundle for DeepSeek Harness — drives the installed Microsoft Edge directly (no CDP endpoint, no MCP server) and exposes browser_* tools to the agent.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

llm-adaptive

dylan121322/llm-adaptive
External Git bundle
Community · Topic auto-analysis

Adaptive model routing for DeepSeek Harness: per-request complexity classification with automatic provider routing.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-better-chat-history

echo-xianyu/dsh-better-chat-history
External Git bundle
Community · Topic auto-analysis

更好的聊天记录加载 —— DeepSeek Harness 会话 I/O 优化插件:读路径缓存(inspect/readFrom/list)消除切换会话时的 JSONL 全量冷读,投影缓存写合并减少磁盘写放大,延长 SSD 寿命。零依赖。

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-go-rotator

echo-xianyu/dsh-go-rotator
External Git bundle
Community · Topic auto-analysis

OpenCode Go subscription key rotator for DeepSeek Harness (dsh): per-request active-key routing, 429/quota cooldown rotation, cost accounting, dashboard quota scraping, and a web GUI settings section. Self-contained data dir under the plugin install folder — no machine-specific paths.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-tiered-approval

Elaina-real/dsh-tiered-approval
External Git bundle
Community · Topic auto-analysis

Tiered auto-review for DeepSeek Harness (DSH): static-rule safety net + LLM reviewer + human fallback. Auto-approve safe actions, auto-deny irreversible ones, ask a human for the rest. PURE VIBE CODING - not audited, use at your own risk.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-external/dsh-agentmemory

elementor-i/dsh-agentmemory
External Git bundle
Community · Topic auto-analysis

agentmemory for DeepSeek Harness (dsh): full memory_* tools, capture hooks, and context injection over the local REST server

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-plugin-mm-vision

Elohia/dsh-plugin-mm-vision
External Git bundle
Community · Topic auto-analysis

mm-vision (通感编码器) for DeepSeek Harness — give any text-only LLM the ability to see images via structured spatial text encoding. Registers the mm_vision tool.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-config-watch

Equinox7379/dsh-config-watch
External Git bundle
Community · Topic auto-analysis

Config drift detective for DSH: snapshots profile/plugin state on startup, records diffs, exposes a read-only history tool. Zero runtime deps, no custom events.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-daily-brief

Equinox7379/dsh-daily-brief
External Git bundle
Community · Topic auto-analysis

Daily activity brief for DSH: per-session turns/messages/tool-call stats across live sessions. Read-only.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-session-repair

Equinox7379/dsh-session-repair
External Git bundle
Community · Topic auto-analysis

Session log repair tool for DSH: scans zstd session logs for unknown event types and marks them ignorable with a compliant frame rewrite (backup included). Read-only scan by default.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-skill-search

Equinox7379/dsh-skill-search
External Git bundle
Community · Topic auto-analysis

On-demand skill search for DSH: keyword-search a shared skill library (e.g. ~/.codex/skills) with zero preloading. The AI reads only the matched SKILL.md.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-turn-watchdog

Equinox7379/dsh-turn-watchdog
External Git bundle
Community · Topic auto-analysis

Turn watchdog for DSH: detects live sessions whose turn looks stuck (no turn/end within a threshold), injects a quiet warning into the prompt context and exposes a status tool. Zero runtime deps, no custom events.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-update-radar

Equinox7379/dsh-update-radar
External Git bundle
Community · Topic auto-analysis

Update radar for DSH: compares every installed link: plugin against its git upstream and reports which are behind. Read-only, zero runtime deps.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

deepseek-plugin-store

Ericwong5021/deepseek-plugin-store
External Git bundle
Community · Topic auto-analysis

DeepSeek 插件商店开源数据源 · Open source data source for the DeepSeek Plugin Store

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-context-proxy

EvilIrving/dsh-context-proxy
External Git bundle
Community · Topic auto-analysis

Thin on-demand context-retrieval layer for DeepSeek Harness: context_query / context_slice / context_grep tools over the sessionQuery and subprocess seams.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-proof

EvilIrving/dsh-proof
External Git bundle
Community · Topic auto-analysis

Independent read-only acceptance layer for DeepSeek Harness: spawns a read-only verifier before each top-level turn closes and steers gaps back into the agent.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-repro

EvilIrving/dsh-repro
External Git bundle
Community · Topic auto-analysis

Export a minimal, secret-scrubbed, replayable problem bundle for DeepSeek Harness via the /repro command.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-plugin-verified-search

f0909172434/dsh-plugin-verified-search
External Git bundle
Community · Topic auto-analysis

Verified current-source search workflow for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-wallet

feibi-mochi/deepseek-harness-wallet
External Git bundle
Community · Topic auto-analysis

Balance monitoring, per-session spend tracking, token statistics, low-balance alerts, and an official recharge shortcut for DeepSeek Harness.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@fflow2023/dsh-usage-cost

fflow2023/dsh-usage-cost
External Git bundle
Community · Topic auto-analysis

Very lightweight DeepSeek Harness plugin: per-session + global API cost stats with peak/off-peak pricing (DeepSeek V4 Flash / V4 Pro)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-mcp-manager

fishlikewater/dsh-mcp-manager
External Git bundle
Community · Topic auto-analysis

MCP 服务器管理器:在 DSH 设置页配置 MCP 服务器,宿主侧按配置热挂载/卸载 mcp-client 实例

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-skill-viewer

Fishquito7/dsh-skill-viewer
External Git bundle
Community · Topic auto-analysis

dsh skill viewer: manage skills from the DSH web UI settings panel (hot enable/disable, delete, add) plus a CLI.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.2
UI
1
CLI installs

deepjit

fly3366/DeepJIT
External Git bundle
Community · Topic auto-analysis

DeepJIT: JIT-compile repeated agent workflows into skills and flow templates for deepseek-harness (dsh)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-memory-vault

flymysql/dsh-memory
External Git bundle
Community · Topic auto-analysis

Cross-session memory vault for DeepSeek Harness: remember / recall / forget tools, per-turn prompt injection, and a browser management page.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.5
UI
1
CLI installs

dsh-voice-input

forrestahha/dsh-voice-input
External Git bundle
Community · Topic auto-analysis

Voice-to-text input plugin for the DeepSeek Harness Web UI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-agent-replay

forrestsweet/dsh-agent-replay
External Git bundle
Community · Topic auto-analysis

Replay and share redacted DeepSeek Harness sessions as standalone HTML

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-session-cleaner

fountunt/dsh-session-cleaner
External Git bundle
Community · Topic auto-analysis

Delete DeepSeek Harness sessions from the running web runtime: live store detach, workspace records, and on-disk artifacts.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.3
UI
1
CLI installs

dsh-codex-connect

franksong2702/dsh-codex-connect
External Git bundle
Community · Topic auto-analysis

ChatGPT OAuth and Codex models for DeepSeek Harness.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-alpha.4.5
UI
1
CLI installs

dsh-blocker-notify

Frost-Reed/blocker-notify
External Git bundle
Community · Topic auto-analysis

Real-time attention alerts for DeepSeek Harness: a global banner plus flashing workspace entries when the agent is blocked (approval request / sandbox denial), with an audible chime and OS-level notifications for new blockers.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs

deepseek-eyes

fryghost/deepseek-eyes
External Git bundle
Community · Topic auto-analysis

deepseek-eyes:给 DeepSeek Harness 的纯文本模型装上眼睛——把粘贴的图片经 OpenAI 兼容视觉 API 转成文字描述,再转发给真实的文本模型(Give text-only models in DeepSeek Harness eyes: describe pasted images via an OpenAI-compatible vision API, then forward to the real provider. Not affiliated with DeepSeek.)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@dsh-external/dsh-sentinel

fuhefei/dsh-sentinel
External Git bundle
Community · Topic auto-analysis

DSH 哨兵:条件驱动的 agent 唤醒系统——文件/进程/端口/命令传感器,订阅存为会话事件,重启自动复活;每个订阅、每次触发对用户完全可见

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.6.0
UI
1
CLI installs

dsh-agent-message

GengDaPeng/dsh-agent-message
External Git bundle
Community · Topic auto-analysis

跨会话 Agent 通信:让 DeepSeek Harness 里不同的 Agent 会话互相收发消息。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.4.0
UI
1
CLI installs

sage-mem

gezi-wen/sage-mem
External Git bundle
Community · Topic auto-analysis

Memory plugin for DeepSeek Harness (DSH) — cross-session memory with Chinese-first full-text search

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs

sage-meta

gezi-wen/sage-meta
External Git bundle
Community · Topic auto-analysis

Sage meta plugin: delivery self-check before the agent finishes a turn

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

sage-persona

gezi-wen/sage-persona
External Git bundle
Community · Topic auto-analysis

Persona plugin for DeepSeek Harness (DSH) — injects a ready-made identity and working principles into the system prompt

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.2
Type
Bundles
CLI installs

dsh-balance-meter

Ghost011118/dsh-balance-meter
External Git bundle
Community · Topic auto-analysis

DeepSeek account balance and usage readout for the dsh web GUI: queries the official Get User Balance endpoint and shows current remaining balance and spend on the page.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-workspace-inspector

GIGHT111/dsh-workspace-inspector
External Git bundle
Community · Topic auto-analysis

右侧面板插件:展示当前会话 Token 用量(tokenUsage/contextPressure 投影)与工作区文件树(host HTTP 路由 + client 面板)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

context-vista

GooodWei/context-vista
External Git bundle
Community · Topic auto-analysis

A live context-window donut for DeepSeek Harness: token usage, compaction savings, and cost at a glance

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-context-lens

gordonlu/dsh-context-lens
External Git bundle
Community · Topic auto-analysis

Request Context Profiler for DeepSeek Harness — see what changed between model requests, and how cache reuse changed with it.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.2
UI
1
CLI installs

dsh-search-mcp

gxpppp/dsh-search-mcp
External Git bundle
Community · Topic auto-analysis

Replace dsh's built-in web search with search MCP servers (Tavily / Brave / Exa / Perplexity / DuckDuckGo / custom), configured from the web Settings page. When this plugin is enabled the built-in DeepSeek search provider is disabled.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-model-provider-label

haiyoucuv/dsh-model-provider-label
External Git bundle
Community · Topic auto-analysis

DSH web plugin: show the provider display name next to the model name in the composer model seat, so identical model names from different providers are distinguishable. / 在对话框模型选择器同时显示 provider 显示名与模型名,区分不同 provider 下的同名模型。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-cost-meter

Han-1413141/dsh-cost-meter
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 会话费用统计插件:本会话成本、当日费用、历史记录与官方价格同步,界面中英双语。Session cost tracking plugin for DeepSeek Harness: per-conversation cost, daily totals, history and official price sync, with a bilingual (Chinese/English) UI.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.2.0
UI
1
CLI installs

dsh-sticky-disclosure

Han-1413141/dsh-sticky-disclosure
External Git bundle
Community · Topic auto-analysis

DSH Web client plugin: collapse every expanded collapsible section in the conversation (Think / tool cards / command cards...) in one click, with a customizable hotkey.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

focal-dsh

Haoran2099/dsh-focal
External Git bundle
Community · Topic auto-analysis

Task-isolated, privacy-first memory for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-archived-sessions

hashdiana/dsh-archived-sessions
External Git bundle
Community · Topic auto-analysis

在设置面板中新增“已归档会话”分区:列出被归档的会话(默认在侧边栏不可见),点击即可重新打开

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-token-usage

hashdiana/dsh-token-usage
External Git bundle
Community · Topic auto-analysis

更清晰美观的会话 Token 用量条:上下文占用、输入/输出/缓存分解、吞吐与首字延迟,取代默认的纯文本 stats 行

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-task-console

He2way/dsh-task-console
External Git bundle
Community · Topic auto-analysis

DSH client plugin — flip to the back of the page for a floating glass task console: live background jobs, subagents, session overview and workspace of the current session, with mouse-draggable cards.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-emoji

hellodigua/dsh-emoji
External Git bundle
Community · Topic auto-analysis

Tiny semantic inline emoji for DSH Agent responses

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

@dsh-external/dsh-share

hellodigua/dsh-share
External Git bundle
Community · Topic auto-analysis

Share a DSH conversation turn as a PNG image.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-qrcode

hellosky983/dsh-qrcode
External Git bundle
Community · Topic auto-analysis

Offline QR code generator for DeepSeek Harness (dsh): pure-JS, no network, no shell, cross-platform. Model tools (qrcode + barcode) with SVG/PNG/ASCII output.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-skillradar

hellosky983/dsh-skillradar
External Git bundle
Community · Topic auto-analysis

Skill Radar for DeepSeek Harness (dsh): scan the current session's visible skills, score their relevance against the recent conversation, and recommend which skill to load. Model tool + optional interactive panel.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-mcp-manager

HenC49/dsh-mcp-manager
External Git bundle
Community · Topic auto-analysis

DSH plugin bundle: runtime MCP server management — add/remove/enable/reload MCP servers through agent tools, persisted to a JSON registry, no restart or cordis.yml edits required. Bridged tools use the same mcp__<server>__<tool> naming contract as @deepseek-ai/dsh-mcp-client.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-web-search-responses

herminger/dsh-web-search-responses
External Git bundle
Community · Topic auto-analysis

DSH ctx.web search provider that reuses the conversation model's OpenAI Responses web_search tool

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-synbio

Hongcheng-LI/dsh-synbio
External Git bundle
Community · Topic auto-analysis

Synthetic biology research tools for DeepSeek Harness: literature search via Europe PMC, pathways/enzymes/compounds via KEGG, and protein structures via RCSB PDB.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-hotswap

HongzhongL/dsh-hotswap
External Git bundle
Community · Topic auto-analysis

Runtime hot-swap for DeepSeek Harness: hot enable/disable/restart Cordis plugins and auto hot-mount bundles from the Web GUI — no dsh restart.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-sonar

Howe829/dsh-sonar
External Git bundle
Community · Topic auto-analysis

A draggable deep-sea token and context dashboard for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-client-auto-continue

HsiangNianian/dsh-auto-continue
External Git bundle
Community · Topic auto-analysis

DSH Web UI plugin: automatically sends "继续" (continue) when a request is interrupted by network errors or other non-human causes

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.2
UI
1
CLI installs

dsh-codex-provider

Hu9956/dsh-codex-provider
External Git bundle
Community · Topic auto-analysis

OpenAI Codex provider for DeepSeek Harness with device-code OAuth, Codex CLI import, token refresh, and a web settings panel.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-better-archive

huahai0202/dsh-better-archive
External Git bundle
Community · Topic auto-analysis

Sidebar Archived entry + archived-session panel with unarchive and delete, for the DeepSeek Harness web GUI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@huanlin/dsh-plugin-anti-ads

HuanLinOTO/dsh-plugin-anti-ads
External Git bundle
Community · Topic auto-analysis

DSH ad-suppression plugin: writes dsh-ads's own settings key to all-false, broadcasts its retire event, scrubs its portal from the DOM, and short-circuits its dynamic-tier fetch. Four layers, all client-side, all removable from a settings page of its own.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

@huanlin/dsh-plugin-auto-blame

HuanLinOTO/dsh-plugin-auto-blame
External Git bundle
Community · Topic auto-analysis

Auto-blame: when a turn closes, asks an LLM for three cynical follow-up prompts and shows them as click-to-send bubbles above the composer. Host-gated master toggle in the settings page.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@huanlin/dsh-plugin-d399

HuanLinOTO/dsh-plugin-d399
External Git bundle
Community · Topic auto-analysis

贪玩蓝鲸 — 模型生成时右下角弹出小游戏菜单(wordle / 消消乐,可拓展游戏注册表)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@huanlin/dsh-plugin-interpreters

HuanLinOTO/dsh-plugin-interpreters
External Git bundle
Community · Topic auto-analysis

Exposes run_python and run_node tools with configurable interpreter paths; settings card (via /interpreters/api HTTP route) lets users set the executable locations.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@huanlin/dsh-plugin-mineru

HuanLinOTO/dsh-plugin-mineru
External Git bundle
Community · Topic auto-analysis

DSH plugin exposing MinerU document parsing tools to the model, with a web UI settings page for the API base URL.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.2
UI
1
CLI installs

@huanlin/dsh-plugin-sleep

HuanLinOTO/dsh-plugin-sleep
External Git bundle
Community · Topic auto-analysis

DSH plugin exposing a single `sleep` tool that lets the model pause for a configurable number of milliseconds, honoring cancellation.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@huanlin/dsh-plugin-spur

HuanLinOTO/dsh-plugin-spur
External Git bundle
Community · Topic auto-analysis

A braided whip (辫子) hanging in the chat-flow — grab the tip and swing to send "go work!" to the agent.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@huanlin/dsh-plugin-ya-workspace-sidebar

HuanLinOTO/dsh-plugin-ya-workspace-sidebar
External Git bundle
Community · Topic auto-analysis

Two-level DSH workspace sidebar with global recent sessions and breadcrumb navigation.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@huanlin/dsh-plugin-yet-another-subagent

HuanLinOTO/dsh-plugin-yet-another-subagent
External Git bundle
Community · Topic auto-analysis

Configurable subagent profiles with web UI settings, real-time toolcall/token display, and click-to-navigate child sessions.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-her-eyes

huashenglian/dsh-her-eyes
External Git bundle
Community · Topic auto-analysis

Application-level Vision-Language-Model (VLM) analyzer for DeepSeek Harness: analyze_image tool with primary/backup OpenAI-compatible endpoints, automatic failover, and an auto-saving web settings page.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.2.0
UI
1
CLI installs

dsh-plugin-session-import

huguangyu666/dsh-plugin-session-import
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 插件:导入 claude-code / codex / reasonix / zcode 的聊天记录为 dsh 会话(含工作区绑定)。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-api-usage-bar

hurry060215-tech/dsh-api-usage-bar
External Git bundle
Community · Topic auto-analysis

Cache-aware API token usage bar for the DeepSeek Harness Web UI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-mcp-manager

hyqhyq3/dsh-mcp-manager
External Git bundle
Community · Topic auto-analysis

MCP server manager for DeepSeek Harness: Settings → MCP page for HTTP (OAuth PKCE + dynamic client registration, or static token) and local stdio servers, with auto tool registration as mcp__<name>__*

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs

@dsh-external/workflow

icetomoyo/dsh_workflow
External Git bundle
Community · Topic auto-analysis

KodaX-parity dynamic workflow harness for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.2
Type
Bundles
CLI installs

dsh-plugin-finder

ihuajiu/dsh-plugin-finder
External Git bundle
Community · Topic auto-analysis

Find DeepSeek Harness plugins from the dsh.so registry — like find-skill, but for dsh plugins.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-mimo-vision-hint

Isekai-Mfu/dsh-mimo-vision-hint
External Git bundle
Community · Topic auto-analysis

DSH plugin: prompt the agent to dispatch image recognition to an opencode-go mimo-v2.5 subagent

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.1
Type
Bundles
CLI installs

deepseek-git-guide

IT-coder-Yy/deepseek-git-guide
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness Cordis 插件(静态 npm 包形态):把用户对 git 操作的自然语言描述,转成最简洁安全的命令建议与解释,并让用户在「直接执行 / 手动执行」之间选择。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

remielle-dsh

jackuh105/remielle-dsh-plugin
External Git bundle
Community · Topic auto-analysis

Remielle desktop pet for DeepSeek Harness — session events drive the pet's animations: working, expecting, celebrating, waiting.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

forkprobe-dsh

Jayden-X-L/forkprobe
External Git bundle
Community · Topic auto-analysis

Native DeepSeek Harness plugin for comparing AI Skills on the same task and choosing a winner from a local ForkProbe report.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.10.0
Type
Bundles
CLI installs

@jadynchou/dsh-codex-agent-bridge

je00/dsh-codex-agent-bridge
External Git bundle
Community · Topic auto-analysis

Connect DeepSeek Harness agents to authenticated Codex App Server sessions

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-balance-monitor

jelly-000/dsh-balance-monitor
External Git bundle
Community · Topic auto-analysis

DeepSeek account balance, remaining-ratio bar, and today's spend in the dsh sidebar footer.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.2
UI
1
CLI installs

@dsh-cowork/chatnode-wechat

Jesse-njx/dsh-chatnode-wechat
External Git bundle
Community · Topic auto-analysis

Chat with, monitor, and approve your DSH agents from WeChat — an iLink gateway + conversation node bundle for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-routines/bundle

Jesse-njx/dsh-routines
External Git bundle
Community · Topic auto-analysis

dsh-routines — scheduled agents for DSH: run a prompt on a cron, get the digest where you already are (file digests, chatnode delivery, unattended-safe)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-enhance

jiangnanquan/dsh-ux
External Git bundle
Community · Topic auto-analysis

DSH web 界面增强:Solarized 浅色主题 + Maple Mono 字体、紧凑对话布局、思考/工具链折叠胶囊、官方余额 + 本轮成本 + 用量图表

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

@jiesou/dsh-stream-rules

jiesou/dsh-stream-rules
External Git bundle
Community · Topic auto-analysis

Inject rules when needed, without wasting context. DSH port of opencode-stream-rules.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.6
Type
Bundles
CLI installs

dsh-survey

jinhuang712/dsh-survey
External Git bundle
Community · Topic auto-analysis

Questionnaire-style survey plugin for DeepSeek Harness: the do_a_survey tool asks 1-10+ questions at once (single/multi/yes-no/compare/open types) in four presentation modes (compact/inline/overlay/grid), with per-question skip, full Markdown & color rendering, and a two-column recap after submit. Bundle form resident in the Web profile; companion skill ships a dynamic-plugin fallback recipe.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-web-search-tokenrhythm

Joeytisaly/dsh-web-search-tokenrhythm
External Git bundle
Community · Topic auto-analysis

Token Rhythm (OpenAI Responses web_search) search provider for the DeepSeek Harness web capability seam (ctx.web)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.6
Type
Bundles
CLI installs

dsh-deepseek-billing

Jolly-J/dsh-deepseek-billing
External Git bundle
Community · Topic auto-analysis

DSH WebUI 插件:侧边栏 DeepSeek 账户余额显示与按会话费用估算

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.5
UI
1
CLI installs

@jorinyang/dsh-doctor

jorinyang/dsh-doctor
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness diagnostic and repair plugin: dsh_doctor (read-only diagnosis) and dsh_doctor_fix (graded safe/deps/full repair) for startup crashes, broken profiles, and config errors.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-token-panel

juhe291/dsh-token-panel
External Git bundle
Community · Topic auto-analysis

Real-time token consumption HUD for DeepSeek Harness: a sleek tech-style panel showing live token usage, context pressure and cost estimates across sessions

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
UI
1
CLI installs

dsh-reasoning-settings

JuneLearn/dsh-reasoning-settings
External Git bundle
Community · Topic auto-analysis

Reasoning effort settings and per-call subagent model routing for DeepSeek Harness custom providers

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs

dsh-everything-oauth

kam74515-boop/dsh-everything-oauth
External Git bundle
Community · Topic auto-analysis

Import local Codex / Grok / Claude / Copilot / Gemini login state into DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-xueqiu

kangjinghang/dsh-xueqiu
External Git bundle
Community · Topic auto-analysis

雪球 mini 行情面板 — DeepSeek Harness 免登录 A股/港美股实时行情、K线(蜡烛/成交量/均线)、分时图、热榜、搜索、7x24 快讯、热议用户。可拖拽悬浮面板,交易时段智能刷新。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.2.1
UI
1
CLI installs

@linxin666/dsh-chat-link

KeFan-J/dsh-chat-link
External Git bundle
Community · Topic auto-analysis

Peer-to-peer conversation linking for DeepSeek Harness (DSH): sessions message each other through a shared message board (~/.dsh/chat-link/), with agent wake-up delivery (agent.send), chat_link_* model tools, and a sidebar inbox UI. Hot-pluggable — mounted via dsh plugin add link:<path> + the profile bundle layer, no dsh source changes.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-token-usage

KeFan-J/dsh-token-usage
External Git bundle
Community · Topic auto-analysis

Token usage & cost dashboard for DeepSeek Harness (DSH): today/week/month token totals, real-time cost estimation from DeepSeek's official pricing, thinking/task durations, per-model & per-project rankings, and a task top-3 leaderboard. Hot-pluggable — mounted via dsh plugin add link:<path> + the profile bundle layer, no dsh source changes.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-deepseek-status

KekuKase/dsh-deepseek-status
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: live DeepSeek official service status (status.deepseek.com) in the sidebar — overall status, component statuses, incidents, and uptime.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-pin-recall

kerwin2046/dsh-pin-recall
External Git bundle
Community · Topic auto-analysis

Pin tool results or assistant replies, then recall them into the next model turn via /pin /pins /recall /unpin and Web card actions.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-virtual-workspace

KevinWen7415/dsh-virtual-workspace
External Git bundle
Community · Topic auto-analysis

Virtual Workspaces for DeepSeek Harness (DSH): groups multiple project directories for cross-project read/search/write, with the vws agent tool, prompt injection, built-in workspace-list mirroring, the sidebar add-workspace drawer UI, and sandbox-consistent escalation. Installable as an official bundle (dsh plugin add github:KevinWen7415/dsh-virtual-workspace) or as a dynamic Cordis Plugin (src/host.js + src/client.js).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.2.2
UI
1
CLI installs

dsh-mac-vision

Kevoyuan/dsh-mac-vision
External Git bundle
Community · Topic auto-analysis

Native macOS OCR and Vision tools for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-skill-loader

kezboardpj/dsh-skill-loader
External Git bundle
Community · Topic auto-analysis

Per-conversation skill catalog picker for DeepSeek Harness (dsh): choose which skills are loaded (载入技能清单) into each conversation on the new-conversation page; unselected skills are unavailable in that conversation.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-system-proxy

khiqwq/dsh-system-proxy
External Git bundle
Community · Topic auto-analysis

DSH host plugin — smart outbound HTTP(S) routing: named proxies (http/https/socks4/4a/5/5h), per-host/provider/plugin rules, direct-first fallback with health memory (global fetch + node http/https).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs

dsh-skin

KinGao294/dsh-skin
External Git bundle
Community · Topic auto-analysis

Skin switcher + custom wallpaper for DeepSeek Harness: curated --dsw-alias-* palettes, translucent wallpaper with opacity/blur controls, and durable per-user persistence (like Codex themes)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

claude2dsh

kirkchinese/Claudecode--DSH
External Git bundle
Community · Topic auto-analysis

Migrate Claude Code user data — conversations, skills, plugins, memory and instructions — into DeepSeek Harness (DSH): resumable native sessions, workspace grouping, agent presets, context archive

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-compaction-instant

KitDoesIt/dsh-compaction-instant
External Git bundle
Community · Topic auto-analysis

VCC-style instant, near-lossless deterministic compaction engine for the DeepSeek Harness — a drop-in replacement for @deepseek-ai/dsh-compaction-basic

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.4
UI
1
CLI installs

powercontext-dsh

knqiufan/powercontext-dsh
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin that connects to a PowerContext Server over HTTP for recall, memory, handoff, experience, and skills.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.2
Type
Bundles
CLI installs

dsh-mobile-gui-agent

kunjinkao-os/dsh-mobile-gui-agent
External Git bundle
Community · Topic auto-analysis

Android Mobile GUI Agent plugin for DeepSeek Harness with ADB control, verified iterative actions, approval, and a Web mobile view

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-file-uploads

l541402398/dsh-file-uploads
External Git bundle
Community · Topic auto-analysis

Upload arbitrary local files from the DeepSeek Harness Web composer, attach them to prompts, and manage stored uploads in Settings.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-top-leaderboard

l541402398/dsh-top-leaderboard
External Git bundle
Community · Topic auto-analysis

DSH Web 插件热度榜单:侧栏「榜单」按钮 + 弹窗排行 + 一键安装(复用官方 Profile/Bundle 契约)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-vision

lakeofsky347/dsh-vision
External Git bundle
Community · Topic auto-analysis

Vision Bridge plugin for the DeepSeek Harness: routes attached images to a vision-capable model (default xiaomi/mimo-v2-omni) and feeds the text description back to text-only routed models such as DeepSeek.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@lbryany/dsh-codebuddy

Lbryany/dsh-codebuddy
External Git bundle
Community · Topic auto-analysis

CodeBuddy OAuth, dynamic models, and reasoning controls for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-think-any-lang

lco117/dsh-think-any-lang
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: a General-settings selector that chooses which language the model reasons in, via a system-prompt section.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-qwen-voice

leaveimagination/dsh-qwen-voice
External Git bundle
Community · Topic auto-analysis

Voice control and multi-session task dispatch for DeepSeek Harness, powered by Qwen Audio Agent

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

awesome-dsh-background-plugin

leavestring/awesome-dsh-background-plugin
External Git bundle
Community · Topic auto-analysis

DSH Web background settings plugin with local image upload and live preview.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.7
UI
1
CLI installs

@dsh-external/dsh-split-panes

lehhair/dsh-split-panes
External Git bundle
Community · Topic auto-analysis

DSH split-pane conversation plugin: PiUI-style multi-pane conversation surface — split/stack panes, per-pane sessions, sidebar session drag & drop, single-row fused header. Needs the renderer session-scope capability (see README).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-lan-access

Leon0555/dsh-lan-access
External Git bundle
Community · Topic auto-analysis

DSH plugin: bind the Web GUI to 0.0.0.0 for LAN access and polyfill crypto.randomUUID for non-secure (LAN HTTP) contexts. Trusted networks only.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-community/dsh-ops-kit

LeslieWylie/dsh-ops-kit
External Git bundle
Community · Topic auto-analysis

A reusable DeepSeek Harness bundle for evidence-driven memory, orchestration, benchmark operations, repository audits, and plugin release workflows.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-external/dsh-minigames

lhh010/dsh-minigames
External Git bundle
Community · Topic auto-analysis

DSH Web UI 右侧小游戏面板:18 款离线小游戏,可扩展游戏注册表。等待模型回复或修 bug 时的摸鱼神器。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.2
UI
1
CLI installs

@lhmd/dsh-director-toolkit

lhmd/dsh-director-toolkit
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin that turns a 3D idea into a shootable scene brief and publish-ready showcase copy.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@lhmd/dsh-promotion-toolkit

lhmd/dsh-promotion-toolkit
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness-native publicity toolkit: turn any long-form source into a source-grounded, platform-native promotion matrix.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-self-evolution

Lhy723/dsh-self-evolution
External Git bundle
Community · Topic auto-analysis

Benchmark-driven self-evolution plugin for DeepSeek Harness: evaluate, optimize, snapshot, accept or roll back.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-vision-provider

libinyam/dsh-vision-provider
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness adapter that exposes each configured vision model as a selectable DeepSeek composite in Web UI.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.3
Type
Bundles
CLI installs

dsh-chat-outline

liliuCourier/dsh-chat-outline
External Git bundle
Community · Topic auto-analysis

对话栏左侧常驻大纲:快速定位每次 user 提问与最后一条 assistant 回复(DeepSeek Harness 插件)。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.6
UI
1
CLI installs

dsh-rider

LingyeSoul/dsh-rider
External Git bundle
Community · Topic auto-analysis

dsh-rider is an automatically discovered DeepSeek Harness plugin bundle.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.5.0
UI
1
CLI installs

dsh-undo

lire1131/dsh-undo-plugin
External Git bundle
Community · Topic auto-analysis

DSH undo/rollback system: snapshot config files on change, undo/redo the last action from the WebUI or by chat, and roll back broken plugin trees without reinstalling. Works even when DSH fails to boot (offline CLI + GUI).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-code-lens

lisycotana/dsh-code-lens
External Git bundle
Community · Topic auto-analysis

Observability for DeepSeek Harness code-mode sub-dispatches: the tool calls a run_code program makes that the model never sees.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-workflow-worktree

lisycotana/dsh-workflow-worktree
External Git bundle
Community · Topic auto-analysis

Git worktree isolation backend for DeepSeek Harness workflows: binds each write-capable workflow agent to its own recoverable checkout.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@liustack/modsearch

liustack/modsearch
External Git bundle
Community · Topic auto-analysis

Plug-in web search, X search, and page fetch for models without native web access, powered by the free Antigravity CLI

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
5.4.1
Type
Bundles
CLI installs

dsh-plugin-mermaid

lj970926/dsh-plugin-mermaid
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness web client plugin that renders ```mermaid code blocks with a chart/source toggle.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@ljcscp/dsh-session-cost

ljcscp/dsh-session-cost
External Git bundle
Community · Topic auto-analysis

DeepSeek account balance and session-cost readout for the DeepSeek Harness Web GUI: official balance endpoint, auto-fetched official pricing with peak/off-peak hours, per-model costing (flash/pro).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-cc-switch

LKRCharon/dsh-cc-switch
External Git bundle
Community · Topic auto-analysis

Sync cc-switch provider profiles (Claude Code / Codex relays) into DeepSeek Harness as llm-pi-ai routes, credentials stored via the DSH credential seam.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-egress-guard

LKRCharon/dsh-egress-guard
External Git bundle
Community · Topic auto-analysis

Local, zero-network, fail-closed secret preflight for DeepSeek Harness model requests.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-research-library

LKRCharon/dsh-research-library
External Git bundle
Community · Topic auto-analysis

A native research-library workbench for DeepSeek Harness, powered by Field Current: bounded literature search, BibTeX, and session-linked evidence snapshots.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@lnsiaxe/dsh-web-restart

LnsiAxe/dsh-web-restart
External Git bundle
Community · Topic auto-analysis

Ensure or rotate the DSH web server (detached) when this bundle is loaded in a profile

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-session-index

longyu065/dsh-session-index
External Git bundle
Community · Topic auto-analysis

会话全文索引插件:监听 session/event 构建跨会话索引,提供 session_search / session_index_stats 工具,优先使用框架自带 ctx.sessionQuery (SQLite FTS5)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-plugin-dedup

lordship12138-crypto/dsh-plugin-dedup
External Git bundle
Community · Topic auto-analysis

Review duplicate dynamic Cordis plugins and produce merge plans for DeepSeek Harness (DSH). Detects content-similar packages (token Jaccard/containment), clusters duplicates, and yields safe merge plans or superset final sources. Entirely AI-generated.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-external/dsh-drop-to-path

loudMore/dsh-drop-to-path
External Git bundle
Community · Topic auto-analysis

Drop or paste images, PDFs, office docs, zips, videos and audio into the DSH composer as workspace file paths instead of model attachments — lets a text-only model agent read them via vision tools.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@dsh-user/paste-to-workspace

LQ-1123/paste-to-workspace
External Git bundle
Community · Topic auto-analysis

Paste images / drag any files into the DSH composer -> saved into the session workspace as files -> images read by modlens, other files read by the model by path

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.8.1
UI
1
CLI installs

dsh-plugins-market

Luaphes/dsh-plugins-market
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 插件创意市场:嗅探官方 dsh-plugin topic,噪音过滤、信任徽章、排序搜索与一键安装面板

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-web-attention-badge

Luaphes/dsh-web-attention-badge
External Git bundle
Community · Topic auto-analysis

Web attention badge: a top-left corner indicator counting sessions waiting for user input or finished-but-unopened, plus a browser tab title prefix

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.2
UI
1
CLI installs

dsh-gateway-provider

Luck9Star/dsh-gateway-provider
External Git bundle
Community · Topic auto-analysis

Generic LLM gateway model provider plugin for DeepSeek Harness: mounts newapi / LiteLLM / Higress / any OpenAI-compatible gateway as provider routes, auto-discovers the model list, enriches every model with models.dev parameters, and dispatches each model over its native wire protocol (OpenAI / Anthropic / Gemini) via the pi-ai SDK

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-plugin-knowledge-graph

Luke-Yong/dsh-plugin-knowledge-graph
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: a read_graph tool backed by a codebase knowledge graph (CONTAINS / EXPORTS / IMPORTS / IMPORTS_SYMBOL).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

shopline-ai-toolkit-dsh

lunw/shopline-ai-toolkit-dsh
External Git bundle
Community · Topic auto-analysis

SHOPLINE AI Toolkit for DeepSeek Harness (DSH): bridges the official SHOPLINE Developer MCP server and ships SHOPLINE agent skills, mirroring the Shopify AI Toolkit architecture. dsh-plugin.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-background

luoyu-xingu/dsh-background
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness Web 背景图片插件:在设置-通用-外观中填写本地图片路径替换网页背景,并提供预览与填充方式

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.8
UI
1
CLI installs

dsh-desktop-launcher

LvienOeria/dsh-desktop-launcher
External Git bundle
Community · Topic auto-analysis

一个轻量的 dsh(DeepSeek Harness)插件:安装桌面双击启动器 —— macOS 上是带官方鲸鱼图标的 dsh.app,Linux 上是 .desktop 入口。零依赖,约 147 KB。(终端命令在独立的 dsh-launcher 包)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.4
Type
Bundles
CLI installs

dsh-launcher

LvienOeria/dsh-launcher
External Git bundle
Community · Topic auto-analysis

一个轻量的 dsh(DeepSeek Harness)插件:安装一个终端命令,输入 dsh-go 即可启动 harness 并自动打开浏览器。零依赖,约 9 KB。(桌面双击版在独立的 dsh-desktop-launcher 包)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.4
Type
Bundles
CLI installs

dsh-funpack

lvyuchuiyi/dsh-funpack
External Git bundle
Community · Topic auto-analysis

夸夸、运势、战报、番茄钟、摸鱼、沉浸氛围、桌宠语音、Live2D、Boss 隐身与代码花园一体化的 DeepSeek Harness 插件

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.10.0
UI
1
CLI installs

dsh-subagent-cwd

lynx-gt/dsh-subagent-cwd
External Git bundle
Community · Topic auto-analysis

Enhanced subagent delegation tools for DeepSeek Harness with per-call cwd control: everything in dsh-subagent-tools plus a cwd parameter, shipped with the two in-process provider patches it requires.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-subagent-tools

lynx-gt/dsh-subagent-tools
External Git bundle
Community · Topic auto-analysis

Enhanced subagent delegation tools for DeepSeek Harness: per-call model/provider/persona/toolFilter overrides, @preset: references, and provider/model composite ids — zero patches, bundle.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-delayed-task

m-guo-2/dsh-delayed-task
External Git bundle
Community · Topic auto-analysis

Durable delayed decisions that wake cold DeepSeek Harness sessions with bounded authorization

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-session-stars

malevrigns/dsh-session-stars
External Git bundle
Community · Topic auto-analysis

Favorite DeepSeek Harness Sessions and reopen them from a global cross-Workspace center.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-skin

ManuSpurs/dsh-skin20260814
External Git bundle
Community · Topic auto-analysis

Skin switcher + custom wallpaper for DeepSeek Harness: curated --dsw-alias-* palettes, translucent wallpaper with opacity/blur controls, and durable per-user persistence (like Codex themes)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-bash-terminal

MAXeaglet/dsh-bash-terminal
External Git bundle
Community · Topic auto-analysis

DSH plugin: one shell tool that runs commands through PowerShell, Git Bash, or WSL on Windows, with a user-chosen default terminal in the Web UI settings.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.14
UI
1
CLI installs

dsh-approval-comment

MaYiFei1995/dsh-approval-comment
External Git bundle
Community · Topic auto-analysis

DSH Web 审批增强插件:无感替代审批窗口,支持「拒绝并附言」;拒绝后终止当前回合工作,并重新结合附言思考。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-multimodal

MC5lan/dsh-multimodal
External Git bundle
Community · Topic auto-analysis

Multimodal eyes and hands for DeepSeek Harness: GLM vision transcription, OCR, and text-to-image via DashScope / OpenAI-compatible backends, with an in-conversation generated-image card.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-plugin-finder

meme-dog/dsh-plugin-finder
External Git bundle
Community · Topic auto-analysis

Find and audit DeepSeek Harness (DSH) plugins inside the agent — live `dsh-plugin` topic search + source audit with trial-to-production install plans.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
Type
Bundles
CLI installs

dsh-sticky-note

Meredith2328/dsh-sticky-note
External Git bundle
Community · Topic auto-analysis

左下角便签:随手记点子/感想/TODO,实时保存到归档目录,清单+悬浮归档

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-kimi-webbridge

MicroHEROX/dsh-Kimi-WebBridge
External Git bundle
Community · Topic auto-analysis

Kimi WebBridge for DeepSeek Harness: drive the user's real browser (navigate, click, fill, snapshot, screenshot, evaluate, network, upload, PDF) through the local Kimi WebBridge daemon

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-jina

minatoAI/jina-web-search-dsh-plugin
External Git bundle
Community · Topic auto-analysis

Jina AI tools for DeepSeek Harness: search (incl. arxiv/ssrn academic domains), read, screenshot, embed, rerank, classify, pdf, expand, datetime, primer — with a settings-page API key UI.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

plugin-review

Mingxi2077/dsh-plugin-review
External Git bundle
Community · Topic auto-analysis

审查模式(Review Mode):DSH 项目/代码多维健康评分 + 程序生成雷达图 + 审查历史(分类/分页/回收站)+ AI 主动触发审查。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@dsh-external/dsh-sidechat

Mintcolour/dsh-sidechat
External Git bundle
Community · Topic auto-analysis

Side chat drawer for DeepSeek Harness Web

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@minybear/dsh-pet

minybear/DeepSeek-Harness-Pet
External Git bundle
Community · Topic auto-analysis

Codex-style desktop pet for the DSH web GUI: a floating animated sprite driven by the agent's running state

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-xai

MirDie/dsh-xai
External Git bundle
Community · Topic auto-analysis

xAI Grok SuperGrok / X Premium OAuth for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-cost-display

misakimiku2/dsh-cost-display
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 成本显示插件:在状态栏追加按模型+峰谷精确计费的会话费用

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-playwright-cli

mitao-su/dsh-playwright-cli
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness host plugin that wraps the Playwright CLI: install browsers, run tests, and open the HTML report from the agent loop.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-playwright-native

mitao-su/dsh-playwright-native
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness host plugin that registers the native Playwright CLI as a single passthrough `playwright` tool (args forwarded verbatim).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-file-changes

mixin-ai/dsh-file-changes
External Git bundle
Community · Topic auto-analysis

Per-turn file-change panel: lists created/modified files at the end of every answer, shows their diffs, and reveals them in the OS file manager

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@mixin-ai/dsh-git-branch-switcher

mixin-ai/dsh-git-branch-switcher
External Git bundle
Community · Topic auto-analysis

DSH web plugin: a Git branch pill in the session header that shows the current workspace branch and switches branches from the UI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-prompt-studio

Moeblack/dsh-prompt-studio
External Git bundle
Community · Topic auto-analysis

Prompt Studio plugin for DeepSeek Harness: compose runtime prompts, overrides, and request-local synthetic turns in one live editor

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.0
UI
1
CLI installs

@dsh-external/dsh-web-skins

Moeblack/dsh-skins
External Git bundle
Community · Topic auto-analysis

DSH Web 换肤仓库 / DSH Web skins repo — third-party skins for the dsh web GUI (token skins + AI-art backgrounds), install by config, zero core changes

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-local-filetree

Mongfayi/dsh-local-filetree
External Git bundle
Community · Topic auto-analysis

File tree panel for the DSH Web UI: the right details column shows the current session workspace tree (lazy, read-only).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-recall

Mongfayi/dsh-recall
External Git bundle
Community · Topic auto-analysis

Message recall (撤回) for the DSH Web UI: remove a message — and everything after it — from the conversation, durably, without ever reverting code changes.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-approval-gate

moon09300731/dsh-approval-gate
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 自动审批门控:Flash 模型预判写入/命令是否不可回补,安全自动批准、危险转人工(fail-safe)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-vision-tools

moon09300731/dsh-vision-tools
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 视觉能力全家桶:vision_understand 工具(OpenAI 兼容视觉 API,默认免费智谱 GLM-4V-Flash)+ 粘贴/拖拽/按钮三入口识图

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-skin-material-you

mtaech/dsh-material-you
External Git bundle
Community · Topic auto-analysis

Material You (Material 3) skin for DeepSeek Harness: HCT tonal palette + Maple Mono NF CN typography

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.2
UI
1
CLI installs

dsh-win-notify

MuziIsabel/dsh-win-notify
External Git bundle
Community · Topic auto-analysis

DSH plugin: Windows toast notification with sound when an agent task completes.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.6.0
UI
1
CLI installs

dsh-plugin-description

MysaDC/dsh-plugin-description
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 组合插件:为 Web 设置中的插件列表页添加中英文功能说明,并提供 pluginDescriptions 服务供其他插件注册自己的说明。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.2.1
UI
1
CLI installs

dsh-answer-pet

Nanki-nn/dsh-answer-pet
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness Web 蓝鲸桌面宠物:实时显示多会话回答进度、模型轨迹、工具调用、token、输出速率与耗时。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.5.0
UI
1
CLI installs

@nanmicoder/dsh-agent-teams

NanmiCoder/dsh-agent-teams
External Git bundle
Community · Topic auto-analysis

AgentTeams for DeepSeek Harness: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the web GUI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-ui-quote-selection

nekogpt/dsh-ui-quote-selection
External Git bundle
Community · Topic auto-analysis

DSH web client plugin: select text in a chat message and quote it into the composer as an inline reference chip; the full text materializes on submit via the input-trigger reference codec.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-view-modes

NigelYao/dsh-view-modes
External Git bundle
Community · Topic auto-analysis

DshViewModes for DSH Web: Verbose / Normal / Summary conversation display with semantic process grouping.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-web-search-tavily

nitrazepam01/dsh-web-search-tavily
External Git bundle
Community · Topic auto-analysis

Tavily-backed search provider (native web_search via the Tavily /search API) for the DeepSeek Harness web capability seam (ctx.web)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-spend

nonewind/dsh-spend
External Git bundle
Community · Topic auto-analysis

Token usage, multi-dimensional statistics, auto-detected billing plans (Code/Token) and estimated spend for the dsh web UI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-plugin-console

Noob-stupid/dsh-plugin-hub
External Git bundle
Community · Topic auto-analysis

插件控制台:一键启用/停用插件,浏览并安装 GitHub dsh-plugin 插件

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.6
UI
1
CLI installs

dsh-chat-import

Nwflower/dsh-chat-import
External Git bundle
Community · Topic auto-analysis

Import Claude Code / Codex / ChatGPT / Cursor / Gemini / Reasonix / Pi Coding Agent / opencode / ZCode / Grok Build / OpenClaw / Hermes conversation histories as resumable DeepSeek Harness sessions

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs

dsh-file-claim

Nwflower/dsh-file-claim
External Git bundle
Community · Topic auto-analysis

Write in parallel, never overwrite — file claim / protection for concurrent DeepSeek Harness (DSH) sessions working the same workspace: claim/release, heartbeat stale takeover, and an async pending merge area (git 3-way merge)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.5
Type
Bundles
CLI installs

@oil-oil/dsh-vision

oil-oil/dsh-vision
External Git bundle
Community · Topic auto-analysis

Near-native image understanding for text-only DeepSeek Harness models

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@omdsh-dev/dsh-annotation

omdsh-dev/dsh-annotation
External Git bundle
Community · Topic auto-analysis

DSH Web selection-annotation plugin: select assistant text, annotate (optional), and press Enter to send the annotation block with your message — the model replies to each annotation by number, with hoverable chips in the reply.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.3.13
UI
1
CLI installs

@yejiming/dsh-data-agent

omdsh-dev/dsh-data-agent
External Git bundle
Community · Topic auto-analysis

Data Agent for the dsh web GUI: session-scoped database connections (MySQL/PostgreSQL/SQLite), the sqlcmd tool, the data-agent agent preset, and the database conversation-view tab

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
UI
1
CLI installs

@dsh-external/dsh-deep-research

omdsh-dev/dsh-deep-research
External Git bundle
Community · Topic auto-analysis

Deep Research orchestrator extension for DeepSeek Harness: an adaptive cybernetics/information-theory deep_research tool on the official workflow engine, reusing built-in web_search/web_fetch.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-gomoku

omdsh-dev/dsh-gomoku
External Git bundle
Community · Topic auto-analysis

Gomoku (five-in-a-row) for the dsh web GUI: AI move routes, model catalog, and default prompt (node half) plus the conversation-view tab with the board (browser half)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
UI
1
CLI installs

@omdsh/dsh-hub

omdsh-dev/dsh-hub
External Git bundle
Community · Topic auto-analysis

OMDSH community extension hub built on official DeepSeek Harness contracts

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.1
UI
1
CLI installs

@dsh-external/dsh-inspect

omdsh-dev/dsh-inspect
External Git bundle
Community · Topic auto-analysis

发现问题 → 修复交付 → 质量复查 的简单闭环插件:checkup(对抗式检查+红队验证)/ fix(根因→修复→验证)/ review(对抗式复查)三个工具,基于官方 workflow 引擎。

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-external/dsh-kb-sieve

omdsh-dev/dsh-kb-sieve
External Git bundle
Community · Topic auto-analysis

知识库筛子:把文档(md/txt/docx/pdf)构建成可审计知识包(references + SQLite FTS5),提供确定性检索(kb_query)与原文精读(kb_read)工具,可生成零脚本的 DSH skill 并动态加载。

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-external/dsh-minigames

omdsh-dev/dsh-minigames
External Git bundle
Community · Topic auto-analysis

DSH Web UI 右侧小游戏面板:18 款离线小游戏,可扩展游戏注册表。等待模型回复或修 bug 时的摸鱼神器。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.2
UI
1
CLI installs

dsh-mnemon

omdsh-dev/dsh-mnemon
External Git bundle
Community · Topic auto-analysis

Deep integration of Mnemon and DeepSeek Harness, providing DSH with complete local-first three-tier memory: Runtime Memory, searchable Documents, and supervised Memory Spaces.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-plugin-check

omdsh-dev/dsh-plugin-check
External Git bundle
Community · Topic auto-analysis

DSH plugin health checker: scan plugin repos for manifest protocol / patch format / build pitfalls / hub registration, zero-dependency read-only diagnostics

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-security-audit

omdsh-dev/dsh-security-audit
External Git bundle
Community · Topic auto-analysis

DSH local security audit tool: read-only scans of config, credential metadata, plugin provenance, session structure and network exposure; redacted, reproducible, locatable risk reports

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-session-health

omdsh-dev/dsh-session-health
External Git bundle
Community · Topic auto-analysis

DSH session health checker: frame-level diagnostics over multi-frame zstd session logs (torn/corrupt/empty detection), zero-dependency read-only scanner

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-calculator

omdsh-dev/dsh-tool-calculator
External Git bundle
Community · Topic auto-analysis

DSH calculator tool

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-csv

omdsh-dev/dsh-tool-csv
External Git bundle
Community · Topic auto-analysis

DSH CSV data tool: parse/query/stats over RFC 4180 CSV text, zero-dependency state-machine parser

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-diff

omdsh-dev/dsh-tool-diff
External Git bundle
Community · Topic auto-analysis

DSH diff tool: structured comparison of text/JSON/CSV/Markdown plus unified diff generation and in-memory patch validation. Zero-dependency, read-only.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-encoding

omdsh-dev/dsh-tool-encoding
External Git bundle
Community · Topic auto-analysis

DSH encoding tool plugin

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-json

omdsh-dev/dsh-tool-json
External Git bundle
Community · Topic auto-analysis

DSH JSON query tool

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-markdown

omdsh-dev/dsh-tool-markdown
External Git bundle
Community · Topic auto-analysis

DSH Markdown tool: HTML-to-Markdown conversion, whitelisted Markdown-to-HTML, GFM table normalization, TOC generation. Zero-dependency lightweight parsers.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-regex

omdsh-dev/dsh-tool-regex
External Git bundle
Community · Topic auto-analysis

DSH regex tool: test/find/replace over text plus static pattern explanation, zero-dependency with ReDoS guards

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-schema

omdsh-dev/dsh-tool-schema
External Git bundle
Community · Topic auto-analysis

DSH JSON Schema validation tool: validate, failure paths, static explain, default-only normalize; zero-network, zero-dynamic-code with resource limits and a pattern ReDoS worker budget

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-stat

omdsh-dev/dsh-tool-stat
External Git bundle
Community · Topic auto-analysis

DSH statistics tool: describe/percentile/frequency/correlation over explicit finite numeric arrays, zero-dependency, deterministic, numerically stable (Neumaier sum + Welford variance + linear-interpolation percentiles + Spearman midrank)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-tool-time

omdsh-dev/dsh-tool-time
External Git bundle
Community · Topic auto-analysis

DSH time tool plugin

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

@omdsh/runtime

omdsh-dev/omdsh-runtime
External Git bundle
Community · Topic auto-analysis

Lightweight OMDSH Runtime for official Profile composition, candidate generations, recovery, and Workshop integration

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.0
Type
Bundles
CLI installs

dsh-tui

orriduck/dsh-tui
External Git bundle
Community · Topic auto-analysis

A small, session-aware terminal UI for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.5.0
Type
Bundles
CLI installs

dsh-batch-regression

PangYiMing/dsh-batch-regression
External Git bundle
Community · Topic auto-analysis

Run one command N rounds and judge by median/distribution instead of a single run

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-bisect-debug

PangYiMing/dsh-bisect-debug
External Git bundle
Community · Topic auto-analysis

Bisect bug root causes in three modes: code / boundary / commit (git bisect run)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-browser-control

PangYiMing/dsh-browser-control
External Git bundle
Community · Topic auto-analysis

DSH plugin for controlling browsers (CDP / Playwright)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-mobile-control

PangYiMing/dsh-mobile-control
External Git bundle
Community · Topic auto-analysis

DSH plugin for controlling mobile devices (ADB / iOS simulator / WDA)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-port-guard

PangYiMing/dsh-port-guard
External Git bundle
Community · Topic auto-analysis

Triage port conflicts: reuse your own live server, switch ports for others, precisely kill zombies

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-screenshot-diff

PangYiMing/dsh-screenshot-diff
External Git bundle
Community · Topic auto-analysis

Pixel-diff two screenshots into diff.png + a labeled triptych (pixelmatch)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-balance-stats

pangzi499/dsh-balance-stats
External Git bundle
Community · Topic auto-analysis

Community balance and spend statistics plugin for DeepSeek Harness Web, with session usage and privacy-preserving invoice summaries.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-ultracode

ParticleLight/dsh-ultracode
External Git bundle
Community · Topic auto-analysis

UltraCode agent preset for DeepSeek Harness 鈥?maximum-depth reasoning, plan 鈫?execute 鈫?verify, and parallel subagent orchestration, as a one-command-install mode.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
Type
Bundles
CLI installs

dsh-tavily-web-search

paul-yangmy/dsh-tavily-web-search
External Git bundle
Community · Topic auto-analysis

Tavily-backed web search provider plugin (bundle) for DeepSeek Harness — registers a ctx.web search provider using the Tavily REST API

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-open-browser

peach0x33a/dsh-open-browser
External Git bundle
Community · Topic auto-analysis

DSH plugin: open the system default browser automatically once `dsh web` is ready to serve.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-background-agents

PerryLink/dsh-background-agents
External Git bundle
Community · Topic auto-analysis

Interactive long-session background agents for DeepSeek Harness: start a durable continuable child agent from any session, watch its progress in the Web UI sidebar, message it any time, and interrupt it — all through the official subagent seam.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs

dsh-checkpoint-rewind

PerryLink/dsh-checkpoint-rewind
External Git bundle
Community · Topic auto-analysis

Claude Code /rewind equivalent for DeepSeek Harness: git-first workspace file snapshots before every mutating tool execution, turn-boundary session forks, and a one-shot /rewind command that restores files and forks the session back to a checkpoint

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
Type
Bundles
CLI installs

dsh-claude-move

PerryLink/dsh-claude-move
External Git bundle
Community · Topic auto-analysis

Copy Claude Code transcripts, memories, skills and CLAUDE.md into DeepSeek Harness as resumable sessions — one workspace per project, copy-only, seamlessly resumable

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-doublecheck

PerryLink/dsh-doublecheck
External Git bundle
Community · Topic auto-analysis

Double-check before you ship: grill the requirements, test the implementation, prove the delivery.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.5.0
Type
Bundles
CLI installs

@perrylink/dsh-github

PerryLink/dsh-github
External Git bundle
Community · Topic auto-analysis

GitHub integration for DeepSeek Harness: create pull requests, review PRs with background jobs, and read issues — every write gated by human approval

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.0
Type
Bundles
CLI installs

dsh-memento

PerryLink/dsh-memento
External Git bundle
Community · Topic auto-analysis

Bounded, layered, approval-gated, auditable cross-session memory for DeepSeek Harness — a capability seam (ctx.memory service + local SQLite provider + memory tool + frozen snapshot injection), not another memory warehouse

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-llm-codex-oauth

Player-MINEPIG/dsh-llm-codex-oauth
External Git bundle
Community · Topic auto-analysis

Use your ChatGPT/Codex subscription in dsh through the OpenAI Codex OAuth flow.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.5
UI
1
CLI installs

dsh-dafeiyu

QCYTSN/dsh-dafeiyu
External Git bundle
Community · Topic auto-analysis

A desktop-native BigFish companion driven by DeepSeek Harness session events.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-alpha.6
UI
1
CLI installs

@qing3a/dsh-event-auditor

qing3a/dsh-event-auditor
External Git bundle
Community · Topic auto-analysis

Harness 事件流审计面板:观察事件类型、分发模式、计数与最近事件,帮助插件作者理解 harness 内部发生了什么

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@qing3a/dsh-tray

qing3a/dsh-tray
External Git bundle
Community · Topic auto-analysis

Windows 系统托盘插件:托盘图标 + 菜单(打开界面/状态/退出)+ 气泡通知,基于 trayicon(exe 宿主,无 native 编译)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

mypet

qiqikuaidianpao/mypet
External Git bundle
Community · Topic auto-analysis

A tamagotchi-style desktop pet for DeepSeek Harness — lives in your browser, reacts to coding sessions, levels up, collects skins, and more.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.7
UI
1
CLI installs

@qizhen2021/dsh-plugin-vision

qizhen2021/dsh-plugin-vision
External Git bundle
Community · Topic auto-analysis

The see tool for the DeepSeek Harness: offline OCR with positions (macOS Vision) + ASCII layout art (PIL) + vision-model semantic description (mimo-v2.5 via the opencode-go gateway). Works with any model, including text-only ones.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
Type
Bundles
CLI installs

dsh-mic-input

QT-Chen/dsh-mic-input
External Git bundle
Community · Topic auto-analysis

DSH Web 麦克风语音输入插件:浏览器内置 Web Speech API 实时转写进输入框,自动去重/续听、智能标点、语言与自动发送设置(Edge=微软语音、Chrome=谷歌语音)。Microphone voice input for the DSH Web UI using the browser's Web Speech API.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-plugin-jinji

quan2005/dsh-plugin-jinji
External Git bundle
Community · Topic auto-analysis

把「记忆」带进 DeepSeek Harness:极简文本记忆系统,双轨记忆(流水日志 + 人物/产品实体画像),大模型为核心驱动。无需安装其他软件,无需编译,无第三方依赖。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.6.0
UI
1
CLI installs

@dsh-community/dsh-deeplink

qyw233/dsh-deeplink
External Git bundle
Community · Topic auto-analysis

DSH WebUI 深链:用 ?session=<会话id> 或 ?workspace=<工程id> 直接打开指定项目对话

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.5.0
UI
1
CLI installs

dsh-theme-palettes

RainbowDashy/dsh-theme-palettes
External Git bundle
Community · Topic auto-analysis

Palette infrastructure for DeepSeek Harness: scheme-mapped theme palettes with built-in VSCode Red, Solarized Dark, and Solarized Light, plus a third-party registration API

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-mermaid-preview

realguan/dsh-mermaid-preview
External Git bundle
Community · Topic auto-analysis

Render Mermaid fenced code blocks as diagrams in DeepSeek Harness (dsh) web — chat, trajectory, plan review and every other Markdown surface.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
UI
1
CLI installs

dsh-theme-rhine-lab

ReLuckyLucy/dsh_Rhine_Lab_themo
External Git bundle
Community · Topic auto-analysis

Arknights Rhine Lab (莱茵生命) skin for the DeepSeek Harness Web GUI: a token override layer plus holographic decorations, toggled by a General-settings row

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-tmcra-memory

reshuibuduo/dsh-tmcra-memory
External Git bundle
Community · Topic auto-analysis

Automatic TMCRA recall, injection, and role-separated writeback for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-wallpaper

RNlao/dsh-wallpaper
External Git bundle
Community · Topic auto-analysis

DSH wallpaper plugin: choose an image/gradient as the DSH web background, with local-folder browsing, crop, blur, dim, panel translucency and position controls.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-plugin-clawrouters

ropon/dsh-plugin-clawrouters
External Git bundle
Community · Topic auto-analysis

One-key ClawRouters plugin for DeepSeek Harness: chat, image generation, video generation, and web search

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-qwen-mm

RRRosmontis/dsh-qwen-mm
External Git bundle
Community · Topic auto-analysis

Qwen-MM-Plugins integration bundle for DeepSeek Harness: bundled multimodal skills, MCP server rows, and an image attachment bridge for text-only model routes

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-launcher-lifetime

Ruler4396/dsh-launcher-lifetime
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness (dsh) plugin: control how long the dsh service (node) stays alive when using the dsh-launcher shell. Writes %LOCALAPPDATA%\dsh-launcher\settings.json (serviceLifetime: 0 always-on, 1 tray-resident, 2 follow-window); the shell applies it on window close / tray exit. No runtime dependencies.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-trellis

SajoLuo/dsh-trellis
External Git bundle
Community · Topic auto-analysis

Trellis workflow integration for DeepSeek Harness: per-turn workflow-state breadcrumbs, utility commands, and native session identity.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@sakikotgw/pack-agent

sakikoTGW/pack-agent
External Git bundle
Community · Topic auto-analysis

Pack skills, rules, and MCP into .pack.zip and install them into Claude Code, Codex, Cursor, and other harnesses

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.2
Type
Bundles
CLI installs

@sanqi-normal/dsh-webui-market-plugin

Sanqi-normal/dsh-webui-market-plugin
External Git bundle
Community · Topic auto-analysis

In-harness community plugin market for the dsh web GUI: browse awesome-dsh-plugin.com, install and uninstall plugins into a profile

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-node-nav

Seryta/dsh-node-nav
External Git bundle
Community · Topic auto-analysis

对话节点导航:DSH Web GUI 右侧节点串,hover 预览、点击跳转、active 药丸跟随阅读位置

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.2
UI
1
CLI installs

dsh-plugin-ds-api-usage

Sev7een/ds-api-usage
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: real-time DeepSeek API balance and usage timeline (cost / tokens / request count), rendered in a settings page.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-restart-web

shaoyi1991/dsh-restart-web
External Git bundle
Community · Topic auto-analysis

One-click restart for DeepSeek Harness from the Web UI settings panel. Cross-platform (macOS, Linux, Windows).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-entity-dd

sherconan/dsh-entity-dd
External Git bundle
Community · Topic auto-analysis

Cross-border counterparty due diligence for DeepSeek Harness — resolve the entity you are actually contracting with, then judge whether the record is fit to rely on.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-web-recon

sherconan/dsh-web-recon
External Git bundle
Community · Topic auto-analysis

Work out how a web system actually works — once. Captures its real HTTP API and accessibility tree in a dedicated, fenced browser, then keeps a reusable playbook so later automation never pays to rediscover it.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

falsify-dsh

shi275773124/falsify-dsh
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness adapter for the public Falsify CLI. Adjudicator, not a second-opinion workflow. lint / review --json / gate only; selftest ≠ claim-bearing.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

project-blueprint

shuguang1994/project-blueprint
External Git bundle
Community · Topic auto-analysis

DSH (DeepSeek Harness) plugin packaging of the Project Blueprint skill — one-command AI coding conventions (AGENTS.md, docs skeleton, CI/CD, git rules, testing policy) with an autonomous discovery engine (7 languages, 15 frameworks, 70+ components, web fallback).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
1.7.0
Type
Bundles
CLI installs

dsh-plugin-wepre

shujiTech/dsh-plugin-wepre
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: publish single-screen content cards to WePre Next straight from a dsh agent session

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-k12-lesson-builder

shyboy/dsh-k12-lesson-builder
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin for synchronized K12 English PPTX and DOCX lesson materials

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
Type
Bundles
CLI installs

dsh-auto

simon300000/dsh-auto
External Git bundle
Community · Topic auto-analysis

Model-reviewed Auto Approve permission preset for the DeepSeek Harness Web UI

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-turn-index

Simon314620/dsh-turn-index
External Git bundle
Community · Topic auto-analysis

对话轮次索引:Web GUI 右侧边栏列出每一轮用户提问,点击跳转到对应位置 (Turn index sidebar for the DeepSeek Harness web GUI: one entry per user turn, click to jump)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-translator

SiYue-ZO/dsh-translator
External Git bundle
Community · Topic auto-analysis

A native, streaming translation workspace for DeepSeek Harness.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-task-progress-notifier

sjscy05/dsh-task-progress-notifier
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: track todo_write progress and pop native desktop reminders (bottom-right).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-prompt-polish

SkySheep1999/dsh-polish-prompts
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness Web plugin that adds a ✨ button beside the composer send control to polish the current prompt with a chosen model.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

@slhssb/dsh-advisor

slhssb/dsh-advisor
External Git bundle
Community · Topic auto-analysis

Independent-model advisory review for DeepSeek Harness: after each tool step, a reviewer model audits the agent's operations and injects concerns/guidance into the next step.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

deepseek-harness-qqbot

sliverp/DeepSeek-harness-qqbot
External Git bundle
Community · Topic auto-analysis

QQ Bot channel bridge for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs

deepseek-harness-wecom

sliverp/DeepSeek-harness-wecom
External Git bundle
Community · Topic auto-analysis

WeCom AI Bot text, image, and file channel bridge for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.4
Type
Bundles
CLI installs

deepseek-harness-weixin

sliverp/DeepSeek-harness-weixin
External Git bundle
Community · Topic auto-analysis

Official Weixin iLink QR-login text and image bridge for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.4
Type
Bundles
CLI installs

dsh-conversation-indicator

smanx/dsh-conversation-indicator
External Git bundle
Community · Topic auto-analysis

Conversation indicator for the DeepSeek Harness web GUI: clickable markers along the transcript scrollbar that jump to the corresponding message or turn.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dash-tui

songqikong/dash
External Git bundle
Community · Topic auto-analysis

DASH — Deepseek Agentic Service Harness. oh-my-pi style TUI on the DSH agent kernel, run in the terminal via `dsh --profile dash`.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

ds-vision-plugin

Sorwcyra/ds-vision-plugin
External Git bundle
Community · Topic auto-analysis

Automatic Web image-to-text bridge plus vision and OCR tools for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.1
Type
Bundles
CLI installs

mindspace-dsh-session-memory

Spirtxiaoqi7/mindspace-dsh-session-memory
External Git bundle
Community · Topic auto-analysis

Editable, session-isolated personalization memory for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
UI
1
CLI installs

dsh-imagecraft

SPYQWER1/dsh-imagecraft
External Git bundle
Community · Topic auto-analysis

image_gen and image_vision model tools for the DeepSeek Harness, powered by the ChatGPT subscription (no API key).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
2.0.1
Type
Bundles
CLI installs

dsh-builtin-toggles

Starfie1d1272/dsh-builtin-toggles
External Git bundle
Community · Topic auto-analysis

Built-in plugin catalog and safe GUI toggles for DeepSeek Harness Web.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-daydream-break

Stone623/ai_skills
External Git bundle
Community · Topic auto-analysis

A DeepSeek Harness plugin that gives agents a brief, recoverable daydream during sustained work

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-auth-in-one

Stormycry-cryp/dsh-AuthInOne
External Git bundle
Community · Topic auto-analysis

Provider operations and auditable token and cost analytics for DeepSeek Harness Web settings

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-alpha.1
UI
1
CLI installs

@steven-wu/dsh-cost-meter

Sttrevens/dsh-cost-meter
External Git bundle
Community · Topic auto-analysis

dsh plugin: live USD cost badge (whole-session + per-turn) from provider token usage and a configurable pricing table.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.2
UI
1
CLI installs

dsh-client-ui-skin-miku

stushansusu/dsh-miku-skin
External Git bundle
Community · Topic auto-analysis

初音未来(Hatsune Miku)主题皮肤:蓝紫洋红渐变标题栏与按钮、半透明毛玻璃面板与输入框、可自定义背景图,用于 DeepSeek Harness (DSH) Web GUI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-test-runner

suimi8/dsh-test-runner
External Git bundle
Community · Topic auto-analysis

DSH plugin: structured test runner tool (test_run) — auto-detect vitest/jest/pytest/node:test, run tests, parse failure summaries for the model.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-pdf

sunshine-lang/dsh-pdf
External Git bundle
Community · Topic auto-analysis

PDF toolbox for DeepSeek Harness: extract text, metadata, and page ranges from PDF files (local parsing, no API key).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-weather

sunshine-lang/dsh-weather
External Git bundle
Community · Topic auto-analysis

Weather tool for DeepSeek Harness: current conditions and multi-day forecasts via Open-Meteo (free, no API key).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-vision-android

superclaude1/dsh-vision-android
External Git bundle
Community · Topic auto-analysis

Vision + Android UI automation plugin for DeepSeek Harness: gpt-5.6-luna screenshot understanding and real-tap mobile app testing via adb

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-plugin-slashx-gateway

superslash-rico/dsh-plugin-slashx-gateway
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness host bundle that implements slashx.request.v1 and slashx.response.v1

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

agent-jit

sybolization/agent-jit
External Git bundle
Community · Topic auto-analysis

Agent JIT: a compiler/runtime that offloads deterministic execution paths from LLM agent loops.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-nanobananapro

synmindai/dsh-nanobananapro
External Git bundle
Community · Topic auto-analysis

Generate images and videos in DeepSeek Harness through the NanoBananaPro API

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-seedance2

synmindai/dsh-seedance2
External Git bundle
Community · Topic auto-analysis

Generate images and Seedance videos in DeepSeek Harness through the Seedance 2 AI API

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-tool-hackernews

tanf1ng/dsh-tool-hackernews
External Git bundle
Community · Topic auto-analysis

Hacker News tool suite (hn_top_stories, hn_search, hn_item) for DeepSeek Harness agents

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-plugin-vision

tdf1995/dsh-plugin-vision
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness native plugin: give text-only LLMs (e.g. DeepSeek) vision via free Gemini / GLM vision APIs — describe images, OCR, VQA, screenshots, charts.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.4
Type
Bundles
CLI installs

@temoa/dsh-rules-paths

Temoa/dsh-rules-paths
External Git bundle
Community · Topic auto-analysis

Claude Code-style `paths:` rule injection for DeepSeek Harness (DSH): inject rules from ~/.dsh/rules, <project>/.dsh/rules and <project>/.claude/rules into the model context.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-billing

TheTianzz/dsh-billing
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: 账户余额 + 会话费用(命令/工具 + Web UI 悬浮显示)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.1
UI
1
CLI installs

dsh-plugin-market

TheYoungChen/dsh-plugin-market
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin market: browse the dsh-plugin GitHub topic and install plugins from a panel above Settings.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-skill-manager

Thomas-key/dsh-skill-manager
External Git bundle
Community · Topic auto-analysis

Manage DeepSeek Harness skills: list filesystem skills and toggle them on/off (SKILL.md <-> SKILL.md.disabled), from the agent or via the Settings UI (bundle-included).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-composer-polish

tianji-qingtian/dsh-composer-polish
External Git bundle
Community · Topic auto-analysis

Composer draft polisher for DeepSeek Harness: a ✨ button in the composer tool row rewrites the current draft with a zero-prefix flash call and fills the polished text straight back into the input box.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
UI
1
CLI installs

dsh-model-router

tianji-qingtian/dsh-model-router
External Git bundle
Community · Topic auto-analysis

Model router & cost optimizer for DeepSeek Harness: heuristic tier routing between cheap and strong models, automatic fallback on transient failures, and a per-session token/cache/cost panel in the composer dock.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.8.1
UI
1
CLI installs

dsh-spec-loop

tianji-qingtian/dsh-spec-loop
External Git bundle
Community · Topic auto-analysis

Spec-driven development loop for DeepSeek Harness: a /spec command family drives propose → approve → implement → verify → archive with OpenSpec-compatible change directories, a durable session projection, and a change card in the composer dock.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.2
UI
1
CLI installs

@dsh-external/dsh-better-browser

titanwings/dsh-better-browser
External Git bundle
Community · Topic auto-analysis

Better Browser for DeepSeek Harness: drive the user's real browser through Kimi WebBridge with navigation, snapshots, interaction, screenshots, network inspection, and tab management

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.6
Type
Bundles
CLI installs

@dsh-external/dsh-plannotator

titanwings/dsh-plannotator
External Git bundle
Community · Topic auto-analysis

Unofficial Plannotator integration for DeepSeek Harness: annotate plans inline and return structured feedback to the waiting coding agent

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
UI
1
CLI installs

dsh-wanghong-handwritten-ppt

tjxj/dsh-wanghong-handwritten-ppt
External Git bundle
Community · Topic auto-analysis

Wang Hong-inspired Notability academic handwritten PPT skill for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@tonydua/dsh-web-search-exa

TonyDua/dsh-web-search-exa
External Git bundle
Community · Topic auto-analysis

Zero-config Exa web search provider for DeepSeek Harness (dsh): keyless anonymous MCP fallback (mcp.exa.ai/mcp) plus keyed REST search — a drop-in WebSearchProvider for the ctx.web seam, no API key required.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.2
Type
Bundles
CLI installs

dsh-tsien-hsue-shen

Tostoevsky/TsienHsueShen
External Git bundle
Community · Topic auto-analysis

A DeepSeek Harness skill plugin distilled from Qian Xuesen (钱学森)'s Engineering Cybernetics (《工程控制论》) — a methodology framework for projects, engineering and research.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
Type
Bundles
CLI installs

dsh-plugin-installer

Toukaiteio/dsh-plugin-installer
External Git bundle
Community · Topic auto-analysis

A Web UI marketplace and profile switcher for DeepSeek Harness plugins.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.13
UI
1
CLI installs

@towzai/dsh-memory

Towzai/dsh-memory
External Git bundle
Community · Topic auto-analysis

Cross-session memory plugin for DeepSeek Harness (dsh): YAML-backed remember/recall/forget/pin tools, embedding search, and automatic system-prompt injection with WebUI context-injection visibility.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-external/dsh-slice-agent-loop

TT-Wang/dsh-slice-agent-loop
External Git bundle
Community · Topic auto-analysis

SliceAgent concrete agent loop plugin for the DeepSeek Harness — a drop-in AgentFactory/Agent implementation whose context engine is the bounded slice

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-plugin-audit

tttwh/dsh-plugin-audit
External Git bundle
Community · Topic auto-analysis

Audit the DeepSeek Harness plugin list by origin (official vs self-installed): a /plugin-audit command plus a Source tab in Web Settings

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@ttxl314/dsh-skill-lord-serf

ttxl314/dsh-skill-lord-serf
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: Lord/Serf agent protocol 0.5 skills (file-based multi-agent orchestration with bounded execution and schema-validated submissions)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-unitarylab-quantum-practices

unitarylab/quantum-practices
External Git bundle
Community · Topic auto-analysis

Quantum Algorithms Best Practices tool bundle for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@onpeople/dsh-academic-research

userInner/dsh-academic-research
External Git bundle
Community · Topic auto-analysis

Evidence-grounded bilingual research tools and workflows for DeepSeek Harness.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-ocgo-usage

v587d/dsh-opencode-go-usage
External Git bundle
Community · Topic auto-analysis

OpenCode Go subscription usage readout for the dsh web GUI: rolling (5h), weekly, and monthly usage windows with reset countdowns in the composer dock.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-tool-search

vibeinging/dsh-tool-search
External Git bundle
Community · Topic auto-analysis

Experimental per-agent tool discovery and progressive schema disclosure

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-trace

vibeinging/dsh-trace
External Git bundle
Community · Topic auto-analysis

Embedded yiTrace plugin for DeepSeek Harness turns, model steps, and tool calls

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-turn-navigator

vibeinging/dsh-turn-navigator
External Git bundle
Community · Topic auto-analysis

Compact conversation turn navigation for the DSH Web client

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-vision-tool

visail/dsh-vision-tool
External Git bundle
Community · Topic auto-analysis

Image routing for text-only models in DeepSeek Harness: a global analyze_image tool (Kimi vision) plus automatic rewriting of pasted images into attachment references when the active model cannot see images.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs
External Git bundle
Community · Topic auto-analysis

定时循环插件:/loop 命令 + loop 工具 + 活动状态条(官方 dock 槽)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs
External Git bundle
Community · Topic auto-analysis

对话节点导航条——user 消息快速跳转(自渲染 DOM,官方 client 通道)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs

@dsh-external/dsh-task-status

vlln/dsh-task-status
External Git bundle
Community · Topic auto-analysis

后台任务状态条——对话输入区上方的任务进度 UI(官方 dock 槽 + Node 轮询路由)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
UI
1
CLI installs

dsh-plugin-development

w2112515/dsh-plugin-development
External Git bundle
Community · Topic auto-analysis

Portable Agent Skill for developing and auditing DeepSeek Harness plugins, with an optional DSH bundle adapter.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0-beta.1
Type
Bundles
CLI installs

dsh-plugin-store

w769721503/dsh-plugin-store
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 插件商店:在「设置 → 插件」里浏览、搜索、筛选并一键安装 dsh-plugin 生态插件。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-agent-pricing

Way2LOose4/dsh-agent-pricing
External Git bundle
Community · Topic auto-analysis

Real-time session cost readout for DeepSeek Harness: composer-dock cost preview, today usage chart, prices kept in sync with the DeepSeek official site (peak/off-peak aware), plus price_estimate/session_cost agent tools.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.1.1
UI
1
CLI installs

dsh-git-status

weiyuou-chowbus/dsh-git-status
External Git bundle
Community · Topic auto-analysis

DSH web composer tool-row git branch indicator with branch switching

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

@wellorbetter/dsh-product-delivery-workflow

wellorbetter/dsh-product-delivery-workflow
External Git bundle
Community · Topic auto-analysis

Product delivery workflow plugin for DeepSeek Harness: a full product-to-release pipeline (research -> PRD -> OpenSpec architecture -> parallel multi-agent implementation -> review loops -> tests -> memory & evolution -> release audit) with loop closure, designed for high-quality autonomous completion of long, hard tasks — run it before you sleep.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
Type
Bundles
CLI installs

dsh-oai-oauth

werifu/dsh-oai-oauth
External Git bundle
Community · Topic auto-analysis

DSH LLM adapter plugin: use OpenAI ChatGPT subscription (GPT-5.6-Sol, GPT-5.5, ...) via OAuth — no API key. Reuses your local Codex CLI login.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@why913/dshx

why913/dshx
External Git bundle
Community · Topic auto-analysis

The missing companion CLI for DeepSeek Harness (dsh): manage MCP servers with one command — add/list/remove/test with dry-run connection checks, plus one-shot import from Claude Code / Codex. Also mounts as a dsh plugin so the agent can manage MCP itself. | dsh 缺失的那把瑞士军刀:一条命令管理 MCP 服务器,写入前连接自检,一键从 Claude Code / Codex 迁移;同时可作为 dsh 插件让 agent 自助接入。

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
Type
Bundles
CLI installs

@dsh-external/dsh-stickers

william-jin-cmu/dsh-stickers
External Git bundle
Community · Topic auto-analysis

人类 cannot live without 表情包:让 DSH 和用户在 WebUI 里发表情

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

codex-plugin-dsh

wingoo/codex-plugin-dsh
External Git bundle
Community · Topic auto-analysis

Codex App Server model provider plugin for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-growth

winyh/dsh-growth
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness tools for evidence-backed user growth, customer acquisition, AARRR funnels, retention, unit economics and MRR.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@wsl043/dsh-codex-subscription

WSL043/dsh-codex-subscription
External Git bundle
Community · Topic auto-analysis

Native ChatGPT and Codex subscription route with quota for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
UI
1
CLI installs

dsh-qwen-multimodal

wuwangmao/dsh-qwen-multimodal
External Git bundle
Community · Topic auto-analysis

DSH bundle: Qwen multimodal bridge — vision (qwen3-vl), speech-to-text (qwen3-asr), text-to-image (qwen-image), via the deepseek-vision skill scripts

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-plugin/dsh-review-loop

wuxiangru915/dsh-review-loop
External Git bundle
Community · Topic auto-analysis

Incremental diff reviewer for DeepSeek Harness — Web UI review panel + /review command. 增量代码审查插件:checkpoint 增量队列 + 审查意见注入 agent.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-speech-sherpa

wuxinzhe/dsh-speech-sherpa
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 本地离线语音插件:STT 语音识别 + TTS 语音合成 + WebUI 按住说话(Sherpa-ONNX)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@xavier711/dsh-deepseek-usage

xavier711/dsh-deepseek-usage
External Git bundle
Community · Topic auto-analysis

DeepSeek usage panel for the DSH Web GUI: account balance (official /user/balance API) plus per-model local session token statistics

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-portable-tavern

XCNXNXNX/dsh-portable-tavern
External Git bundle
Community · Topic auto-analysis

Portable Tavern for the DeepSeek Harness web GUI: an RPG-style SillyTavern V2/V3 character-card generator plus tavern roleplay chat, with world-book generation and JSON/PNG import-export.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-opencode-go-usage

Xenia0922/dsh-opencode-go-usage
External Git bundle
Community · Topic auto-analysis

OpenCode Go 用量与花费面板 — DeepSeek Harness 插件:可拖拽缩放的悬浮仪表盘,实时展示 OpenCode Go 配额、逐请求用量与花费

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-obsidian-export

xiaomiba0904/dsh-obsidian-export
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness (DSH) plugin: export conversations to an Obsidian vault, plus read/search/list/tags/backlinks tools and automatic vault discovery.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-backup

xiaoyuyu6420/dsh-backup
External Git bundle
Community · Topic auto-analysis

Backup DeepSeek Harness user data (~/.dsh) with one command: /backup, automatic scheduled backups, checksums and rotation. 一键备份 DSH 数据,支持定时自动备份。

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@xilin3/dsh-prompt-persona

Xilin3/dsh-prompt-persona
External Git bundle
Community · Topic auto-analysis

DSH 插件:在设置页可视化编辑系统提示词(deployment persona),支持实时预览与保存。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-session-timeline

XiLuovo/dsh-session-timeline
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 会话左侧虚线时间轴:横短横线波浪、当前消息定位(scroll-spy)、点击跳转、圆角预览 tooltip、可收起/展开。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-updater-ui

xingyingyuzhui/dsh-updater-ui
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 更新检查器:设置页一键检查/拉取 DSH 更新(git pull --ff-only),自动后台检查 + 红点提醒 + 版本对比 + 更新说明。DSH updater with one-click pull, auto-check, version diff and changelog preview.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-prompt-optimizer

xinmo114514/dsh-prompt-optimizer
External Git bundle
Community · Topic auto-analysis

DSH 持久化 Web 插件(prompt-optimizer):在输入框模型选择器左侧提供「优化提示词」按钮——用当前所选模型把模糊需求改写成可执行的优质提示词;优化期间输入框呈现跑马彩虹渐变边框并锁定输入,输入框上方显示优化状态。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs
External Git bundle
Community · Topic auto-analysis

Unified DeepSeek Harness connector: edit MCP servers (cordis.patch.yml) and user skills (~/.dsh/skills) from one Web UI settings page. Repository-root package: installs either via the bare git URL (the root manifest re-exports the dsh-connector/ subdir) or via github:XJungit/omdp#path:dsh-connector.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-plugin-iam-deepseek-v4ga

XuezuoYS/dsh-IamDeepSeekV4ga
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: injects an [IMPORTANT] chain-of-thought rule block at the very top of the system prompt of every model request (English CoT starting with I'm, no 'Let me', direct verbs).

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-mediacrawler

xwh-01/dsh-mediacrawler
External Git bundle
Community · Topic auto-analysis

Installable DeepSeek Harness profile bundle for a separately installed MediaCrawler checkout

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.0
Type
Bundles
CLI installs

dsh-side-panel

XYZ1024-alt/dsh-side-panel
External Git bundle
Community · Topic auto-analysis

Right-side developer panel for DeepSeek Harness: files, session history, and git version control

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-codex

Yan-Zero/dsh-codex
External Git bundle
Community · Topic auto-analysis

ChatGPT OAuth, Codex models, standalone search, and image input for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
UI
1
CLI installs

dsh-file-checksum

yan9651688/dsh-file-checksum
External Git bundle
Community · Topic auto-analysis

Raw-file SHA-256 and SHA-512 verification tool for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@ramify/dsh-ramify

yanglongyun/dsh-ramify
External Git bundle
Community · Topic auto-analysis

Creative branching canvas plugin for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-plugin-marketplace

YELEBAI/dsh-plugin-marketplace
External Git bundle
Community · Topic auto-analysis

GitHub dsh-plugin marketplace for DSH — search, install, update, uninstall and restart inside Web Settings

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.3
UI
1
CLI installs

dsh-sound

yeshimei/dsh-sound
External Git bundle
Community · Topic auto-analysis

Distinct alert sounds for DeepSeek Harness: network error, approval request, question asked, and turn-completion notifications.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
Type
Bundles
CLI installs

dsh-cost-tracker

yflmq001/dsh-cost-tracker
External Git bundle
Community · Topic auto-analysis

Token cost tracking with per-model configurable pricing and peak/off-peak rates for the DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-deepseek-quota

yingjunnan/dsh-deepseek-quota
External Git bundle
Community · Topic auto-analysis

DeepSeek API quota widget for the dsh web GUI: shows remaining DeepSeek API balance in a floating card pinned to the bottom-right corner (shell.overlay slot).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.0
UI
1
CLI installs

dsh-plugin-connection-banner

yinren112/dsh-plugin-connection-banner
External Git bundle
Community · Topic auto-analysis

Visible reconnecting banner for the DeepSeek Harness Web UI

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-balance

Yogioo/dsh-balance
External Git bundle
Community · Topic auto-analysis

DeepSeek API 余额显示:dsh web 输入框下方常驻余额读数 + check_balance 模型工具。声明 dsh.bundle,一条 dsh plugin add 即完成安装与挂载。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.2
UI
1
CLI installs

dsh-openai-codex-auth

yoke233/dsh-openai-codex-auth
External Git bundle
Community · Topic auto-analysis

OpenAI Codex OAuth login plugin for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-pixel-whale

yoke233/dsh-pixel-whale
External Git bundle
Community · Topic auto-analysis

A lively pixel-whale loading companion for DeepSeek Harness Web.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-prime-agent

yoke233/dsh-prime-agent
External Git bundle
Community · Topic auto-analysis

Prime Agent-inspired persistent RLM control plane for DeepSeek Harness Code Mode

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-tool-monitor

yoke233/dsh-tool-monitor
External Git bundle
Community · Topic auto-analysis

Event-driven monitoring for existing DeepSeek Harness background jobs

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@dsh-external/dsh-project-wiki

yu-xin-c/dsh-project-wiki
External Git bundle
Community · Topic auto-analysis

Auditable, workspace-local project wiki for DeepSeek Harness with a native Web view

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-eyecare

Yummyxl/dsh-eyecare
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness (DSH) Web 护眼模式插件:在设置→常规→外观下方添加护眼模式开关,豆沙绿科学护眼配色,浅色/深色均适配。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.1.0
UI
1
CLI installs

dsh-opencode-go-usage

yumusb/dsh-opencode-go-usage
External Git bundle
Community · Topic auto-analysis

DSH (DeepSeek Harness) plugin: OpenCode GO plan quota widget in the sidebar, same-origin usage proxy, and a /opencode-go chat command

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.2.1
UI
1
CLI installs

dsh-image-subagent

yuqingsh/dsh-image-subagent
External Git bundle
Community · Topic auto-analysis

让纯文本主模型(DeepSeek V4 等)也能接收图片附件:图片投影为显式占位文本,由主模型委托视觉子代理经 read_attachment/read_image 读取。零核心补丁,纯插件实现。

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-vision-helper

Yuuz12/dsh-vision-helper
External Git bundle
Community · Topic auto-analysis

Persistent vision plugin for DeepSeek Harness: registers the vision_analyze tool backed by a configurable multimodal model, with a settings-page UI. Zero dependencies.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.1
UI
1
CLI installs

dsh-webui-auth

Yuuz12/dsh-webui-auth
External Git bundle
Community · Topic auto-analysis

Persistent WebUI authentication plugin for DeepSeek Harness: configure an account/password in Settings, then accessing the WebUI requires login. Zero dependencies.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
UI
1
CLI installs

@dsh-external/dsh-plugin-workshop

yyyyukari/dsh-plugin-workshop
External Git bundle
Community · Topic auto-analysis

Steam Workshop-style plugin browser for the DeepSeek Harness (DSH) web UI: search, hot/newest/trending windows, Chinese keyword mapping, bilingual description & README translation, plugin-signature filtering, one-click install/update/uninstall, and an installed-plugins manager.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.5.1
UI
1
CLI installs

silk-background

z21for99/silk-background
External Git bundle
Community · Topic auto-analysis

dsh web-profile client plugin: WebGL silk shader background for the Web GUI. v4: the glass effect rides the official theme service (overrideTokens token layers with light/dark pairs); the node half is a no-op. @deepseek-ai/dsh-client-modules discovers dsh.client, serves /plugins/silk-background/client.js and injects it into the boot manifest; the dsh.bundle.patch declaration lets `dsh plugin --profile web add` wire the entry automatically.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.0
UI
1
CLI installs

dsh-peak-alert

zbxzbx98/dsh-peak-alert
External Git bundle
Community · Topic auto-analysis

DeepSeek 峰谷定价提示插件:高峰时段(北京 09:00-12:00 / 14:00-18:00)把 DSH Web 输入卡片染成淡红色,并显示当前高峰/空闲时段、价格倍率与下次切换时间

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-lan-uuid-fix

Zenjibad/dsh-lan-uuid-fix
External Git bundle
Community · Topic auto-analysis

dsh bundle: polyfill crypto.randomUUID on insecure origins so the DeepSeek Harness Web UI works over plain-HTTP LAN

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@zerohackz/dsh-sam2matting

ZeroHackz/GUI-SAM2Matting
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin exposing GUI-SAM2Matting (SAM2/SAM3 matting) as agent tools

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@zerohackz/dsh-openflowframes

ZeroHackz/OpenFlowFrames
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin exposing OpenFlowFrames video frame interpolation (RIFE) as agent tools

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-ws-files

zhangxiang1993621/dsh-ws-files
External Git bundle
Community · Topic auto-analysis

工作空间文件浏览器:在 dsh web 界面直接查看工作空间目录与文件内容

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-plugin-token-usage

zhangzheng25/dsh-token-monitor
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: token usage dashboard (today / 7 / 30 days), GitHub-style 90-day contribution graph and per-workspace conversation stats, rendered as a settings page. Data from live llm/stream usage chunks plus session-log backfill, persisted across restarts.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

@zhangzujian/dsh-same-mode-sandbox-noop

zhangzujian/dsh-same-mode-sandbox-noop
External Git bundle
Community · Topic auto-analysis

DSH compatibility plugin that treats redundant non-escalating sandbox permission fields as a no-op

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs

@zhangzujian/dsh-subprocess-inherit-environment

zhangzujian/dsh-subprocess-inherit-environment
External Git bundle
Community · Topic auto-analysis

DSH plugin that explicitly forwards the complete Harness environment through the subprocess service

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-wikilink

zhaoscsc/dsh-wikilink
External Git bundle
Community · Topic auto-analysis

Obsidian-style [[wikilink]] mentions for the DeepSeek Harness web GUI: type [[ in the composer to fuzzy-search note titles and attach their contents to the prompt

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-context-doctor

Zhenyu98/dsh-context-doctor
External Git bundle
Community · Topic auto-analysis

DSH 上下文注入审计插件:统计 AGENTS.md 指令链 / 技能目录 / 工具 schema / MCP 工具的 token 成本,检测重复与冲突;原生 Context Doctor 面板 + context_audit 工具。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.5.0
UI
1
CLI installs

dsh-tavily-search

zhouzhencheng07/dsh-tavily-search
External Git bundle
Community · Topic auto-analysis

Free keyless Tavily web search tool for DeepSeek Harness (dsh)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-voice

zhuiyueya/dsh-voice
External Git bundle
Community · Topic auto-analysis

Voice for DeepSeek Harness — give text-only DeepSeek ears and a mouth: browser-native speech input (STT) + read-aloud (TTS), plus Whisper/TTS agent tools.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

sidesight

ZhuXinAI/sidesight
External Git bundle
Community · Topic auto-analysis

Vision sidecar for text-only coding agents.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
UI
1
CLI installs

dsh-adhd-copilot

zimai233/dsh-adhd-copilot
External Git bundle
Community · Topic auto-analysis

ADHD behavioral coaching skill for DeepSeek Harness. Guides readers through task execution - breaks tasks into micro-steps, manages overwhelm, provides launch rituals, calibrates time estimates, and recovers from self-blame.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-exam-countdown

zimai233/dsh-exam-countdown
External Git bundle
Community · Topic auto-analysis

Chinese exam countdown for DeepSeek Harness. Query 64 built-in exams (gaokao, kaoyan, civil service, CET-4/6, CPA, bar exam...) and get days-until dates computed by pure date math with rolling yearly recurrence.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-figma-to-lottie

zimai233/dsh-figma-to-lottie
External Git bundle
Community · Topic auto-analysis

Figma/SVG to Lottie animation compiler for DeepSeek Harness. Turn SVG paths and keyframe data into self-contained .lottie.json files.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-image-search

zimai233/dsh-image-search
External Git bundle
Community · Topic auto-analysis

Multi-engine reverse image search aggregator for DeepSeek Harness. Turn one public image URL into Google Lens / Baidu / Yandex / TinEye / SauceNAO / IQDB / Ascii2d search links.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-video-downloader

zimai233/dsh-video-downloader
External Git bundle
Community · Topic auto-analysis

Media downloader for DeepSeek Harness. Detect and download video/audio from Bilibili, YouTube, Douyin, Xiaohongshu.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-wash-calendar

zimai233/dsh-wash-calendar
External Git bundle
Community · Topic auto-analysis

Recurring habit scheduling calendar for DeepSeek Harness. Turn last-wash dates and intervals into next-occurrence, schedule, check and advice tools for any recurring health/habit routine.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-archive-manager

zimixvx/dsh-archive-manager
External Git bundle
Community · Topic auto-analysis

A minimal DeepSeek Harness Web plugin that lists archived sessions and permanently deletes an archived session directory after explicit confirmation.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@zimzaza4/dsh-bash-win

zimzaza4/dsh-bash-win
External Git bundle
Community · Topic auto-analysis

Windows-first bash tools for DeepSeek Harness: git_bash (Git Bash) and wsl_bash (WSL2) model tools with bwrap sandbox, approval mode, terminal-style UI cards, and background-job support

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-llm-oauth

ziyou979/dsh-llm-oauth
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: OAuth / subscription-plan LLM providers (Grok, GitHub Copilot, OpenAI Codex, Anthropic, OpenRouter)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-content-studio

ZRui-C/dsh-content-studio
External Git bundle
Community · Topic auto-analysis

DSH bundle plugin: 内容创作与多平台分发 —— 桌面截屏/录屏、Markdown→小红书图文卡片(5 配色 × 4 版式、照片插图、背景图)、dev.to 官方 API 发布、发布前人工审阅(草稿落盘),并挂载 Playwright 与小红书 MCP。

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-plugin-text-translation

1738348785/dsh-plugin-text-translation
External Git bundle
Community · Topic auto-analysis

Text & document localization plugin for DeepSeek Harness (DSH): lossless tag-protected extraction, batch slicing and assembly for translation workflows

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
Type
Bundles
CLI installs

@a9i5k4/dsh-auto-memory

Aik358/dsh-auto-memory
External Git bundle
Community · Topic auto-analysis

DSH 自动记忆插件:三层记忆(用户级/项目笔记/每日日志)自动注入与检索、每日反思、可视化面板与设置页,支持继承其他 AI 工具的记忆。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.5
UI
1
CLI installs

dsh-session-hub

Asaiuta/dsh-session-hub
External Git bundle
Community · Topic auto-analysis

Aggregate and natively control DeepSeek Harness sessions across multiple remote dsh web servers from one pane: server registry, merged session list, history, prompt, cancel, rename, fork, model selection and approval/question answering.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-alpha.1
UI
1
CLI installs

dsh-session-audit

bwndlct/dsh-session-audit
External Git bundle
Community · Topic auto-analysis

Session execution analytics and audit reports for DeepSeek Harness. Understand how your agent actually worked: steps, tool calls, failures, repeated actions, token usage and verification signals.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-session-export

bwndlct/dsh-session-export
External Git bundle
Community · Topic auto-analysis

Export DeepSeek Harness sessions to portable, human-readable Markdown and JSON.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-cc-tui

ccch1mneyyy/dsh-TUI
External Git bundle
Community · Topic auto-analysis

Claude Code style interactive TUI front door for DeepSeek Harness agents, built on the ported Ink core.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.1
Type
Bundles
CLI installs

dsh-voice-mimo

ch1bug/dsh-voice-mimo
External Git bundle
Community · Topic auto-analysis

Voice for DeepSeek Harness backed by Xiaomi MiMo: browser-native 🎤/🔊 UI + voice_transcribe/voice_speak calling MiMo ASR/TTS directly, with a configurable voice map. Fork of zhuiyueya/dsh-voice (MIT).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-plan-usage

chendefine/dsh-plugins-plan-usage
External Git bundle
Community · Topic auto-analysis

套餐用量角标:在 Web 对话框右下角显示 5小时/周限/月限 三个用量窗口(支持 OpenCode Go、GLM Coding Plan 双渠道:Z.AI 国际版 / 智谱,以及 Kimi Code 会员套餐额度,月度会员额度可经 kimi-auth Cookie 增强),并在「设置 → 插件」提供各渠道独立的启用开关与 API Key 配置。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.1
UI
1
CLI installs

dsh-humanizer

DEEP-IOS/dsh-humanizer
External Git bundle
Community · Topic auto-analysis

中文文本人味化 bundle 插件:强制深层改写工作流(十维叙事审计 + 功能路径 + 15 层分布)+ 内容忠实守卫。编辑辅助,非 AI 检测器。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0-rc.4
UI
1
CLI installs

dsh-xiapan-media

dongsheng123132/dsh-xiapan-media
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness native vision, gpt-image-2 image generation, and Seedance video generation via Xiapan Cloud.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

task-passport

dongsheng123132/task-passport
External Git bundle
Community · Topic auto-analysis

Open task handoff protocol and local store for durable state across AI harnesses.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.2
Type
Bundles
CLI installs

dsh-remote

flymysql/dsh-remote
External Git bundle
Community · Topic auto-analysis

Remote-work assistant for DeepSeek Harness: connect SSH (password or key), pick a remote workspace, operate on it with rw_pick_workspace / rw_list_dir / rw_read_file / rw_exec / rw_sync tools, and mirror it to a real local directory (SFTP) so the DSH native workspace can adopt it.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.5.2
UI
1
CLI installs

dsh-vision-proxy

Flyvhidbwo/dsh-vision-proxy
External Git bundle
Community · Topic auto-analysis

DeepSeek brain + automatic image transcription for DeepSeek Harness: a `deepseek-vision` provider route that transcribes attached images to text via any OpenAI-compatible VLM before delegating to the text-only DeepSeek adapter. GUI image attachments work with DeepSeek as the conversation brain.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.6
Type
Bundles
CLI installs

dsh-mc-launcher

hellosky983/dsh-mc-launcher
External Git bundle
Community · Topic auto-analysis

Minecraft Launcher built on DeepSeek Harness: full-screen launcher UI (root slot) with Microsoft device-code login, version download/install, and game launch from the DSH host process.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-telegram-channel

hi-wenw/dsh-telegram-channel
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness Telegram mobile remote: workspace→session picker (Web-aligned), /model switch, same trajectory — dsh-plugin

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.3.1
Type
Bundles
CLI installs

dsh-balance-tide

huanyuLv/dsh-balance-tide
External Git bundle
Community · Topic auto-analysis

DeepSeek 余额 + 峰谷计价潮汐提示插件: 在 dsh Web UI 输入框下方显示账户余额、本会话估算消耗,并在余额前提示当前峰/谷价格档位、距下一次切换的倒计时与使用建议

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
UI
1
CLI installs

@huiliyi37/dsh-tianshu-tui

huiliyi37/dsh-tianshu-tui
External Git bundle
Community · Topic auto-analysis

dsh-tianshu-tui: an interactive TUI layer over the dsh-base profile, installable as a plugin (`dsh plugin --profile tui add @huiliyi37/dsh-tianshu-tui`)

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1-rc.6
Type
Bundles
CLI installs

dsh-quota-meter

huolianJiao/dsh-quota-meter
External Git bundle
Community · Topic auto-analysis

DSH web plugin: show the DeepSeek API key's remaining balance, estimate usable tokens per model (peak/off-peak pricing + measured cache-hit ratio), and chart the real cost of every turn.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-im-gateway

jelech/dsh-im-gateway
External Git bundle
Community · Topic auto-analysis

An IM gateway for the DeepSeek Harness: bridge WeChat (iLink) and other messengers into harness agent sessions, with slash-command controls (/new, /sessions, /status, /model, ...).

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-auto-approve

Jiao-XXX/dsh-auto-approve
External Git bundle
Community · Topic auto-analysis

A conservative automatic approval preset for DeepSeek Harness sandbox escalations

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
Type
Bundles
CLI installs

dsh-visual-plugin

jyh20030112/dsh-visual-plugin
External Git bundle
Community · Topic auto-analysis

Vision bridge plugin for DeepSeek Harness: when the main model has no vision, forward user images to a configurable OpenAI-compatible vision model and show results in a Web UI right panel. Host tool + browser half, distributed as a dsh bundle.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.2
UI
1
CLI installs

dsh-task-notify

kaotusi/dsh-task-notify
External Git bundle
Community · Topic auto-analysis

System-level task notifications for DeepSeek Harness (DSH): approval requests, awaited replies, and finished background jobs / subagents / workflows — pushed to the OS notification center with chimes, plus an in-app bell panel, toasts, and a clear button.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-bottom-bar

kc0ed/dsh-bottom-bar
External Git bundle
Community · Topic auto-analysis

底栏统计设置(固化版):可组装的输入框下方统计行 + 预估费用标注 + 设置页(底栏)。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.0.0
UI
1
CLI installs

dsh-agent-orchestration

LeslieWylie/dsh-agent-orchestration
External Git bundle
Community · Topic auto-analysis

Evidence-first multi-agent workflow planning, handoff validation, and Loop Guard skills for DeepSeek Harness.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-benchmark-evidence

LeslieWylie/dsh-benchmark-evidence
External Git bundle
Community · Topic auto-analysis

Benchmark manifests, fail-closed gates, artifact contracts, and result integrity skills for DeepSeek Harness.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-memory-evidence

LeslieWylie/dsh-memory-evidence
External Git bundle
Community · Topic auto-analysis

Git-first memory navigation and bounded evidence tools for DeepSeek Harness.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-plugin-release

LeslieWylie/dsh-plugin-release
External Git bundle
Community · Topic auto-analysis

Portable package contract, release checklist, and installation hygiene skills for DeepSeek Harness plugins.

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

dsh-workshop

loguhan/dsh-workshop
External Git bundle
Community · Topic auto-analysis

Steam Workshop style plugin store for DSH Web UI: browse, search and one-click install community plugins with mirror acceleration

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@linxin666/dsh-task-notify

ltao0829/dsh-task-notify
External Git bundle
Community · Topic auto-analysis

Task-completion reminder for DeepSeek Harness: in-page toast, OS notification, and sound when an agent turn or background job finishes

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-net-proxy

mafeis/dsh-net-proxy
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness network-proxy plugin: route the agent's own network requests (web_search / web_fetch / external APIs) through a configured HTTP/HTTPS-CONNECT/SOCKS5 proxy, persisted and auto-applied at startup, with a settings UI.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@mattheliu/7d7d

omdsh-dev/7d7d
External Git bundle
Community · Topic auto-analysis

7d7d —— 7k7k 风格的 DSH 游戏门户:在 Web UI 内生成、同步并游玩 HTML5 与自托管 Ruffle Flash 小游戏。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.4.0-rc.2
UI
1
CLI installs

@mattheliu/session-teleport

omdsh-dev/session-teleport
External Git bundle
Community · Topic auto-analysis

PostgreSQL-backed single-writer session handoff service for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.6.0-rc.2
Type
Bundles
CLI installs

dsh-marketplace

ouyangyipeng/dsh-marketplace
External Git bundle
Community · Topic auto-analysis

A safe, live plugin marketplace for DeepSeek Harness

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-whale-report

SenmuuuuW/dsh-whale-report
External Git bundle
Community · Topic auto-analysis

鲸鱼记事本 — 你的 Agent 年度/月度/周度/日报:从会话事件日志生成数据新闻官式报告,任意区间、定时生成。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

deepseek-harness-dingtalk

sliverp/DeepSeek-harness-dingtalk
External Git bundle
Community · Topic auto-analysis

DingTalk Stream text, image, and file channel bridge for DeepSeek Harness

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.3
Type
Bundles
CLI installs

dsh-auto-approval

StyxNether/dsh-auto-approval
External Git bundle
Community · Topic auto-analysis

A middle permission tier for DeepSeek Harness between workspace-write and danger-full-access: auto-approves harmless commands and operations targeting configured trusted areas, beyond the current workspace.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
1.2.0
UI
1
CLI installs

dsh-message-navigator

TableRogue/dsh-message-navigator
External Git bundle
Community · Topic auto-analysis

消息导航条 Message Navigator: DeepSeek Harness 网页聊天界面右侧的垂直消息索引(可安装的 dsh 组合包,Client-only 插件)

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

dsh-deepseek-protocol-doctor

Whning0513/deepseek-protocol-doctor
External Git bundle
Community · Topic auto-analysis

Offline DeepSeek request, tool-loop, reasoning_content, and SSE diagnostics for DSH

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
Type
Bundles
CLI installs

@xmanrui/dsh-feishu

xmanrui/dsh-feishu
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin for multi-bot Feishu setup and streaming chat

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.0
UI
1
CLI installs

@dsh-external/dsh-engram-relay

yjh051108/dsh-engram-relay
External Git bundle
Community · Topic auto-analysis

澶?engram 灏?KV锛氬缃?engram 杞帴灞傦紙璺ㄤ細璇濆垎灞傝蹇嗭細global/project/session锛孉I 鑷富鍐崇瓥褰掑睘 + 鍥犳灉閾炬帴绱㈠紩 + 娓愯繘鎶湶 + 涓诲姩鍞ら啋锛夛紝涓?DSH 瀹炵幇瓒呴暱涓婁笅鏂囪蹇嗙█鐤忚矾鐢憋紝涓庡畼鏂?compact 鍏卞瓨锛堝畼鏂硅吘 KV锛宔ngram 淇濈粏鑺傦級

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.4
UI
1
CLI installs

dsh-vision-router

ysr666/dsh-vision-router
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness plugin: turn-level vision routing with provider fallback chains, a cached vision_describe tool with JSON output and image downscaling, and optional per-host proxy support.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

dsh-expression

yyh-001/dsh-expression
External Git bundle
Community · Topic auto-analysis

DeepSeek Harness 表情包插件:内置默认图库(官方-001,92 张),bigram Dice 语义检索,send_meme 发图(Web/QQ),设置页管理面板。

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.2
UI
1
CLI installs

dsh-archived-sessions

Zephyr-vibe/dsh-archived-sessions
External Git bundle
Community · Topic auto-analysis

DSH web plugin: an Archived Sessions manager in Settings — browse archived conversations, expand per-session details (disk usage, downloads, tool usage, lineage, cross-session recall), multi-select and permanently delete.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

dsh-personalize

Zephyr-vibe/dsh-personalize
External Git bundle
Community · Topic auto-analysis

DSH web plugin: per-host personalization — global custom instructions, local long-term memory (collect / retain / integrate / manage), and reply tone presets.

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.1.1
UI
1
CLI installs

tokenledger

zh667/TokenLedger
External Git bundle
Community · Topic auto-analysis

Token usage accounting for DeepSeek Harness, reconciled against New API and Sub2API relay-site billing

BundlesBundles
HOSTCLIENTUITOOLDATAFLOW
Version
0.0.1
Type
Bundles
CLI installs

dsh-recommend

zp-home/dsh-recommend
External Git bundle
Community · Topic auto-analysis

DSH 插件透明排行与推荐:每日自动抓取 dsh-plugin 话题生态 + 公开评分模型 + rank/recommend/search 工具 + 设置页排行标签

UI & clientBundlesWeb UI
HOSTCLIENTUITOOLDATAFLOW
Version
0.2.0
UI
1
CLI installs

deepseek-harness

deepseek-ai

DeepSeek Harness English [中文 DeepSeek Harness ( dsh ) is an open source agent harness developed by [DeepSeek AI. It uses an architecture where everything is a plugin , and is powered by [Cordis, whose design is described in [ A Programming Paradigm for Spatiotemporal Composability . Developer preview DeepSeek Harness i

Native PluginOtherActive
Stars
35,897
Forks
2,766
Updated
today

colleague-skill

titanwings

🧬 dot skill(同事.skill) "You folks building LLMs are all code sages! Flesh is weak! Ascend to cyberspace!" [ [ [ [ [ [ [ [ [ [ 🧑‍💼 &nbsp;Your colleague quit, your mentor graduated, your teammate transferred — taking their whole playbook and context with them? 💞 &nbsp;Your family, old friends, partner drifting apart —

SkillAgent & WorkflowActive
Stars
21,023
Forks
2,033
Updated
today

OpenBiliClaw

whiteguo233

🦀 OpenBiliClaw 通用个性化内容推荐 Agent——本地运行、跨平台理解你、只为你一个人构建 A general purpose personalized content discovery Agent — runs on your machine, understands only you [ [ [ [ [ [ [ [ [项目主页 [English 中文 ### 🆕 重要更新:OpenBiliClaw 现在可以装进 DeepSeek Harness 新增 DSH 客户端插件 —— 把 OpenBiliClaw 装进 [DeepSeek Harness:DSH 界面常驻第四栏(推荐 / 内容库 / 对话 / 画像

Native PluginAgent & WorkflowActive
Stars
1,896
Forks
106
Updated
today

deeptide

paean-ai

DeepTide Built by DeepSeek, for DeepSeek. An AI coding agent that flows through your codebase like a tide. The name: DeepSeek + tide (terminal IDE). Three flavors, same team DeepTide for macOS DeepTide CLI ( deeptide ) DeepTide CLI Rust ( deeptide rs ) Form factor Native macOS app Cross platform terminal CLI Cross plat

UI PluginAgent & WorkflowQuiet
Stars
1,013
Forks
133
Updated
1mo ago

mobius

nutshellai-tech

English · 简体中文 Mobius The first self evolving open source Agent OS One system to connect your team, AI agents, devices, and compute Building a perfect AI system once and for all is like finding the end of a Mobius strip — impossible by design. Mobius is the world's first self evolving open source Agent OS. Not a fixed

Native PluginAgent & WorkflowActive
Stars
912
Forks
20
Updated
today

modlens

liustack

ModLens Give a text only model sight, and just paste the image. 🥇 The FIRST vision plugin for DeepSeek Harness (dsh) 🥇 简体中文 · Troubleshooting · Configuration · Output contract · Security · ModSearch (web) DeepSeek and GLM have no vision capability and cannot read images. ModLens is a plug in vision engine that gives

SkillAgent & WorkflowActive
Stars
679
Forks
22
Updated
today

MuseAI

yejiming

MuseAI — 本地 AI 伴侣、文字冒险与穿书互动应用 [English 简体中文 创建你的 AI 角色,进入你的故事世界。 支持 AI 伴侣聊天、角色卡、世界书、长期记忆、文字冒险、穿书剧情和本地数据保存。 MuseAI 是一款面向沉浸式角色互动的本地 AI 应用。你可以创建自己的角色与世界设定,和角色持续对话、共同经历冒险,并在一次次互动中积累关系、记忆与羁绊。 它不只是普通的 AI 聊天工具,也不只是写作软件。MuseAI 更像一个可以保存世界、角色、记忆和关系的本地 AI 互动世界。 目录 [MuseAI 适合谁 [核心体验 [辅助创作功能 [快速开始 [界面一览 [数据存储说明 [常见问题 [友情链接 MuseAI 适

Native PluginAgent & WorkflowActive
Stars
511
Forks
45
Updated
5d ago

agent vision toolkit [ [ [ [ [ [ What it thinks is what it sees — give any text only coding agent eyes: image Q&A, long screenshot OCR, frontend UI restoration, and GUI automation, as a vision toolkit plus a skill, with optional drop in integration for Codex, Claude Code, Pi, Oh My Pi, and OpenCode. 🎯 An agent's visio

UI PluginAgent & WorkflowActive
Stars
498
Forks
22
Updated
today

dsh-web-ui

zhu1090093659

dsh web ui · DSH Web UI 中文 [English dsh web ui 是 DeepSeek Harness(DSH)Web UI 的插件与皮肤集合:任务看板、Git 图谱、右侧面板、移动端远程、远程连接、鲸鱼娘宠物、实时令牌统计,以及皮肤中心。所有插件既可独立安装,也可通过聚合包一次装齐。 功能插件 任务看板 在侧边栏点击「任务看板」进入。任务按五列状态组织:待规划、待办、进行中、已完成、已失败。点击卡片上的「执行」,任务将由真实的 DSH 智能体会话执行,完成后状态自动回写;需要复盘时,可直接跳转到执行会话查看完整过程。 任务支持定时执行:在详情中配置 cron 表达式(如每天 23:00 自动升级 DSH

UI PluginWeb UIActive
Stars
451
Forks
20
Updated
today

🧰 HarmonyOS NEXT 开发者专家技能包 给 Gemini CLI、Claude Code、Codex 等 AI 编程助手使用的 HarmonyOS NEXT 离线参考技能库。 [ [ 面向 API 12 23 的本地知识源,覆盖 ArkTS、ArkUI、NDK、工具链、调试、发布与多端适配。 🎯 解决的问题 AI 编程助手在 HarmonyOS 开发中经常碰到的几类问题: 找不到 @ohos. 模块的真实文档 不确定某个 ArkUI 组件或 NDK 头文件是否存在 API 版本差异、新增内容未纳入知识库 旧文档链接失效或迁移 DevEco Studio 模拟器、 hdc 、 uitest 等本地自动化的验证路径不清晰

SkillAgent & WorkflowQuiet
Stars
289
Forks
21
Updated
1mo ago

Abu-Cowork

PM-Shawn

English [中文 Abu Your AI Desktop Office Assistant — Just Leave It to Abu A locally run AI desktop assistant inspired by Claude Code's Cowork mode. Tell Abu what you need — it reads files, runs commands, writes docs, and builds reports, all on your machine. [ [ [Download · [Quick Start · [Features · [User Guide · [Build

SkillAgent & WorkflowActive
Stars
279
Forks
72
Updated
today

claude-paper

alaliqing

Claude Paper Transform research papers into comprehensive learning environments [English [中文 [ [ [ A powerful Claude Code plugin that automates research paper study through intelligent material generation, code demonstrations, and an interactive web viewer. Library View Browse and search your paper collection Reading V

Native PluginOtherLow activity
Stars
270
Forks
23
Updated
4mo ago

awesome-dsh-plugins

AdamPlatin123

Awesome DSH Plugins 每天自动扫描 286+ 个 DeepSeek Harness 插件的兼容性雷达:哪个能用、哪个要改、哪个已经碎了,一眼看清。 DeepSeek Harness(DSH)插件生态的 目录 + 兼容性情报站 。 找插件 :按功能领域浏览全部插件(Web UI 增强 / Agent 能力 / 编码开发 / 消息通讯 / 娱乐生活……),想找输入增强、唤醒控制还是摸鱼面板,不用在几百个名字里翻 避坑 :每个插件对当日 mainline 快照做四维检查(补丁 / seam / peerDeps / 编译)加运行级实测,兼容与否有证据,不是嘴上说说 跟上变化 :DSH 几乎每天推新版本,插件漂移随时发生;

Native PluginOtherActive
Stars
268
Forks
14
Updated
today

axern

cofy-x

Documentation · Quickstart · SDKs · 简体中文 Axern is an open source sandbox platform for AI agents. It isolates untrusted agent generated code with runsc and runs trusted long lived services with runc through one resource and lifecycle model. The CLI and the Go, Python, and TypeScript SDKs expose the same public APIs for

Native PluginAgent & WorkflowActive
Stars
245
Forks
6
Updated
yesterday

Open Managed Agents Open source alternative to Claude Managed Agents — and a foundation for open source, self hosted Claude Tag style agents. 🌐 [openma.dev · 📖 [docs.openma.dev · 💬 [github.com/openma ai/open managed agents Write a harness. Deploy. The platform runs it — with sessions, sandboxes, tools, memory, vault

Native PluginAgent & WorkflowActive
Stars
228
Forks
29
Updated
3d ago

dsh-cc-tui

ccch1mneyyy

dsh cc tui — Claude Code 风格的全屏交互终端 DeepSeek Harness 官方目前还没有终端 TUI(只有 Web UI)——这个项目就是来补位的 : 一个美观且实用的 Claude Code 风格 TUI 插件(cordis 挂载):像素鲸鱼顶栏、双流光大字、 实时工作状态行、思考流式展开、双击 Esc 时间回溯、蓝白上下文进度条 + TPS 仪表。 零核心改动,纯插件挂载。 界面预览 截图放 screenshots/ 目录,文件名与上面一致即可自动显示;建议 Windows Terminal 全屏后截图( Win+Shift+S ),窗口建议 ≥110 列。 为什么值得装 颜值即生产力 :顶栏是半块

UI PluginWeb UIActive
Stars
173
Forks
5
Updated
today

DSH Vision Toolkit [ [ [ [ [ [ DSH Vision Toolkit brings [ agent vision toolkit into DeepSeek Harness as a native Profile Bundle. Give text only DSH agents eyes—and keep vision in the harness—with intent aware image Q&A, OCR, original pixel grounding, UI restoration, pixel verification, managed Artifacts, and Web Setti

UI PluginWeb UIActive
Stars
141
Forks
2
Updated
today

English &nbsp;&nbsp; &nbsp;&nbsp; 简体中文 Awesome DeepSeek Harness [ Install &nbsp;&nbsp;&nbsp; Contribution guide &nbsp;&nbsp;&nbsp; Public plugin topic &nbsp;&nbsp;&nbsp; Issues &nbsp;&nbsp;&nbsp; 完整目录 &nbsp;&nbsp;&nbsp; Curated DeepSeek Harness (DSH) ecosystem: plugins, tools &amp; infrastructure. Sources: dsh external

IntegrationAgent & WorkflowActive
Stars
120
Forks
16
Updated
today

dsh better sidebar 一个插件,一套完整工作台 文件管理 编辑预览 内嵌浏览器 真实终端 Git 面板 后台任务页 右侧栏 + 底部面板双工作台 ,一个插件全部搞定。 支持 Tab 窗口随意拖拽,支持三方拓展注册新 Tab 页面和文件预览 🌏 中文 · English https://github.com/user attachments/assets/23187822 047e 45cc b480 fe997bd55b86 ✨ 功能一览 🗂️ 资源管理器 :懒加载目录树(根 = 会话 cwd)、点击在侧边栏打开、行尾 @文件 引用到输入框、右键复制路径 📝 编辑与预览 :CodeMirror 6 多语言高亮

UI PluginWeb UIActive
Stars
107
Forks
2
Updated
today

dsh-deep-whale

Small-tailqwq

dsh deep whale · 鲸娘皮肤系列 DeepSeek Harness Web GUI 的鲸鱼娘主题皮肤系列(独立分发仓库)。 效果预览 点击图片可查看完整尺寸。 亮色模式 暗色模式 [ [ 住户 皮肤 包名 说明 许可 [maid atelier @dsh external/dsh client ui skin maid atelier 深海女仆工坊:双女仆背景、深海蓝蕾丝界面与 Q 版侧栏 CC BY NC SA 4.0 安装 许可 本仓库各皮肤为 衍生创作 ,整体以 CC BY NC SA 4.0(署名 非商业性使用 相同方式共享)发布,禁止商业性使用。署名链见各皮肤 NOTICE 。 皮肤工程脚手架来自 [dsh

Native PluginOtherActive
Stars
100
Forks
0
Updated
today

dsh-ads

Nagi-ovo

dsh ads 简体中文 English 把 DeepSeek Harness 变成 2005 年门户网站。连 inference 都逃不过广告。 广告是假的,插件是真的,抽到 V4 Pro 的希望也是真的渺茫。 dsh ads 会在侧栏、对话、推理中途和右下角塞入一整套虚构广告。它看起来会暂停 inference,实际上模型一直在后台工作,只是后续回答和工具调用要等广告结束才显示。 插件不会只拿自己开涮。GitHub 上带 [ dsh plugin topic、且最近两周更新过的公开插件会进入推荐位,点击广告就能打开真实仓库。仓库换到个人账号或其他组织后仍能被发现。 两套互联网垃圾美学 切换 DSH 的「设置 → 语言」,当前页面

UI PluginOtherActive
Stars
94
Forks
0
Updated
today

awesome-dsh-plugin

awesome-dsh-plugin

Awesome DSH Plugin [ [ English [中文 A curated list of plugins for [DeepSeek Harness ( dsh ). DeepSeek Harness is DeepSeek's open source agent harness — a runnable coding agent (Web and headless), built on a framework where everything is a plugin: models, tools, sandboxes, session storage, UI, even the agent loop itself.

Native PluginOtherActive
Stars
84
Forks
7
Updated
today

dsh tianshu tui — DeepSeek Harness 终端 UI 中文 [English dsh tianshu tui ( @huiliyi37/dsh tianshu tui )是官方 [DeepSeek Harness 上的交互式终端 UI 插件。渲染核心从 [天枢 Tianshu Tui 演进而来(Apache 2.0;逐文件来源见 [SOURCE MAP.md)。UI 是纯展示层:所有 agent 状态都来自会话事件流。 安装 本包不是独立程序。须先有官方 CLI [ @deepseek ai/dsh ( 0.1.0 rc.6 )。只 npm i 本包跑不起来。 1. 准备环境 [Node.js ^22.1

UI PluginWeb UIActive
Stars
72
Forks
0
Updated
today

phi

pulseaiclub

[English [中文 phi A minimal terminal coding agent harness in Go — a sibling to Pi. Sub agents, hashline edits, and a permission gate; any OpenAI compatible or Anthropic model, no vendor lock in. phi is deliberately small: a model loop, a handful of tools, a TUI, and Markdown rendering that makes assistant output readabl

UI PluginWeb UIActive
Stars
70
Forks
4
Updated
yesterday

dsh-agent-teams

NanmiCoder

dsh agent teams DeepSeek Harness 的 AgentTeams 插件:安装后,任何会话只需一句自然语言(例如"用 AgentTeams 调研一下 XX"),即可驱动一个 多智能体团队 协作完成目标,并在 Web GUI 右上角实时看到团队活动面板。 核心语义移植自 Claude Code 的 AgentTeams: 创建团队 (队长 = 当前会话 agent)→ 拉成员 (可续聊子代理)→ 拆任务并声明依赖 → 成员间直接收发消息 (邮箱直达 + 唤醒,无队长中转)。 界面预览 安装 前置要求 Node.js ^22.19 或 =24 ;pnpm 11 已安装或可通过 npx 使用 DeepSeek Ha

Native PluginAgent & WorkflowActive
Stars
62
Forks
6
Updated
today

oh-dsh

hust-open-atom-club

简体中文 · English Oh DSH Desktop 把 DeepSeek Harness 装进一个可安装、可扩展的桌面工作台。 安装 · 架构 · 内置 Plugins · 构建与发布 主界面、Side Panel 与 Porcelain 桌面皮肤 Oh DSH Desktop 保留 DSH React UI,把固定版本的 DSH runtime、Node.js、 Electron 和本地能力打包进一个 macOS 应用。模型仍运行在云端,桌面端负责 终端、Workspace、Git、浏览器、窗口集成和 plugin 生命周期。 它不是另一套 DSH 前端,也不需要额外安装 Web Terminal 或 shell plug

UI PluginWeb UIActive
Stars
57
Forks
9
Updated
today

argo

taxueseek

中文 · English · 日本語 · 한국어 · Español 介绍 · 对比 · 证明 · 机制 · 快速开始 · 能力 · 配置 · 更新 它和「模型自带搜索 / AI 搜索 / 聚合搜索」比,强在哪 简单来说:前三种方案解决「 人 找信息」,Argo 解决「 Agent 及搜索核查于一身,具备一条龙的搜索服务 」。差别不在界面,在交付物,给人看的叫总结页或链接清单,给 Agent 的应是能排序、能复核、不撑爆上下文的优质内容,更可靠的搜索信息。 维度 模型自带搜索 AI 搜索(总结型) 聚合搜索 / 搜索引擎 Argo 结果形态 拼好的长文本 给人看的总结页 SERP 链接清单 精简 JSON:证据候选 + 可信度分解

Native PluginAgent & WorkflowActive
Stars
56
Forks
1
Updated
today

[Morning Star Harness Workflow Engine · Agent Plugin English / [中文 GitHub · Issues [ [ [ [ [ Morning Star is an Agent Plugin for harness engineering workflows: a TypeScript Harness Workflow Engine ( @mstar harness/engine ) enforces deterministic workflow gates, while mstar judgment skills drive multi agent code deliver

SkillAgent & WorkflowActive
Stars
39
Forks
2
Updated
today

dsh open in vscode Open a workspace directory in VS Code straight from the DeepSeek Harness web GUI: every real Workspace row in the sidebar gains an Open in VSCode row inside its … overflow menu. What it does The client half uses the harness's sidebar.workspaces.row menu slot when available and falls back to a scoped

UI PluginDeveloper ToolsActive
Stars
33
Forks
1
Updated
today

dsh_workflow

icetomoyo

DSH Workflow 把 DeepSeek Harness 的一次性多 Agent 调度,升级为可生成、可保存、可治理、可观察、可恢复的 Workflow 层。 中文 · English · 快速开始 · DSH 价值 · 能力 · 对标矩阵 @dsh external/workflow 是一个官方 bundle 形态、零核心 patch 的 DSH 插件。它完整参考 KodaX 的 workflow 设计能力,并针对 DSH 的 Cordis、 ctx.subagents 、Session、后台 jobs、审批、命令和工具机制做独立实现。 它不替换 DSH 已有的前台 workflow 工具。原生工具适合“这一次把若干工作并行

Native PluginAgent & WorkflowActive
Stars
33
Forks
0
Updated
today

DSH OpenPencil The DeepSeek Harness plugin for OpenPencil — preview, inspect, and edit real .op documents inside a conversation. Exact Multi Frame Previews &bull; Interactive Canvas &bull; Managed Editor &bull; Agent Native Design Tools npm: @zseven w/dsh openpencil · Current plugin release: 0.1.0 rc.1 · Tested with DS

Native PluginOtherActive
Stars
32
Forks
0
Updated
today

Awesome DeepSeek Harness Plugins [ [ [ A community curated, vendor neutral catalog of plugins for DeepSeek Harness (DSH) — from developer tooling and data workflows to media, operations, and everyday life. Language: English [简体中文 DeepSeek Harness plugins can connect an agent to tools, services, devices, and repeatable

Developer ToolDeveloper ToolsActive
Stars
30
Forks
10
Updated
today

dsh visualize 简体中文 English 让 DSH 不只回答一段文字。模型调用 visualize 后,Web UI 会在对话里直接出现一张可交互卡片,用来做模拟器、图表、对比面板或 UI mockup。 [ 安装 构建产物已经提交,不需要额外的构建步骤: 装了社区 [plugin registry 的用户,也可以在「设置 → 插件」里安装。 怎么用 直接告诉模型你想看什么,例如「做一个能调参数的排序算法可视化」。模型会写出一份 HTML fragment,再调用 visualize(path, title?, mode?) 把它放进对话。适合并排比较的内容可以使用 mode: "wide" 。 卡片会跟随 DSH 的

UI PluginWeb UIActive
Stars
28
Forks
1
Updated
today

zeromd

yuukiLike

zeromd [中文 English Local first Obsidian multi device sync. Zero cost. Zero signup. Zero maintenance. Why This Exists The most AI native knowledge base isn't a SaaS product with an API. It's a folder of markdown files on your disk. And .md isn't done evolving — Mermaid already turned plain text into live diagrams. Inter

Developer ToolDeveloper ToolsLow activity
Stars
28
Forks
1
Updated
4mo ago

dsh find plugins 简体中文 English 对 DSH 说一句「有没有插件能……」,它就会从全 GitHub 的 [ dsh plugin topic 里找出候选,解释差别,等你选好以后再安装和验证。 仓库属于个人还是组织并不重要。只要是公开仓库并带有 dsh plugin topic,转移仓库后仍然能被发现。 安装 把本仓库链接发给 DSH,说一句「帮我装这个技能」。 手动安装时,把 skills/find plugins/ 整个目录复制到 $DSH HOME/skills/ ;只想给当前项目使用,则复制到 /.agents/skills/ 。目录 watcher 会让它立即生效。 它会怎么做 Skill 会先运行

Native PluginOtherActive
Stars
26
Forks
0
Updated
today

dsh Browser Control English [中文 Connect [DeepSeek Harness to the Chrome tab you are already using. The model can read page content, click controls, fill forms, scroll, and navigate while preserving your login state, session, and cookies. A side panel provides the conversation UI. dsh is DeepSeek AI's open source, plugi

UI PluginWeb UIActive
Stars
25
Forks
0
Updated
today

openguardrails

openguardrails

OpenGuardrails The vendor neutral protocol for AI agent safety & security — and the neutral benchmark that ranks the vendors. Integrate safety & security once, enforce it across every agent, sandbox, and LLM — instead of wiring every vendor to every tool by hand. Apache 2.0 · [openguardrails.com This monorepo is the ho

Native PluginAgent & WorkflowActive
Stars
24
Forks
5
Updated
today

dsh-at-file

omdsh-dev

dsh at file Codex style @file mentions for the DeepSeek Harness web GUI. Type @ in the composer, search the workspace files (and directories) as you type, press Enter to attach, and the referenced content ships to the model when the message is sent. The draft keeps the plain text @path token (no chip, no overflow); the

Native PluginOtherActive
Stars
24
Forks
0
Updated
today

dsh notification Desktop notifications for the DeepSeek Harness web GUI. When a session finishes a turn, the browser shows a system notification (via the Notification API), so you can switch tabs and still know when DSH is done. Per outcome toggles and include/exclude keyword rules control exactly which completions not

Native PluginOtherActive
Stars
22
Forks
2
Updated
today

DSH Turn Rewind [中文说明 Message anchored project file recovery for [DeepSeek Harness, with an option to restart from the restored request. Turn Rewind is the user facing feature, repository, and Profile Bundle name. Change Ledger is the durable restore engine underneath it: the ctx.changeLedger service, on disk format, a

Native PluginAgent & WorkflowActive
Stars
22
Forks
0
Updated
today

Browser Bridge 通过 WebSocket 把本地工具和真实浏览器连接起来的桥,不需要 CDP。 扩展安装在浏览器里,作为"手";server 是本地的 WebSocket 枢纽;client 是发指令的入口(Rust CLI),也可通过 bridge mcp 暴露给 Claude / Cursor 等 agent。 项目结构 目录 技术 职责 extension/ Vue 3 + TypeScript(WXT / Manifest V3) 安装在浏览器里,执行指令 server/ Rust(tokio + tokio tungstenite) WebSocket 枢纽,路由指令与响应 client/ Rust CLI(

IntegrationBrowser & WebActive
Stars
22
Forks
3
Updated
3d ago

ui-status-label

alingalingling

dsh ui status label 把你的鲸鱼娘思考时的 deep diving 自定义成任意你想要的样子。 为 dsh Web 聊天视图提供可配置的运行中轮次状态文案:General 设置区的一行文本输入,插件把聊天视图运行状态栏的文案替换为你输入的文字(支持 DOM 注入和上游 conversationStatus 服务两条路径,见[兼容性)。插件注册持久的 ui status label settings 命名空间(默认 小难梁在0721 );在设置行输入新文字后,聊天视图在轮次运行期间(等待首 token、工具执行、流式输出)显示的状态文案随之更新。选择持久化在 $DSH HOME/settings.yaml ,跟随同一

UI PluginWeb UIActive
Stars
21
Forks
0
Updated
today

whale girl DSH Web GUI 内的桌面宠物(QQ 宠物形态) 右下角悬浮的积累型伙伴:可拖拽、可投喂/玩耍,陪伴你的工作台脉搏—— 完成任务/会话/活跃陪伴时长积累成资历等级、称号与回忆。 安装 官方 bundle 插件 格式(仓库根 package.json 的 dsh.bundle + dsh.client )。经官方 profile 管理: 装完 重启 web (bundle 层在启动时合成),右下角出现宠物:点击弹出菜单(🍗 喂食 / 🎾 玩耍),拖拽可移动;hover 显示状态条(资历等级/任务数/最近共同回忆)。初始配置/欢迎页(onboarding)宠物隐藏。 更新插件时 dsh plugin pr

UI PluginDeveloper ToolsActive
Stars
21
Forks
0
Updated
today

oh-my-dsh

LaplaceYoung

oh my dsh Topics: deepseek harness · dsh plugin · dsh ecosystem · oh my dsh 从其他开源 harness 中选取有用的能力,重写为适配 DSH(DeepSeek Harness SDK)的插件。 所有插件遵循 DSH 的插件规范:只通过扩展接缝( ctx.effect() / ctx.on() / ctx.tools 等)注册, 不修改 agent loop 骨架、不引入热路径开销 。 目标 DSH 是一个插件化的 agent harness。opencode、oh my pi、Codex CLI、Claude Code、pi、Goose、Aider、 Lan

Native PluginAgent & WorkflowActive
Stars
21
Forks
0
Updated
today

Awesome DSH Plugins 用 30 秒找到适合你的 DeepSeek Harness 插件。 不只是仓库列表:这里告诉你插件解决什么问题、适合谁,以及从哪里开始。 [ [ [English · [浏览全部 212 个插件 · [推荐一个插件 · [机器可读数据 如果这个列表帮你找到一个有用的插件,欢迎点一个 Star ⭐。它能帮助更多 DSH 用户发现这个生态。 你想让 DSH 做什么? 我想要…… 推荐从这里开始 为什么 更方便地管理和发现插件 [plugin registry 在浏览器面板中管理 repository 插件,并提供开发引导。 看清后台任务进度 [dsh task status 在对话页显示任务进度和

Native PluginOtherActive
Stars
18
Forks
2
Updated
today

dsh-handbook

Electricitysheep

DeepSeek Harness 白皮书 · dsh handbook 从 0 到 1 玩转 DeepSeek Harness 的新手百科全书 · 中文 · [English [!WARNING] dsh 当前为 0.1.0 rc.6 (预发布阶段),生产环境请谨慎评估,详见 [ℹ️ 版本说明。 🚀 快速体验(30 秒) 想系统学?看 [🗺 学习路径(3 天计划);想先跑?[第 2 章:五分钟快速上手;想速查?[📇 一页速查卡 🎯 这是什么 DeepSeek Harness( dsh ) 是 DeepSeek 官方 2026 08 13 开源的 Agent 运行时——一个"一切皆插件"(everything is a plu

UI PluginAgent & WorkflowActive
Stars
18
Forks
0
Updated
today

dsh custom tool Custom tools for the DeepSeek Harness: users author their own JavaScript tools in the settings UI with a Monaco (VS Code) editor and TypeScript intellisense, and the model grows and prunes the same toolset itself through custom tool create / custom tool remove / custom tools list . Every tool is durable

Native PluginOtherActive
Stars
18
Forks
0
Updated
today

dsh-launcher

Ruler4396

dsh launcher [ [ [ DeepSeek Harness 的 Windows 轻量启动器:开机自启 + 独立小窗口,双击即用,不用敲命令。 安装 方式一:MSI 安装包(推荐) — 下载 dsh launcher .msi 双击安装,向导里可勾选是否开机自启;安装和卸载会弹一次 UAC 管理员确认(系统级安装,装到 %ProgramFiles%\dsh launcher ,也可自定义目录)。卸载:设置 → 应用 → dsh launcher → 卸载。 方式二:便携版 ZIP — 下载 dsh launcher windows.zip ,解压后双击 DshWeb.exe ;删文件夹即卸载(自启/快捷方式用 uninst

Native PluginBrowser & WebActive
Stars
16
Forks
0
Updated
today

IllusionAgent [ [ Where fantasy meets functionality. The best of many worlds, refined into one intelligent agent. [中文版 English 📖 Introduction IllusionAgent is an open source AI agent platform. It unifies a multi provider LLM gateway, a bilingual (Chinese/English) CLI, a browser based Web UI, and a flexible extension e

Native PluginBrowser & WebActive
Stars
16
Forks
5
Updated
today

dsh annotation English · [简体中文 Selection annotation plugin for DSH Web: select text → annotate → press Enter to send it along with your message; the model replies to each annotation by number. Select any text in an assistant reply to annotate it (the annotation body may be left empty = just mark the passage). Annotatio

UI PluginWeb UIActive
Stars
15
Forks
0
Updated
today

@dsh external/dsh ui whale 简体中文 [English DSH Web UI 的常驻像素鲸鱼伙伴插件:会话标题栏(标题行右侧)常驻一只小鲸鱼,随会话快照实时反应—— 零核心改动 。 版本对应 / Version compatibility 构建产物随 DSH 快照版本更新,安装时按快照选择对应版本: 插件版本 DSH 快照 说明 v0.1.0 snapshots/20260805T134133Z (snapshot0805) 旧构建,按旧安装方式( /.dsh/config.yaml + pnpm add w link: ) v0.2.0 snapshots/20260806T160212Z (snapsh

UI PluginWeb UIActive
Stars
15
Forks
0
Updated
today

dsh-genui

omdsh-dev

🎨 dsh genui English · [简体中文 Give the model's answers a face — the text is still there, and an interactive UI is already live. 🔌 Ecosystem: the repo carries the #dsh · #dsh plugin topics — welcome to be listed by @dsh plugin. The model no longer just answers in text. Install this plugin, ask "how are this month's orde

UI PluginBrowser & WebActive
Stars
14
Forks
0
Updated
today

dsh interconnect 跨实例消息互通与事件通知插件,用于 [DeepSeek Harness (DSH)。 让一个 DSH 实例能向同一个实例、另一台机器、或另一台机器上的别的 DSH 实例发送消息、探测活性,并在实例之间双向推送事件。 包含两个插件 interconnect —— host 服务( ctx.interconnect ): send / ping HTTP 端点( /interconnect/ ):跨实例、跨机器投递消息、探测活性 /interconnect/link WebSocket 端点:双向实时事件推流,含心跳与指数退避重连 事件 fan out(HTTP + WebSocket),入站事件以 i

UI PluginWeb UIActive
Stars
13
Forks
1
Updated
today

dsh memory evolve 使用场景指南 一句话 :让 DSH 里的 AI 拥有跨会话的长期记忆、帮你管理待办与技能、还能拉起一群 AI 会话和外部 AI 代理协同干活—— 越用越懂你,换会话不丢上下文 。 本指南按真实工作流组织,每个场景讲「适合谁、能做什么、怎么用、会得到什么」。 相关文档:[详细功能说明 · [记忆同步 · [更新日志 认识它(30 秒) 装上插件后,打开任意会话,你会多出一排能力标签: 记忆 · 技能 · 待办 · 无限画板 · COI 调度 · 会话广播 · 提示词 · 记忆同步 · 模型设置 · 书签 · 会话评审 · Web UI 设置 · Memory Evolve 设置 。AI 侧则多了一批

Native PluginAgent & WorkflowActive
Stars
12
Forks
0
Updated
today

distill

LoserFox

distill 安装(DSH profile bundle) 插入行 id: distill (cordis.patch.yml);不注册任何面向模型的工具或技能——它只挂接 agent/turn stopping 并运行后台反省。 宿主前提 :dsh 组合必须挂载 subagent spawn in process (注册反省子代理使用的 spawn 子代理提供方)与 tool skill (子代理可调用的 skill 查看器)——两者在 base bundle 中默认存在。 卸载: dsh plugin profile web remove distill 。 安装后需重启目标 profile 的 DSH 进程(组合层变更不参与

Native PluginAgent & WorkflowActive
Stars
12
Forks
0
Updated
today

🔴 线上合影进行中 收官之夜,来合影 👉 https://rio palm cfr benz.trycloudflare.com/ (活动期间在线;仅 dsh external 内测成员可入镜。地址为活动期临时隧道,永久纪念版见 [ archive/index.html ) DSH 内测大合影 📸 · dsh group photo DSH 内测收官之夜诞生的合影墙:内测成员用 GitHub 登录( 零权限授权 ),通过 冻结白名单 校验后,在拍立得墙上入镜并留下一句话。这是内测社区的一件纪念作品。 A polaroid style group photo wall built for the last night of th

SkillAgent & WorkflowActive
Stars
12
Forks
1
Updated
today

dsh-share

hellodigua

dsh share 简体中文 [English 把 DSH 中的一轮问答生成 PNG 图片,可直接复制到剪贴板或下载,不修改 DSH 核心代码。 功能 在每轮回答末尾增加分享按钮,可复制或下载 PNG 保留 Markdown、代码块、表格、图片和工具调用摘要 可调整图片宽度和字号,长图支持滚动预览 可勾选“不展示过程”,只保留提问和最终回答 默认使用“平板 + 标准字号”,设置会自动保存在浏览器中。 安装 从 GitHub tag 安装 建议固定版本,避免仓库后续更新改变已经安装的代码: 安装完成后重启 dsh web 。 从本地 checkout 安装 修改源码后先运行 corepack pnpm build ,再强制刷新 pro

Native PluginOtherActive
Stars
10
Forks
0
Updated
today

plugin registry DSH 插件生态基建:薄控制台 + 官方插件开发引导 浏览器面板管理 profile 插件安装态(bundle 层栈 + insert 行 + 启停),零补丁; make dsh plugin skill 引导开发者按官方格式写插件。 转向(2026 08) :官方 0809 推出仓库插件机制( .dsh plugin )覆盖旧独立机制 95%,本仓库收敛为 薄控制台 + 插件开发规范和引导 (旧 patch/CLI/面板已移除)。 0811 起官方删除 repository plugins 机制 ( vendor/loader/src/repository.ts ),外部插件统一经 web prof

UI PluginAgent & WorkflowActive
Stars
10
Forks
0
Updated
today

dsh plugin check [English DSH 插件健康检查工具 —— 扫描插件仓库,诊断 清单协议 / patch 格式 / 构建陷阱 / hub 收录状态 ,输出合规报告与修复建议。 只读 ,不修改、不构建被检查仓库。 [ 动机 组织内插件仓库持续增长,作者踩过的坑(cordis 双副本、tsconfig 三件套、patch name 不一致、产物 .ts 残留——运行时必崩)本可以自动化拦截。本工具把全部实测踩坑变成 可自动检查的门禁 :模型或 CI 直接对仓库目录跑一次 plugin check ,拿合规报告与修复建议。 安全模型 只读 :仅 readdir/stat/readFile ,绝不修改或构建被检查仓库

Developer ToolDeveloper ToolsActive
Stars
10
Forks
0
Updated
today

DSH Computer Use [ Native macOS control for DeepSeek Harness that keeps your real cursor and foreground application alone by default; the Bundle may bring the target app forward before keyboard input for reliable typing. DSH Computer Use gives an Agent fresh Accessibility observations, exact process/window targeting, s

UI PluginWeb UIActive
Stars
10
Forks
0
Updated
today

DSH Message Edit moeblack/message edit 为 DeepSeek Harness 补充基于事件溯源的「消息编辑与重生成」能力。插件不改写历史事件,也不修改 DSH 引擎内部;每次编辑、重生成或重试都会从目标回合之前创建一个新会话版本,原会话始终保留并可随时切回。 功能 编辑消息 :可编辑已落定的用户文本、 assistant.reasoning 思考块与 assistant.response 回复文本。 重生成 :从最后一条已落定助手回复所属回合之前分支,使用原用户输入重新生成。 重试任意回合 :在 Timeline 中选择任意历史回合重新执行。 级联策略 : truncate (默认):只重新执行

UI PluginWeb UIActive
Stars
10
Forks
0
Updated
today

dsh-vision

william-jin-cmu

dsh vision 给纯文本的 DeepSeek 加上眼睛。Vision for text only DeepSeek. deepseek v4 看不了图。本插件注册一个 view image 工具:模型带着问题调用它(OCR、数数、读图表、看 UI 布局……任意视觉问题),插件把图片和问题转发给任意 OpenAI 兼容的 VLM 端点 ,答案以文本返回。装上之后,dsh 的所有入口(web、TUI、远程通道)同时获得视觉。 真实效果(dsh web,DeepSeek V4 Flash) 对纯文本的 deepseek v4 说"看看 images.jpeg 在我的桌面上的"——模型自己定位文件、带着问题调 view image (

Native PluginVision & MediaActive
Stars
10
Forks
0
Updated
yesterday

Cobsidian

Totoro-qaq

Cobsidian English · [简体中文 Turn AI conversations into linked Obsidian knowledge, safely. Cobsidian is an agent agnostic workflow skill for maintaining an Obsidian or Markdown vault. It searches before creating, previews the proposed change, asks for one plain language confirmation, writes atomically, and validates the r

SkillAgent & WorkflowActive
Stars
9
Forks
2
Updated
today

dsh-toolkit

omdsh-dev

🧰 dsh toolkit [English DSH 零依赖工具包 collection —— time / encoding / json / calculator / csv / regex / markdown / diff / stat / schema 十个确定性工具, 统一入口一键安装 。 [ 为什么 DSH 生态仓库持续增长,单插件在 hub 中容易被淹没;collection 分类是辨识度最高的形态。本仓库把 10 个工具插件 vendored 冻结 为发布态快照(各子仓库独立演进,均位于 [omdsh dev 组织下公开),统一工程、统一测试、统一维护。 定位(官方 Profile Bundle 生态方向) :本

Native PluginOtherActive
Stars
9
Forks
0
Updated
today

dsh acp for bitfun BitFun 支持 ACP deepseek harness。 一个 [DeepSeek Harness (dsh) 插件 bundle: 通过 Agent Client Protocol (ACP) v1 over stdio 把 [BitFun 接入 dsh,作为 dsh 会话的 subagent。dsh 里任意会话都可以用 subagent bitfun 工具把任务委托给 BitFun 执行。 [BitFun [deepseek harness 工作原理 本 bundle 复用 dsh 官方的 [ @deepseek ai/dsh subagent acp 作为 ACP 客户端:每次委托启

Native PluginOtherActive
Stars
9
Forks
0
Updated
today

dsh-openbiliclaw

whiteguo233

🦀 OpenBiliClaw · DSH 客户端插件 OpenBiliClaw 是本地运行、跨平台、可调教的个性化内容推荐 Agent;本仓库是它的 DeepSeek Harness 客户端插件——DSH 界面常驻第四栏(推荐/内容库/对话/画像/设置),并注册 22 个 Agent Bridge 工具,让 Agent 读推荐、答探测、闭环学习。 [ [ [English 中文 这是什么 [OpenBiliClaw 是一个本地运行、跨平台、可调教的个性化内容推荐 Agent:从你在 B 站 / 小红书 / 抖音 / YouTube / X / 知乎 / Reddit / Linux.do / Bangumi / V2EX / 微博

IntegrationAgent & WorkflowActive
Stars
8
Forks
0
Updated
today

Awesome DeepSeek Harness [ A curated list of plugins, skills, MCP servers, orchestrators, aggregators & UIs for DeepSeek Harness (DSH) — DeepSeek's official agent runtime built around the idea Model + Harness = Agent . English [简体中文 DeepSeek Harness ("DSH") is DeepSeek's agent runtime / harness layer — the "hands" that

UI PluginWeb UIActive
Stars
8
Forks
2
Updated
today

dsh plugin dev [English DeepSeek Harness 插件开发中踩过的坑与验证过的做法。 记录自 DSH 公测期间(dsh external 组织)的插件开发实践:vendor cordis 双副本、tsconfig 三件套、Windows junction、多帧 zstd API……每个坑都有发生时的现象、确认的根因与最终修法。公测结束后相关仓库已迁移至 [omdsh dev 组织并公开。 这是什么 一份 经验档案 (skill + 文档):记录插件开发流程、踩过的坑、验证过能用的做法。 怎么用 1. 把 skills/dsh plugin dev 放进 skills 目录(或在 agent 会话中引用

SkillAgent & WorkflowActive
Stars
8
Forks
0
Updated
today

dsh-work

vibeinging

dsh work [English 中文 拳打 WorkBuddy,脚踢 Codex。 和我们一起释放 Plugin 的力量,把每一个好点子变成影响世界的作品。 一个披着二次元外衣、认真把任务打穿的本地 AI 工作桌面。 dsh work,让 DSH Plugin 在桌面真正觉醒。装上 Bundle,编好 Profile,项目、文件、网页和 Agent 一起开战。 看板娘负责唤醒斗志,DSH Session 负责把任务一路打到终点。截图来自真实 Electron 窗口,不包含用户项目和会话数据。 当前仍在内测修炼期。接口、Bundle 合同和安装方式可能继续进化,不代表已经公开发布。 战斗力清单 看板娘只是封面,真正启动后,每一层能

IntegrationAgent & WorkflowActive
Stars
8
Forks
0
Updated
today

dsh side panel DSH Web 的右侧工作区面板,在当前会话旁集中提供 Git 审查、终端和文件操作。 可以点击dsh会话区弹出的文件链接,会自动打开相应的文件以供审阅。 功能 1. Git审查,可以查看工作区和暂存区的文件,以及dsh每轮修改的代码,后续会增加回退。 2. 文件浏览器, 可以在会话区点击文件跳转到文件浏览器浏览文件。 3. 终端,在当前工作区直接运行命令,无需离开工作区,专注你的任务。 安装 从 github dsh external仓库安装 或者可以先从git clone 到本地,然后从本地目录安装 配置 组合包默认启用以下配置: 配置项 默认值 说明 : maxTextBytes 2 MiB 可读

UI PluginWeb UIActive
Stars
8
Forks
0
Updated
yesterday

dsh-focus-chat

dingyi222666

dsh focus chat [ English [中文 A plugin for the dsh web GUI that adds a focus chat tab — a condensed, Claude Code–style way to read a conversation. Install Then open the 聚焦对话 / Focus chat tab in any conversation. Notes: dsh plugin behaves like adding a dependency to your web profile. A bundle plugin is loaded once its fu

Native PluginOtherActive
Stars
7
Forks
0
Updated
today

dsh-emoji

hellodigua

dsh emoji [English 简体中文 dsh emoji 是 DeepSeek Harness 的 Profile Bundle,让 Agent 在正文中输出受控 ASCII marker,再由 Host 确定性转成行内 Markdown 图片。 0.2.0 支持上传遵循标准 40 个语义 key 的自定义表情包;当前只处理 Web Assistant 回复,不修改 DSH core。 效果预览 工作方式 system prompt 使用英文技术默认值,向模型提供 40 个不随 UI locale 改变的合法 marker,例如 ::emoji:happy:: 、 ::emoji:thinking:: 、 ::emoji:

Native PluginOtherActive
Stars
7
Forks
0
Updated
today

fabric

omdsh-dev

Cordis Fabric Workspace English [中文 The Fabric/Mixin extension layer for DSH as a self contained workspace of three packages plus an installable profile bundle carrier. The workspace mirrors the upstream fabric split: a pure Cordis pair ( cordis fabric , cordis fabric api ) and the DSH integration package ( cordis fabr

Native PluginOtherActive
Stars
7
Forks
0
Updated
today

dsh security audit [English DSH 本机安全审计插件 —— 防御性、只读的安全审计:配置、凭据存储元数据、已安装插件来源、关键路径权限、会话文件结构与网络暴露面。输出脱敏、可复现、可定位的风险报告。 [ 动机 DSH 本地环境承载 API Key、token、会话内容和插件加载边界,误配置(服务监听公网、凭据文件权限过宽、插件来源不可信、会话文件结构异常)会造成真实风险。现有工具没有这个视角: 1. plugin check 只做结构/合规检查 ——不评估凭据暴露面、危险能力和路径逃逸 2. session health 只做健康诊断 ——不涉及来源可信度与安全风险裁定 3. 手工排查不可复现 ——凭据位

Native PluginOtherActive
Stars
7
Forks
0
Updated
today

dsh session health [English DSH 会话健康检查插件 —— 对 $DSH HOME/sessions 下的 多帧 zstd 会话文件 做帧级扫描诊断(torn / 损坏 / 空会话 / stray 文件),输出健康报告与清理建议。 只读 :绝不修改或删除任何文件。 [ 动机 8/7 调查 issue #376 时对 39 个会话文件做了全量解码分析,过程中发现一个关键事实: DSH 会话文件是多个 zstd frame 的串联 (一个 19MB 会话 = 119,952 个 frame),用单帧解码 API 读多帧文件只能看到 header——曾导致"会话全空"的误判。这套诊断逻辑值得产品化为工具:模型可

Native PluginAgent & WorkflowActive
Stars
7
Forks
0
Updated
today

git identity DSH profile bundle (0812+ 的官方插件系统):让 DSH 内产生的所有 git 提交使用 环境自身的作者身份。优先读取 gh CLI 的登录账号(name 取 login,email 取 GitHub noreply 地址 + @users.noreply.github.com ),其次启动环境的 GIT AUTHOR 、 git config global 兜底。 为什么需要它 DSH 的 agent 会话通过 bash 工具执行 git commit 。历史上一旦某个会话显式 c user.name="DSH Agent" 或改掉了 git 配置,后续提交就会带着错误的作者。 本

Developer ToolDeveloper ToolsActive
Stars
7
Forks
0
Updated
today

dsh super injector — 超级模组注入器 DSH 生态的 BepInEx 式模组注入入口 :运行时把任意本地插件包注入运行中的 web, 不碰 patch / package.json / bundles 列表、不重启进程。 注入即完整生效(host 工具 + client UI)。 灵感:官方装配机制(profile bundle / repository plugin)是唯一的"官方入口",就像游戏 只有启动器能装模组。本插件打破这一点——引导器走官方入口装一次,之后 万物皆可运行时注入 。 安装(三选一) 方式 A:Release 包(推荐,免构建) 从 [Releases 下载 dsh external ds

Native PluginOtherActive
Stars
6
Forks
0
Updated
today

dsh-web-review

CanglongCl

dsh web review [English ⭐ 如果这个项目对你有帮助,欢迎点个 Star 支持一下!你的支持是我持续维护和改进的动力。 在内置浏览器中,像使用设计工具一样选择页面元素、填写修改意见,并临时调整文本、颜色、字体、尺寸、间距、边框与效果。确认发送后,Agent 会结合页面批注修改当前工作区中的源码。 如果你用过 v0、Codex 等 Coding Agent 应用的内置浏览器,你应该对此会很熟悉。 安装 安装并启动: 使用方法 1. 告诉启动要评审的前端页面,点击AI返回的地址页面。 也可以切换到 DSH 的「网页预览」Tab,输入页面的绝对 HTTP(S) URL。 2. 点击批注按钮,再点击页面中的目标元素。

UI PluginAgent & WorkflowActive
Stars
6
Forks
0
Updated
today

dsh-gomoku

omdsh-dev

English · 简体中文 五子棋(Gomoku)· 在 DSH 里和 AI 杀一盘 总是让 AI 帮你写代码、做表格?这次换它陪你下棋。 @deepseek ai/dsh gomoku 是 DeepSeek Harness 的五子棋插件:在 DSH 侧边栏摆上一盘 15×15 的棋盘,让 DeepSeek 或任何你配置好的模型执子对弈。 这里没有搜索算法,也没有启发式剪枝——每一步落子都来自 LLM 纯粹的推理与判断,堪称对模型「思考能力」最直观的考验。最过瘾的当属双 AI 对战:让两个模型同台厮杀,谁的推理更缜密、更懂审时度势,一局见分晓。 想更进一步?黑、白两方的系统提示词可以分别编辑,约束 AI 落子前的思维链,亲眼看着棋

Native PluginOtherActive
Stars
6
Forks
0
Updated
today

DHS API Usage — DeepSeek Harness plugin English [简体中文 After installation, open Settings → API Usage in [DeepSeek Harness to view your DeepSeek API usage. The page shows your account balance, estimated spend, token counts, and API request count over the last 24 hours, rendered as a timeline bar chart similar to the offi

Native PluginOtherActive
Stars
6
Forks
0
Updated
today

RE-Framework

unknowbug

RE Framework v2 — 通用工程方法论框架(逆向 + 编程,模块化) [English 中文 基于《打破传统AI逆向的新思路:多Agent、自主管理上下文》(BitWarden, 看雪学苑 2026.06.18) 的方法论内核, 工程化、Skills化、SubAgents化拆分升级: 领域无关核心 + 按需加载领域模块 ,从二进制逆向到代码逆向到常规编程全兼容。 验证协议继承 [Anchorlaw Protocol v0.17(MIT,协议引用,不复制实现)。 双宿主支持(v2.1) :Reasonix( .reasonix/skills/ 部署)+ DeepSeek Harness ( dsh/ 子树,re frame

Native PluginAgent & WorkflowActive
Stars
6
Forks
1
Updated
today

dsh-grok-tui

chen-001

dsh grok tui 把 [grok build 的 TUI 作为 [DeepSeek Harness (dsh) 的前端:界面是 grok 的,内核(提示词、工具、模型路由、会话持久化)由 dsh 提供。 Grok's TUI as a frontend for [DeepSeek Harness (dsh): the interface is grok's, the engine (prompts, tools, model routing, persistence) is dsh's. 安装 / Installation 前提:已安装 [dsh 与 grok TUI 二进制( curl fsSL https://x.ai/

UI PluginWeb UIActive
Stars
6
Forks
0
Updated
today

Multica DSH Runtime Private, out of tree runtime bridge between Multica and the public [DeepSeek Harness. It exposes a versioned JSONL protocol over stdio and composes over @deepseek ai/dsh base . It does not require changes to DeepSeek Harness. Privacy This repository contains only the Multica integration layer. It do

Native PluginOtherActive
Stars
6
Forks
0
Updated
today

telegram

LoserFox

telegram 安装(DSH profile bundle) 插入行 id: telegram (cordis.patch.yml);不声明模型面工具或技能——它是把 Telegram 聊天桥接到 agent 会话的后台服务插件。 加载即需要 token :缺少 bot token(配置 token 或环境变量 DSH TELEGRAM TOKEN )时 apply 直接报错;没有 token 不会惰性启动。 宿主前置条件 :dsh 组合必须挂载 agents 服务( @deepseek ai/dsh agent );LLM 适配器、会话与工具来自外围 cordis.yml (见 [ telegram agent 示例)。 卸载:

IntegrationIntegrationsActive
Stars
6
Forks
0
Updated
today

dsh-stickers

william-jin-cmu

DSH Stickers 不会发表情包,可能是 Agent 缺少活人感的最大原因。 @dsh external/dsh stickers 是一个纯 DSH 外部插件:同一份 catalog 同时服务 WebUI 用户的表情选择器、 /sticker 命令和 Agent 的 send sticker tool,不修改 DSH core。 能做什么 用户在 WebUI 点击 🐋 选择器,或输入 /sticker [black] 。 24 张表情全部提供蓝鲸娘 / 黑鲸娘两套角色:选择器顶部可切换角色(默认蓝鲸娘),切换后发送同一张表情的黑鲸版本。 Agent 在普通对话中按语境调用 send sticker({ id, variant

UI PluginAgent & WorkflowActive
Stars
6
Forks
0
Updated
yesterday

dsh-tui

openguardrails

@openguardrails/dsh tui English [中文 An interactive terminal (TUI) front door for [DeepSeek Harness agents — a Claude Code / Codex style chat interface in your terminal, installed as an out of tree dsh plugin bundle. Built on [ @earendil works/pi tui . It composes over the official @deepseek ai/dsh base bundle, so the w

UI PluginWeb UIActive
Stars
5
Forks
0
Updated
today

Context Doctor DSH 上下文注入审计插件:看清模型每个请求到底背着多少上下文,找出重复、冲突与浪费 token 的注入物。 全程只读 · token 成本逐项量化 · 可执行裁剪建议 为什么 · 快速安装 · Agent 安装 · 功能 · 使用 · FAQ · License Context Doctor renders in English with a restrained mono interface; the surrounding DSH shell follows its selected light, dark, or system theme. Why DSH 会话里,模型每个请求都自动携带一批注入

UI PluginAgent & WorkflowActive
Stars
5
Forks
0
Updated
today

dsh-automation

titanwings

⏱️ dsh automation Run coding tasks on schedule. Manage them from Web or Agent. [ [ [ [ [ 🕒 &nbsp;Need recurring or one shot coding work to run later without relying on an old chat? 🧭 &nbsp;Need each unattended run to stay inside an explicit workspace and permission boundary? 🧾 &nbsp;Need to inspect what ran, which r

Native PluginAgent & WorkflowActive
Stars
5
Forks
0
Updated
today

anchorlaw

unknowbug

Anchorlaw Protocol [English [中文 "Any claim must have a verifiable practice anchor." — First Law, Materialist Practice Theory Anchorlaw is a code verification protocol for vibe coding — not a test framework, not a linter. It detects defensive code patterns that signal cognitive gaps and provides a structured feedback lo

Developer ToolDeveloper ToolsActive
Stars
5
Forks
0
Updated
today

orbis

icodesign

Orbis English [简体中文 Orbis is a remote control client for Deepseek Harness (DSH). The Orbis plugin provides device pairing, end to end encrypted transport, and real time updates across multiple devices. Getting Started 1. Download the Orbis app. It is currently in beta. [Join Test 2. Install the Orbis plugin into DSH. 3

Native PluginOtherActive
Stars
5
Forks
0
Updated
today

@dsh external/dsh ui progress 简体中文 [English DSH Web UI 会话进度插件:为 DeepSeek Harness 的 Web GUI 的输入框停靠区提供常驻会话进度条, 零核心改动 (纯 client 插件,不触碰 agent loop)。 版本对应 / Version compatibility 构建产物随 DSH 快照版本更新,安装时按快照选择对应版本: 插件版本 DSH 快照 说明 v0.1.0 snapshots/20260805T134133Z (snapshot0805) 旧构建,按旧安装方式( /.dsh/config.yaml + pnpm add w link: )

UI PluginWeb UIActive
Stars
5
Forks
0
Updated
today

dsh minigames 简体中文 [English DSH Web UI 右侧小游戏面板:等待模型回复或修 bug 时的摸鱼神器。 折叠态 :浏览器右缘一条小竖条(🎮),不占空间。 展开态 :点击后占据窗口 右半部分 (默认 50vw,可拖左缘调整 360px–80vw), 面板内自由选择游戏。 游戏 (全部离线、零资源文件、Canvas 绘制): 1. 🦖 恐龙跳一跳 —— Chrome 经典小恐龙(昼夜/雨天); 2. 🧱 俄罗斯方块 —— 经典下落消除; 3. 🛡️ 坦克大战(带 AI) —— 2D 坦克对战,敌军追踪 + 视线开火,共 3 波; 4. 💎 消消乐 —— 点击消除四连通同色块,目标分过关、逐关递增

UI PluginOtherActive
Stars
5
Forks
0
Updated
today

Top

xiaohai-78

📊 Top — dsh external Plugin Ecosystem Leaderboard 🌐 Language / 语言 :[🇬🇧 English · [🇨🇳 中文 Daily tracking of every repository in the dsh external org, ranked by stars, with growth / activity / language / topic trend analysis. Data collection: real browser session (the org has OAuth App access restrictions, so third

Native PluginOtherActive
Stars
5
Forks
0
Updated
today

DeepSeek Harness 桌面版 将 [deepseek ai/deepseek harness 打包成三平台桌面应用: Electron 桌面壳 + 内置 Node 运行时 + 完整 Harness 环境 ,双击即用。 ✨ 特性 一键启动 :双击 DeepSeekHarness.exe → 自动拉起后端 → 直接打开 DeepSeek Harness Web UI 内置 Node 24 :自包含运行时,用户无需安装 Node.js 完整环境 :打包了 Harness 全部依赖(链接已物化为真实文件) 无边框窗口 :UI 铺满窗口,右上角内嵌最小化 / 最大化 / 关闭按钮 单实例 :重复启动不会拉起多个后端 免管理员 :W

Native PluginOtherActive
Stars
4
Forks
0
Updated
today

English 简体中文 DSH Chat Import Import Claude Code / Codex / ChatGPT / Cursor / Gemini / Reasonix conversation histories into DeepSeek Harness as resumable sessions. [ [ [ [ Listed in: [Awesome DeepSeek Harness · [Awesome DSH Plugin · [Awesome DSH Plugins · [npm Nwflower/dsh chat import adds external chat history import t

Native PluginAgent & WorkflowActive
Stars
4
Forks
1
Updated
today

dsh agent messaging Cross session agent to agent messaging for [DeepSeek Harness. Two sessions you started yourself — in the Web UI, in a headless run, in separate worktrees, in separate dsh processes — cannot tell each other anything. When one discovers a breaking change the other is about to trip over, you are the tr

UI PluginWeb UIActive
Stars
4
Forks
0
Updated
today

dshcode

whitelonng

DSHCode English [中文 DSHCode is a community maintained Electron desktop companion for the official open source [DeepSeek Harness project. It packages the upstream Web UI and plugin runtime as a one click macOS and Windows application, so installed users do not need Node.js or a CLI. Download Download installable package

Native PluginOtherActive
Stars
4
Forks
0
Updated
today

reSanity

Thhoho

reSanity 散修 散修,修出你的 Sanity。 积极的信心,谨慎的动作。 一个给散户用的认知管理工具:帮你查证、帮你避坑、帮你记住、帮你复盘。 不是荐股工具,不是行情软件,不是新闻推送。它不下单、不推荐、不承诺收益——它只在你追高之前泼冷水,在你忘记自己判断的时候提醒你,在你亏钱之后告诉你错在哪一环。 你为什么需要它 市场里不缺信息,缺的是 验证过的判断 ;不缺聪明人,缺的是 记得住自己为什么错的聪明人 。 刷到"某题材要起飞"的热帖,你想知道:这是真的吗,还是又来接我盘的?→ 它会去翻公告原文,把"官方口径"和"市场传闻"分开摆给你看。 上个月研究过的东西,这个月中报出来了,你的判断还成立吗?→ 说一句 "更新锚" ,它只

SkillAgent & WorkflowActive
Stars
4
Forks
0
Updated
today

image-vision

wangyang10

image vision 让没有视觉能力的模型(如 DeepSeek 等纯文本模型)也能"看图":自动调用 OpenAI 兼容的识图模型 API(OpenRouter、SiliconFlow、智谱、Kimi、通义千问、 本地 Ollama 等),完成图片描述、问答、OCR 等任务。 一个仓库,多个 Agent 宿主 :同一套技能逻辑分别以标准 skill 和宿主插件的形式 提供给 Codex、Claude Code、DeepSeek Harness(DSH)等使用。 支持的 Agent Agent 接入物 推荐安装方式 调用方式 运行时依赖 Codex 标准 skill( skills/image vision/ ) 自动安装 /

SkillAgent & WorkflowActive
Stars
4
Forks
0
Updated
today

dsh-openapi

Degurechaff57

dsh openapi Give DeepSeek Harness a safe, structured doorway into any OpenAPI 3.x API. [中文说明 · [DeepSeek Harness dsh openapi is a native DeepSeek Harness bundle that indexes configured OpenAPI documents and adds three model facing tools: openapi list discovers APIs and searches operations. openapi describe returns para

Native PluginAgent & WorkflowActive
Stars
4
Forks
0
Updated
today

dsh bash encoding 简体中文 [English DSH bash 输出 编码自动识别 插件:替换 ctx.bash ,自管 spawn 收集 原始字节 ,自动检测 UTF 16LE / UTF 8 / GBK 等编码并正确解码,修复 Windows/WSL 下 bash 工具的中文乱码。 版本兼容 / Version compatibility 兼容 DSH snapshot0808( snapshots/20260808T121140Z )与 snapshot0809( snapshots/20260809T140917Z ):宿主侧插件,替换 ctx.bash 执行器,只依赖 bash 缝合线与 ctx.sand

Native PluginMemory & ContextActive
Stars
4
Forks
0
Updated
today

dsh paste input 简体中文 [English DSH WebUI 文件输入增强插件: Ctrl+V 粘贴 + 全页面拖拽 + 选择文件/文件夹 ,发送时复制进会话工作区临时附件目录,并把对话气泡里的附件文本块 折叠为文件 chip 。 派生自 [dsh external/dsh multimedia webui input(MIT),在其基础上新增剪贴板粘贴输入、首次告知弹窗与气泡附件折叠。 版本兼容 / Version compatibility 兼容 DSH snapshot0808( snapshots/20260808T121140Z )、snapshot0809( snapshots/20260809T140

UI PluginOtherActive
Stars
4
Forks
0
Updated
today

dsh mineru DSH 插件:向模型暴露 [MinerU 文档解析工具。MinerU 可将 PDF、图片、DOCX、PPTX、XLSX 等文件转换为结构化的 Markdown / JSON。 安装 pnpm ≥10 从 git 安装时,需在 profile 的 pnpm workspace.yaml 中允许构建: 配置 在 DSH GUI 设置页或 cordis.patch.yml 中配置: 字段 类型 默认值 说明 baseURL string (必填) MinerU API 地址,如 http://your mineru host:18000 apiKeyEnv credential ref MINERU API KEY

IntegrationIntegrationsActive
Stars
4
Forks
0
Updated
today

dsh harness ops — DeepSeek Harness 运维工具箱(自愈 + 版本轮换) [English 中文 升级、重启、故障——都变成"不用操心"的事 。给 DSH 用户 / 插件开发者 / 部署运维者。 ① 官方每天发新快照,升级怎么不翻车? A/B 双槽轮换:新快照进隔离槽,旧插件自动迁移、 构建 + 扩展测试 + web 冒烟全过才原子切换;任何一步失败不动生产, 一键回滚 。升级有退路, 永远有一个验证过的旧版本兜底。 ② 开发/运维要重启 web,工作会断吗? 双层自愈:守护 10 秒内自动拉起 web,agent 从 被打断的那一步 自动续接、带着完整上下文继续。重启是 无人值守 的,工作流不被打断。

Native PluginAgent & WorkflowActive
Stars
4
Forks
0
Updated
today

dsh-mygo

omdsh-dev

dsh mygo DSH 的受管插件层: 轻量核心 + 一切皆扩展 。 名字致敬《BanG Dream! It's MyGO!!!!!》——插件们各怀心思,但总有一个地方 会把它们聚在一起。 版本:0.0.1 rc.1(2026 08 12) · 与 @deepseek ai/dsh rc.1 同版本线。 上一线:0.2.x(HMR 受管插件 + 外部应用 + 远程更新,面板中心)。 这是什么 mygo 把 DSH 的插件从「裸 Cordis 行」升级为「受管对象」:安装/求解/锁定/启停/ 替换/恢复语义、依赖图与符号级校验、打包分发、结构化失败报告,以及运行期政策 闸(requires)与细粒度 epoch 反应式重载。 核心不

Native PluginOtherActive
Stars
4
Forks
0
Updated
yesterday

数据Agent(Data Agent)· 让 AI 帮你连数据库、写 SQL [English 中文 用AI写过SQL的同学都有这种体验,AI现在写代码能力已经很强了,但SQL逻辑老写不对。 原因是AI并没有与数据库操作形成Agent Loop ,它只能根据静态指令生成SQL,却无法感知执行结果、无法根据报错或返回数据动态调优。 这个插件就是来填这个坑的。它复用DeepSeek Harness强大的Agent主循环能力,让AI连上数据库并获得实时反馈,同时删掉所有跟数据无关的上下文和工具,让AI专注于SQL生成和业务数据分析。 我利用DeepSeek Harness的Agent预设功能,定义了专用的Data Agent预设。仅保留r

Native PluginAgent & WorkflowActive
Stars
4
Forks
1
Updated
yesterday

eyes for deepseek 给 DeepSeek 装上眼睛 👀 —— 让 DeepSeek 等纯文本大模型拥有视觉能力 DeepSeek 很强,但它 看不见图片 :截图、图表、UI 设计稿、错误信息、文档扫描件——统统无法理解。 eyes for deepseek 通过 [MCP(Model Context Protocol) 为 DeepSeek 接入一组视觉工具,让它能"看图说话"。 视觉能力由商汤 SenseNova 6.8 Flash Lite (原生多模态智能体模型)提供, 注册即享免费额度 ,零成本起步;工具代码 MIT 开源。 为什么需要它? 痛点 eyes for deepseek 的解法 DeepSeek

Native PluginOtherActive
Stars
4
Forks
2
Updated
yesterday

DeepSeek Harness Plugin Template English [中文 A self contained standalone repository template for an ESM Cordis plugin. Every source file, compiler setting, test fixture, contributor instruction, skill, and build helper used by the repository is inside this directory; every development input resolves below this reposito

UI PluginOtherActive
Stars
4
Forks
0
Updated
yesterday

@dsh external/dsh deep research 把 deep research 流程做成 DSH 扩展插件 (plugin,与 skill 体系分开), 基于 DSH 官方 workflow 引擎 ( ctx.workflows / @deepseek ai/dsh workflow workerthread ) 实现,按 控制论 + 信息论 设计——不是固定提示词流水线,而是 活的、自适应的研究闭环 。 理论 → 机制 理论 插件里的落地 控制论:参考信号校准(闭环控制错误目标 = 白费) 规划代理先定义 答案空间 ( scope :研究支撑什么判断/决策)与每个子问题的 验收标准 ( acceptance ),再

Native PluginAgent & WorkflowActive
Stars
4
Forks
0
Updated
2d ago

GrassVison

moduqishi

🌿 GrassVision 给 DeepSeek 等纯文本大模型外挂图像理解能力的本地中转服务。提供 OpenAI 兼容的 API,自动将图片请求交给视觉模型分析,再将结构化结果注入文本模型,使增强后的模型体验接近原生多模态。 快速开始 使用方式 把客户端的 API Base URL 改为 GrassVision: 支持的图片格式 HTTP(S) URL 图片 Base64 Data URL 图片 ( data:image/png;base64,... ) 单张和多张图片 增强模型 默认内置 deepseek vision 模型:源模型为 DeepSeek Chat,视觉模型为 GLM 4V Flash。 可通过管理界面 /adm

Native PluginVision & MediaActive
Stars
3
Forks
0
Updated
today

DSH Plugin Installer [ [ [ English [简体中文 An in app marketplace and Profile switcher for [DeepSeek Harness. DSH Plugin Installer adds a Plugin marketplace tab to the official Web UI under Settings → Plugins . It discovers repositories from the GitHub dsh plugin and dsh topics, verifies that a repository is a real DSH bu

UI PluginDeveloper ToolsActive
Stars
3
Forks
0
Updated
today

dsh-desktop

bruc3van

DeepSeek Harness Desktop 中文 [English 把 DeepSeek Harness 当作桌面应用来使用:官方界面、已有会话和本地工作区,都在一个专注的窗口里。 DeepSeek Harness Desktop 是一个独立的 dsh Electron 客户端。它会启动或连接官方 dsh Web UI ,并直接呈现官方界面,让你无需一直保留浏览器标签页,也能完整使用 Harness。 [!IMPORTANT] 这是社区维护的非官方第三方项目。 本项目并非 DeepSeek 官方产品,不由 DeepSeek 开发、发布、背书或提供支持,也不代表 DeepSeek 的立场。 DeepSeek 、 DeepSeek

UI PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh-plugins

lwmxiaobei

Awesome DSH Plugins 社区维护的 DeepSeek Harness 插件导航与介绍目录。 [!IMPORTANT] 收录不代表官方背书、安全审计或运行兼容。安装第三方插件前,请检查上游源码、权限、依赖和许可证。 插件网站 访问地址:[dsh plugins.org 仓库同时提供部署在 Cloudflare Worker 上的插件集合网站,支持: 按仓库名、包名、介绍、语言和许可证搜索 按语言与许可证筛选 按星标、更新时间或名称排序 一键复制固定提交版本的安装命令 从 GitHub 主分支读取最新目录,读取失败时回退到部署内目录 本地运行: 质量检查与构建: 确认 Wrangler 已登录后部署: 插件目录 更新时间

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh-xiaohei

opensetk

dsh pet 🐾 一颗住在 DSH Web UI 右下角的桌面宠物:跟随 agent 的运行状态实时切换姿态, 点击还能获得俏皮反馈。是一个完整的 Host + 浏览器双半 Web UI 插件示例, 所有 API 均按 DSH 0.1.0 rc.6 实测验证。 宿主半(Node):监听持久化 session/event ,折叠出每会话的宠物姿态 浏览器半( dsh.client bundle):注册进 shell.overlay 全局浮层槽位,渲染宠物形象 姿态状态机是纯函数( src/moods.ts ),可回放重建,与实时事件流同一套逻辑 效果预览 它做什么 宿主侧逐事件折叠出 七种姿态 ,浏览器经 HTTP 路由 /pet

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

deepseek harness tui An interactive terminal chat for DeepSeek Harness — terminal native style, built with Ink (React for terminals). Give it a TokenDance key and a dsh install; run dsh profile tui and you get a zero chrome terminal chat with DeepSeek models: bottom anchored transcript, tool calls folded into cells, th

UI PluginWeb UIActive
Stars
3
Forks
0
Updated
today

dsh web ui notify — 审批/提问/轮次完成桌面通知插件 [English 中文 DeepSeek Harness Web UI 客户端插件:当工具需要审批、DSH 向你提问、或一轮干完了,而你正在浏览其他标签页时,弹出系统桌面通知,避免 DSH 白等、也避免你白等。 许可证 BSD 3 Clause · [GitHub 实现能力 在浏览其他网页过程中,DSH 需要人工确认权限、或者干完了一轮活,会通过系统通知提醒你。 当前会话介入时通知 :工具审批和 DSH 提问,通知正文带上下文(审批显示越权原因,提问显示问题原文) 后台会话也通知 :没在看的会话需要审批/提问时同样弹通知(正文带上下文,和当前会话一致),整个会

UI PluginWeb UIActive
Stars
3
Forks
0
Updated
today

Agent_Extensions

DDDFXYqiming

Agent Extensions AI Agent 技能与 DeepSeek Harness(DSH)扩展集合 —— 通用智能体 Skill 与 DSH 标准插件,开箱即用。 本仓库收集、翻译并自包含封装 AI Agent 相关的技能资源,并面向 [DeepSeek Harness(DSH) 提供标准插件形式的扩展。所有内容均为 自包含 (技能/插件内自带脚本、模板与文档),克隆即可用。 目录结构 快速开始 通用 Skill(General skills) 任何智能体框架(Claude Code / Codex / opencode / DSH 等)都可以把 General skills/ 目录作为 Skill 挂载: DSH 标准

SkillAgent & WorkflowActive
Stars
3
Forks
0
Updated
today

dsh plugin background DeepSeek Harness Web 界面背景插件:为 Web GUI 的四个界面区域绘制 按区域独立的背景 ——对话区、轨迹区、侧边栏、设置页,灵感来自 VSCode 的 [ background 扩展。插件在 设置 → 插件 页注册自己的配置卡片(背景编辑器)。 功能 四个独立区域 :对话区 / 轨迹区 / 侧边栏 / 设置页,各自独立的媒体组 单一媒体组 :每组只含一种媒体——图片组像 PPT 一样轮播切换,视频组静音循环播放;不支持图片与视频混在同一组(混入的不同类型会被过滤并提示) 动态背景 :支持 GIF 与常见视频格式(mp4/webm 等,静音循环播放,不发出任何声音)

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh-suite

whyihaveyou

dsh suite 🌐 English · [中文 Stop scrolling the dsh plugin topic. Find plugins that still work. dsh suite is a bilingual, curated directory of [DeepSeek Harness (DSH) plugins — re checked against the latest DSH release every day by CI — plus a create dsh plugin scaffolder and a small set of first party plugins. Why dsh s

Native PluginAgent & WorkflowActive
Stars
3
Forks
1
Updated
today

🌐 dsh better browser 让 Agent 使用你已经登录的真实浏览器。 [ [ [ [ [ 🔐 &nbsp;需要 Agent 操作已经登录的网站,又不想复制 Cookie 或重新登录? 🧭 &nbsp;需要导航、点击、填写、截图和网络检查组成一条完整工作流? 🧠 &nbsp;希望浏览器状态留在本机,而不是不断塞进模型上下文? ✨ dsh better browser 把用户真实浏览器变成 13 个 Agent 工具。 通过本机 Kimi WebBridge 复用登录态、已有标签页和活动会话;DSH 负责模型工具, 浏览器状态继续留在浏览器里。 真实浏览器 + 本地桥接 + 13 个工具 → Agent 可执行

Native PluginBrowser & WebActive
Stars
3
Forks
0
Updated
today

dsh-desktop

longyu065

dsh desktop [ [ [ [ English [中文 A desktop shell (Electron) for the [DeepSeek Harness Web GUI ( dsh web , served at 127.0.0.1:3080 by default). Zero config : clone it, run npm install && npm start — if dsh isn't installed, the app installs it for you. Features 🚀 Zero config startup — auto locates or auto installs dsh (

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

DeepSeek 陪伴模式 · dsh companion — 人设、记忆、聊得下去 聊天 Agent 做陪伴最容易翻车的三件事: 每回合重新自我介绍,像刚上线的客服 聊过就忘,上次说好的事下次不认账 人格和记忆各写各的,模型看到的是一锅粥 dsh companion 是 DeepSeek Harness 的陪伴插件:人格(SOUL)+ 长期记忆(Hermes 风格)+ 可选 QQ 通道,agent 核心(回合循环、会话持久化、搜索、工具注册)全部由 DSH 提供。 数据来自 [selfloom(单用户陪伴 agent 内核)—— 记忆文件零迁移 , SOUL.md / USER.md / MEMORY.md 直接复用。 想配一套表

Native PluginMemory & ContextActive
Stars
3
Forks
0
Updated
today

dsh launcher [中文 [English Windows 下 [DeepSeek Harness Web 的启动与管理工具: 在 cmd / PowerShell 中输入 deepseek 即可一键启动(前台 / 后台双模式)、自动打开浏览器、 查询状态、停止服务,支持一键注册 deepseek 命令。 功能特性 命令行启动 :在 cmd / PowerShell 中输入 deepseek 即可启动 前台 / 后台双模式 :前台显示运行日志(关窗即停);后台无窗口持续运行(关任何窗口都不影响) 自动打开浏览器 :服务就绪后自动打开 http://127.0.0.1:3080,无需手动输入地址 状态查询与停止 : deeps

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh plugin cost tracker Token cost tracker for DeepSeek Harness. What it does Tracks token usage per session Calculates costs based on model pricing Injects cost awareness into system prompt Provides CLI tool for cost estimation Install CLI Supported models deepseek v4, deepseek v4 flash, deepseek r1, deepseek vl2 gpt

Developer ToolDeveloper ToolsActive
Stars
3
Forks
0
Updated
today

Awesome DSH Bridge Plugins Bridge your favorite AI coding tools into DeepSeek Harness zero migration, full compatibility. Bridge Plugins dsh plugin claude bridge Claude Code (Memory + Skills + Global CLAUDE.md) dsh plugin codex bridge OpenAI Codex (Skills + Instructions + Config) dsh plugin opencode bridge OpenCode (Sk

IntegrationOtherActive
Stars
3
Forks
0
Updated
today

dshfind

hikariming

This is a [Next.js project bootstrapped with [ create next app . Getting Started First, run the development server: Open [http://localhost:3000 with your browser to see the result. You can start editing the page by modifying app/page.tsx . The page auto updates as you edit the file. This project uses [ next/font to aut

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh-tool-turbo

Electricitysheep

dsh tool turbo Cut tool call latency in [DeepSeek Harness (dsh) by auto adjusting reasoning effort per tool round. [中文文档 · English In a multi step tool chain, the model re thinks before every tool call — and that thinking dominates the wall clock time (a 50 step agent task can spend minutes in reasoning between tools).

Native PluginAgent & WorkflowActive
Stars
3
Forks
0
Updated
today

dsh sentinel Condition driven wakeup for [DeepSeek Harness: the agent registers a watch, goes to sleep — even closes the session — and the sentinel wakes it when the condition happens. Every subscription and every fire is a user visible session event, and the browser dock shows what is on duty. How it works The node ha

UI PluginWeb UIActive
Stars
3
Forks
0
Updated
today

OpenFlowFrames Video Frame Interpolation for Windows This project is a fork of the original [Flowframes by n00mkrad. Huge thanks to him for creating and maintaining the powerful core of this application! This fork is a lean, fully free and open reimagining: a modern Python GUI around the latest RIFE models — no Patreon

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

task status 后台任务状态条:对话页输入区上方的任务进度 UI——运行中计数 + 展开详情 + 实时输出 tail 对话页输入框上方的后台任务状态条:运行中任务计数 + 点击展开逐条详情 + 实时输出 tail (自动轮询,10 行滚动区)。经官方 conversation.input.dock 槽注册(与 queue/todo/goal 同族)。形态:官方 bundle 插件 ( dsh.bundle + dshClient 通道),0 patch。 效果 能力 UI (对话页 dock 槽): 功能 说明 状态条 对话页输入框上方 dock 卡片: ⚙ N 个后台任务运行中 展开详情 点击任务行展开:状态/耗时/详情

UI PluginOtherActive
Stars
3
Forks
0
Updated
today

navbar 对话节点导航条:对话区右缘节点串快速跳转 user 消息,悬停预览、点击跳转 对话区右缘的等距节点串(每 user 消息一节点)——激活药丸跟随阅读位置、悬停预览卡(6 行截断)、点击平滑滚动 + 品牌蓝高亮环、超过 11 节点自动滑动窗口、平时隐形悬停浮现、少于 2 条 user 消息自动隐藏。实现 dsh external/issues#144 规格。形态:官方 bundle 插件 ( dsh.bundle + dshClient 通道, 纯浏览器端 ,Node half 为空),0 patch。 效果 能力 功能 说明 节点导航条 对话区右缘纵向节点串,每 user 消息一个圆点节点 跟随阅读位置 激活药丸(22

UI PluginOtherActive
Stars
3
Forks
0
Updated
today

ego browser — 看得见的 Agent 浏览器 仓库 : github.com/dsh external/ego browser (私有 · 内测) ⚠️ 保密声明 :本项目属于 DeepSeek Harness 内测生态 的一部分,仅限 dsh external 组织内测成员使用。 严禁公开、外发、镜像或分发到任何非授权位置 。 仓库必须保持 PRIVATE;不发布到 npm / 公共 registry;不创建公开 fork 或镜像。 把 [CitroLabs/ego lite(给 AI Agent 用的 Chromium 浏览器)接入 DeepSeek Harness:以 13 个结构化 ego 工具 驱动浏览器,并配

Native PluginBrowser & WebActive
Stars
3
Forks
0
Updated
today

oh-my-dsh

wangshunnn

oh my dsh 🐋 [DeepSeek Harness 社区插件索引:自动发现、证据分级、场景精选。 oh my dsh 帮你更快找到值得尝试的 DSH 插件,并看清它是否真的包含可安装清单、采用什么许可证、验证到了哪一步。 [浏览全部插件 · [查看场景精选 · [使用 JSON Registry · [提交插件 Curated, machine readable plugin discovery for DeepSeek Harness. Discovery evidence is shown separately from compatibility and security claims. 插件目录 已索引 202 个

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh input history 简体中文 [English DSH Web 输入历史插件:像终端一样用 Ctrl+Up / Ctrl+Down 召回和切换已发送的消息,零核心改动。 版本兼容 / Version compatibility 兼容 DSH snapshot0808( snapshots/20260808T121140Z )、snapshot0809( snapshots/20260809T140917Z )、snapshot0810( snapshots/20260810T155924Z )、snapshot0811( snapshots/20260811T152241Z )与最终快照 snapshot0812(

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh-tool-csv

omdsh-dev

dsh tool csv [English DSH CSV 数据工具插件 —— 解析、查询、过滤、统计和转换 CSV 文本。零依赖、纯函数、RFC 4180 状态机解析器。 [ 动机 Agent 会话里表格形态的数据(导出文件、API 响应、报告片段)出现频率很高。现有路径是起 bash 进程让模型现写解析脚本: 1. 每次调用都起进程 ——Windows 上尤其昂贵 2. 模型手写 CSV 解析器错误率高 ——引号内逗号、 "" 转义、BOM、跨行字段、CRLF 这些边界手写代码极易踩坑,且结果不可验证 本插件提供确定性、零依赖、纯函数的 CSV 处理:一次函数调用,毫秒级返回结构化 JSON。 与 dsh tool json 形

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh-openmaic

THU-MAIC

dsh openmaic 把 OpenMAIC 带进 DeepSeek Harness。Bring OpenMAIC into DeepSeek Harness. dsh openmaic is a DeepSeek Harness plugin that registers four tools and a Socratic teaching skill: openmaic generate : tell your agent "make me a lesson about X", and the plugin submits the requirement to [open.maic.chat, waits for the as

Native PluginVision & MediaActive
Stars
3
Forks
1
Updated
today

DSH Scholar 加急开发适配中! 简体中文 [English DSH Scholar 是面向纯计算研究的 AI 科研工作台。它把研究资料、项目对话、代码与数据、实验运行、证据账本和 TeX 手稿放在同一个可恢复项目中,既可以从新问题开始,也可以接入已经进行到一半的研究。 核心能力 可治理的研究流程 :从 Scope、Idea、Experiment Contract 到 Evidence、Claim 和 Release,关键节点由人类 Gate 把关。 受控实验 :Runner 在本机 Docker 或受控远端机器上执行冻结的实验计划,记录日志、状态与产物。 可追溯证据 :论文主张可追溯到受控 Run、Artifact 和经评

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh-doctor

coppynight

dsh doctor DeepSeek Harness 的 flutter doctor 风格诊断与修复工具 一个官方 repository plugin( .dsh plugin 格式)+同名终端 CLI:安装级 + harness 内检查, 能修的自动修(settings 恢复 / 交互补 key),不能修的输出可直接复制的手动命令。 能力地图 能力面 入口 说明 /doctor 命令 在会话输入 /doctor harness 内运行全部检查(含 harness 级),输出 flutter 风格报告 终端 CLI node bin/dsh doctor.mjs web 挂掉时仍可运行; fix 应用安全修复并交互补 key 安

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

dsh-qq2006

LaplaceYoung

dsh qq2006 — DSH 的 QQ2006 皮肤插件 Topics: deepseek harness · dsh plugin · dsh skin · qq2006 把 DSH(DeepSeek Harness)WebUI 完整改造成 QQ2006 客户端外观的可切换皮肤。 本仓库是皮肤插件的独立快照: 插件源码 + 全局皮肤表 + 完整素材 + 集成文档 。 素材来自 [mengkunsoft/QQ2006 (腾讯原版素材, 仅供学习交流、勿商用 ,出处见 assets/qq2006/README.txt )。 仓库结构 集成回 DSH monorepo 皮肤是 DSH 客户端插件体系的成员,完整效果依赖宿主包( ui

UI PluginWeb UIActive
Stars
3
Forks
0
Updated
today

dsh-deepcel

Small-tailqwq

dsh deepcel DeepSeek Harness Web GUI 的 Deepcel 工作簿皮肤独立分发仓库。 效果预览 点击图片可查看完整尺寸。 亮色模式 暗色模式 [ [ 皮肤 皮肤 包名 说明 许可 [deepcel @dsh external/dsh client ui skin deepcel 将会话、工具、设置和导航重构为可交互的工作表单元格 BSD 3 Clause 安装 本仓库仍处于内部测试阶段,仓库为私有可见性。获得仓库访问权限后: Deepcel 加载即生效,卸载即复原;其 wiring id 为 ui skin deepcel 。 开发 皮肤工程脚手架来自私有开发仓库 dsh external/dsh

Native PluginOtherActive
Stars
3
Forks
0
Updated
today

yet another subagent 可配置的子代理(subagent)profile 系统,提供单一 subagent 工具 + profile 参数选择,支持 Web UI 设置、实时进度展示(工具调用/token/活动)、子代理树标签页、点击跳转子会话。 架构 单 bundle,三入口(host . + invariant ./invariant + client ./client )。 Host 半 ( src/index.ts ): 单一 subagent 工具,通过 profile 枚举参数选择 profile(非每 profile 一个工具) 复用官方 spawn provider,支持前台(foreground)

Native PluginAgent & WorkflowActive
Stars
3
Forks
0
Updated
today

dsh stock market DSH 的沪深 A 股行情侧栏和固定免费股票数据工具插件。 功能 右侧“行情”侧栏:顶部信息区展示上证指数、恒生指数、纳斯达克、韩国综合、日经指数、布伦特原油和纽约金主连的最新价与涨跌,支持横向滚动;侧栏支持收起、拖拽或键盘调整宽度及会话级状态保存。 A 股行情快照:上证指数、深证成指、创业板指和科创综指来自腾讯实时行情,5 秒刷新;两市成交额与上一交易日同期比较,财经资讯来自东方财富。 数据接口设置:展示全部免费数据源和已接入的固定接口目录,无需配置凭据。 会话级股票工具开关:输入框工具行可启用或关闭全部股票工具,状态随会话日志持久化。 界面预览 接口目录 数据源 接口数 主要能力 : 东方财富

Native PluginOtherActive
Stars
3
Forks
1
Updated
yesterday

dsh-companion

william-jin-cmu

Cetus · make dsh your desktop companion 把 dsh,变成常驻桌面的全能助手。 初衷 Agent runtime 越来越强,但它们的家一直在终端和浏览器标签页里——你要主动去找它,而不是它随时在你身边。[Cetus 是我一直在维护的开源 macOS 桌面 agent 应用,出发点就是反过来: 让 agent 常驻桌面 ——全局快捷键随叫随到、看得到你的屏幕上下文、定点定时替你干活、干完把文件直接递到你手上。它为此打磨出的一整套桌面层(统一的运行时事件模型、全局唤起、定时任务、看板)已经服务过 Claude Code、Codex 等多个 runtime。 这个仓库是 Cetus 的 DeepSee

Native PluginOtherActive
Stars
3
Forks
0
Updated
yesterday

dsh-desktop-electron

Void0312Aurora

dsh desktop electron English [中文 An Electron desktop shell for the [DeepSeek Harness ( dsh ) Web GUI: it spawns dsh web , waits for the server's readiness line, and hosts the GUI in a standalone window with tray residency. Compatibility was verified against the last currently available internal test CLI, @deepseek ai/d

UI PluginOtherActive
Stars
3
Forks
0
Updated
yesterday

dsh plugin skills English [中文 Agent skills for building and testing DeepSeek Harness plugins — from scaffolding a new plugin package to choosing the right test tiers, entirely inside an agent session. What's inside Skill What it does dsh write plugin Scaffolds a plugin end to end: pick the right shape (tool / LLM adapt

SkillAgent & WorkflowActive
Stars
3
Forks
1
Updated
3d ago

8x-skills

paean-ai

8x Skills Portable agent skills for building , publishing , and remixing games on [Paean Apps Square ( .clide.app / 8x.gg ) — usable from Zero CLI , Claude Code , and Codex (or any agent that can read a SKILL.md and run a Node script). Skill What it does paean skills update Pull or sync this 8x skills repo and reinstal

SkillAgent & WorkflowActive
Stars
3
Forks
1
Updated
6d ago

zotero harvest — Zotero 文献采集入库插件(DSH external plugin) zotero harvest 把"检索文献 → 判断够不够 → 存进本地 Zotero → 让 zotero wave rag 能检索到"这条链路做成 6 个纯确定性工具 (无 LLM 依赖),机制取自 AgentLaboratory / STORM / PaperQA / Anaxa: 检索原语化 (AgentLab): lit fetch 一次取多源结果 高精度命中 + 下载链接 (参考 paper qa 的 OpenAlex/Crossref/Unpaywall 客户端设计): query 传 DOI 或 arXiv i

Native PluginMemory & ContextActive
Stars
3
Forks
0
Updated
6d ago

litestartup-skills

litestartup-com

LiteStartup Skills Modular AI skill packages for LiteStartup. Install all or pick what you need. What Problem Does It Solve? Your AI editor writes great code — but publishing content still requires dashboards, CLIs, or manual deploys. LiteStartup Skills bridges that gap: One prompt to publish — write content in your ed

SkillAgent & WorkflowQuiet
Stars
3
Forks
1
Updated
1mo ago

dsh stream rules [简体中文 Inject rules when needed, without wasting context. You can write custom streaming rules for the agent. These rules are injected only as a steering notice after a pattern match, then agent retry from the same point. This allows you to control the boundaries of agent behavior, without wasting conte

Native PluginMemory & ContextActive
Stars
2
Forks
0
Updated
today

DSH插件市场(dsh plugin marketplace) 🌐 语言 / Language: 中文 [English 一个为 [DeepSeek Harness(DSH)打造的插件市场插件:从 GitHub 的 [ dsh plugin topic 拉取全部插件,在 DSH Web GUI 的设置页中以卡片列表展示,支持 一键安装 / 自动更新 / 版本检测 / 已安装识别 ,全程无需命令行。 ⚡ 一键安装(复制即用) 喂给 AI 的一句话 (AI 具备命令执行能力即可,无需解释): 安装 DSH 插件市场插件(dsh plugin marketplace):克隆 https://github.com/bradeGithub/

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh github connector English [简体中文 A GitHub connector plugin for [DeepSeek Harness (dsh) — connect your GitHub account in one click, then create, review, and merge pull requests without leaving the dsh conversation. Status: design phase. See the [documentation index (中文): [full architecture, [milestone by milestone exe

IntegrationAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh-launcher

entireyu

DeepSeek Harness 助手 (dsh launcher) 面向小白用户的 DeepSeek Harness 一键安装与启动工具。Windows 优先,基于 Tauri 2 + Vue 3 + TypeScript 。 功能 环境检测 :自动检测 Node.js / npm / @deepseek ai/dsh 是否就绪(含 nvm、winget 等常见安装位置与 Program Files 兜底)。 一键安装 Node.js :检测到缺失时通过 winget install OpenJS.NodeJS.LTS 静默安装。 一键安装 / 更新 Harness : npm install g @deepseek ai/dsh

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

DeepSeek Pet 插件 DeepSeek Pet 是一个嵌入 DeepSeek Harness 网页的交互式桌宠插件。它会跟随当前任务、 工具调用、上下文占用和活跃会话自动切换 DeepSeek 表情,并通过呼吸、弹跳、倾斜、 视差和淡入动画呈现 Live2D 风格效果。 角色使用完整表情图切换,不拆分头部、手脚或五官图层,避免部件错位和表情突变。 功能 角色上方用与 Pet 等宽的气泡轮播状态短句,并以单行横向打字机效果跟随最新输出;无任务活动时 10 秒后自动隐藏; 角色下方用横条显示聚焦会话并以亮边标记,正在执行的会话向下排列,超过三个时自动层叠收起; 多个会话并行执行时进入“忙疯了”状态; 根据分析、回答、编码、网络

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-mnemon

omdsh-dev

dsh mnemon 简体中文 English [Mnemon 与 DSH 的深度集成,为 DSH 提供完备的记忆系统能力。 dsh mnemon 是 DeepSeek Harness(DSH)的本地 Mnemon 记忆插件。它把每轮可见的运行时热记忆、可直接阅读的项目档案(Documents)和按需召回的长期记忆体(Memory Spaces)组织成一个受监督、可检索、可维护的三层体系。 插件把 Mnemon 的长期记忆体能力接入 DSH,并补充 Runtime Memory、Documents、生命周期、受限子 Agent、WebUI、命令和权限边界。当前用户指令和仓库事实始终高于历史记忆。 What's more? 更多 DS

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh goal mode 为 [DeepSeek Harness Web 界面提供 可视化 goal 模式 的插件。 把原本只能靠对话命令( /goal )和模型工具( create goal / get goal / update goal )操作的目标系统,变成 看得见、点得动 的界面。 English [中文 两种形态 本仓库同时提供两种形态,推荐使用 A(正式插件,稳定、可注册安装) : 形态 说明 适合 A. 正式插件包 (推荐) 独立 npm 包结构( dsh.plugin.json + cordis.patch.yml + 构建产物), dsh plugin add 安装,页面刷新/重启不丢 日常使用、分享给他人 B

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-win-notify

MuziIsabel

dsh win notify A [DeepSeek Harness (dsh) plugin that shows a Windows toast notification with sound when an agent task finishes. App name DeepSeek with the official whale icon in the notification Notifies when an agent turn completes (running → idle) Shows the last user prompt in the notification body Also notifies on t

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh playwright cli [DeepSeek Harness(DSH)host 插件:把 Playwright CLI 封装成 Agent 可一键调用的工具集 —— 探测版本、安装浏览器、跑测试、打开 HTML 报告,全程无需手敲 npx playwright ... 。 运行面 :host only(无 client bundle,无 Web 依赖)。 执行缝 :复用官方 shell 执行器( ctx.shell ,与 bash / pwsh 工具同源),因此 sandbox 策略、 DSH 环境变量、输出截断、超时/中止分类全部由组合提供。 分发 : lib/ 已提交进 Git,安装 不触发任何构建脚本 ,零交互。

Native PluginBrowser & WebActive
Stars
2
Forks
0
Updated
today

dsh hdc bridge DSH 原生鸿蒙设备桥:通过 hdc 让 Agent 在会话内完成「看设备 → 截图 → 看图 → 改码 → 装包 → 再看」的闭环调试。 A DSH native HarmonyOS device bridge: hdc tools for the agent loop (inspect → screenshot → view → fix → install → verify). 定位 [hdc mcp 等 MCP 服务器已覆盖 hdc 能力层。本插件不重写 hdc 协议,直接复用本机 hdc 二进制(3.x),价值在 DSH 原生层: 会话内工具卡片与 read image 原生闭环 按调用会话解析

IntegrationAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh plugin graph DeepSeek Harness(DSH)Web 设置页插件:以 力导向图 (Koishi / Obsidian 风格)可视化客户端插件之间的关系。 Tip: 这是一个dsh自己写的项目,还在快速完善中 如有好的想法,欢迎提出Issue 功能 力导向图画布 :节点自动物理布局,节点按度数缩放。 两类节点 : 插件节点(蓝色圆点)—— 来自启动清单 window. DSH BOOT 与插槽注册表; 插槽节点(琥珀色菱形)—— 来自实时插槽注册表 ctx.slots.snapshot() 。 三类彩色边 : 蓝色 inject —— 插件对其它包的依赖; 绿色 declares —— 插槽声明者; 琥珀

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

widget dock · DSH 小组件面板 DeepSeek Harness (dsh) 客户端插件:在对话页右侧提供安静的工作状态栏与可定制工作台。 Widget dock plugin for DeepSeek Harness — keep API balance, token usage, session stats, goal progress, and cost estimates in one focused workbench. ✨ 功能 / Features 工作状态栏 :默认显示上下文、目标、回合三项信息,始终不抢占对话注意力 工作台 :点击状态栏或输入框的 + 展开;信息统一在右侧固定区域呈现 按需定制 :可

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

DSH Hub Workshop The public catalog, review projection, and immutable feed authority for the OMDSH ecosystem. The production site is [hub.omdsh.dev, with [hub.0.org.cn as a byte equivalent fallback. The website is public and does not use visitor GitHub OAuth, a member allowlist, or a login session. Repository visibilit

Developer ToolDeveloper ToolsActive
Stars
2
Forks
0
Updated
today

dsh-desktop

zsyu9779

DeepSeek Harness Desktop 非官方的 [DeepSeek Harness 桌面壳:用 [Wails(Go)包住官方 @deepseek ai/dsh 的 Web UI,做成一个像 Codex 那样的原生桌面应用。 ⚠️ 本项目与 DeepSeek / DeepSeek AI 无任何关联,是社区作品。DeepSeek Harness 本身仍处于开发者预览阶段(v0.1),接口可能随时变更。 它是怎么工作的 启动时在受管端口(优先 3080 ,被占用则随机)拉起 npx y @deepseek ai/dsh@0.1.0 rc.6 web 轮询本地 Web UI 直到就绪,然后把窗口重定向到该地址 退出应用时清理整个

UI PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-desktop

mrbbbaixue

dsh desktop [ [ DeepSeek Harness 的 Windows 桌面启动器:.NET 10 WPF + WebView2,独立进程托管 dsh 服务,托盘管理,标题栏深浅色跟随系统。 特性 🪟 WPF + WebView2,HiDPI — PerMonitorV2 感知,多显示器不同缩放比例下自动适配;窗口约 50–150MB,关窗即释放 ⚙️ 独立进程托管 dsh — dsh 服务由壳用独立进程拉起,不依赖 vbs 等脚本;意外退出自动重启(节流防循环) 🖥️ 系统托盘 — 右键托盘菜单可随时 启动 / 重启 / 停止 dsh 服务;关窗隐藏到托盘,服务常驻 🎨 原生标题栏深浅色 — 自动跟随 Wind

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh plugin guide Everything you need to build DeepSeek Harness plugins. Official docs archive · Cordis primer · community deep dive · battle tested pitfalls · agent skill 中文 · Español · Português · हिन्दी What is this? A self contained knowledge base for developing plugins on [DeepSeek Harness ( dsh ) — the ["everythin

SkillAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh research notes A small local note taking plugin for [DeepSeek Harness. It gives an Agent four tools for saving, listing, searching, and exporting research notes. The plugin stores human readable Markdown files under .dsh/research notes/ in the current workspace. It does not need a database, external API, browser pe

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

context vista 一眼看清你的上下文窗口 —— token 用量、压缩收益、成本估算,尽收眼底。 为 [DeepSeek Harness 提供 /context 斜杠命令,用 环形图 展示当前上下文 token 用量与分配,对标 Claude Code 的 /context 。 Host 半部 :注册 /context 命令,返回文本摘要(headless / 非 Web 界面可用)。 Client 半部 :把 Web 端 /context 的命令行升级成一张卡片,包含: 上下文组成环形图 :系统提示词 / 工具 schema / 消息,外加灰色"剩余"(未使用)部分,整环 = 上下文窗口。 压缩效果环形图 :执行过 /c

Native PluginMemory & ContextActive
Stars
2
Forks
0
Updated
today

pack-agent

sakikoTGW

Agent Modpack English [中文 Install your agent like an MC modpack. Agent Modpack — Export / import your agent like an MC modpack: define a role, ship a .pack.json , run packagent install into Claude Code, Codex, and other harnesses. [ [ [ Pack one agent (skills / rules / MCP) into a portable .pack.json , then install on

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh-lark

Roy-oss1

@dsh contrib/dsh lark channel English [中文 A Lark/Feishu IM bot channel plugin for DeepSeek Harness. Each chat (direct message or group) drives its own DSH agent; assistant output streams back as a typewriter card, and host approval questions become interactive cards decided by button clicks. Built from the standalone D

UI PluginWeb UIActive
Stars
2
Forks
1
Updated
today

dsh claude move Claude Code → DeepSeek Harness: full migration + seamless resume. [ [ English [中文 [Español [Português [हिन्दी A plugin for [DeepSeek Harness ( dsh ). After installation it automatically discovers everything in your local Claude Code — session transcripts, memories, skills, global instructions, settings,

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh tiered approval 自动放行安全的,拦下不可逆的,拿不准的问人。 🛡️ 静态规则安全网 · 🤖 LLM 审查员 · 🙋 人工兜底 为 DeepSeek Harness (DSH)而写的分级自动审查插件 [!WARNING] ## 本插件是纯 vibe coding 写的 代码、配置 schema、这份 README 都是 AI agent 生成的,几乎没有人工 review: 未经过安全审计 、 与 DeepSeek 官方无关 、 不提供任何担保 。它把关的是安全决策,请把它当 起点,而不是信任边界 —— 用之前先读一遍 [ lib/index.js (约 500 行); 把每一条默认规则改成符合你自己威胁

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh safe delete Safe delete plugin for [DeepSeek Harness (DSH): move files into a trash area instead of permanent removal, with restore and purge support. Developed by Deepseek V4 Flash 0731 with DeepSeek Harness [中文文档 · [Changelog · [Contributing · [License Features Safe delete : files and directories are moved into a

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh token usage A clearer, prettier token usage bar for the DeepSeek Harness web UI. [ [ [ 🌐 [中文 · English The shipped DeepSeek Harness web UI squeezes token usage into one cramped line of text under the composer. dsh token usage replaces it with a glanceable chip bar plus a details panel with the full breakdown — and

Developer ToolDeveloper ToolsActive
Stars
2
Forks
0
Updated
today

dsh notify windows DeepSeek Harness(DSH)插件:当 Agent 需要你关注时,向 Windows 发送系统桌面通知。 任务完成 ✅ | 等待审批 🔐 | 等待回答 ❓ —— 离开屏幕也不错过任何需要你处理的事。 ✨ 功能 任务完成提醒 :监听会话 turn/end 事件,任务完成 / 出错 / 输出超限时立即弹窗,标题自动使用会话标题,正文显示原因与轮次; 权限审批提醒 :监听 approval/asked 事件,有操作等待你的审批时立即提醒;会话审批策略为 never 时自动跳过(此时没有东西在等你); 提问确认提醒 :Agent 调用 ask user question 向你提问时提醒;本

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

billion context dsh [English [中文 ⚠️ Beta notice — not for production use This project ( v0.1.0 ) is a work in progress beta. The [DeepSeek Harness itself is also in public beta . Do not use either in engineering / production environments — expect breaking changes and rough edges. Built with gratitude on top of these pr

Native PluginMemory & ContextActive
Stars
2
Forks
0
Updated
today

SHOPLINE AI Toolkit for DeepSeek Harness (DSH) 🛍️ SHOPLINE AI Toolkit — a [DeepSeek Harness (dsh) plugin that brings SHOPLINE 开发者 MCP 官方工具与 SHOPLINE 平台知识技能 到你的 AI 编程助手。 架构参照 [Shopify AI Toolkit: Skills + Dev MCP Server + Agent Plugin 。 dsh plugin · SHOPLINE · MCP · AI Toolkit · DeepSeek Harness [English · [简体中文 Englis

SkillAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

DSH IDE A community VS Code extension that brings dsh web runtime into your editor. English [简体中文 Note : This is an independent community project and is not officially affiliated with or maintained by DeepSeek. DSH IDE only acts as a VS Code client for a dsh compatible Web Runtime. Features Sidebar chat in the Secondar

IntegrationDeveloper ToolsActive
Stars
2
Forks
1
Updated
today

dsh wechat notify A DeepSeek Harness (dsh) plugin that lets your agent reach you on WeChat . 实机演示:任务完成后,agent 主动把结果通知推送到你的微信。 这是什么? dsh wechat notify 是 [DeepSeek Harness(dsh)的一个插件。 它给 agent 的「工具箱」里新增一个 wechat notify 工具,让 agent 在需要找你的时候——比如任务完成、 遇到需要你拍板的问题、或长时间运行结束——主动发一条微信通知到你手机上。 它复用的是你本机 已经登录、已经跑通的 ClawBot 微信通道 ,不需要额

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh-review-loop

wuxiangru915

dsh review loop Incremental diff reviewer for [DeepSeek Harness. [中文说明 · [MIT License dsh review loop turns code review of agent work into an incremental, closed loop process: after you approve a batch of changes, a checkpoint is recorded and the next review shows only the changes made afterward — never a re review of

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh sound effects plugin English [中文 Sound effects for [DeepSeek Harness, faithfully ported from the [DeepSeek Reasonix desktop app's audio system. Everything is synthesized in the browser with the Web Audio API — no audio files, no network. What it sounds like When Sound While the agent is working (reasoning or stream

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh-superpowers

codeAnqiang-ma

dsh superpowers English [中文 [ [ [ [ [dsh superpowers adds [obra/superpowers support to [DeepSeek Harness. It registers 14 skills for brainstorming, planning, TDD, debugging, and code review, and keeps the using superpowers bootstrap active throughout the session. Contents [Installation [What it does [Verification [Conf

SkillAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh-cost

GiantGKL

dsh cost [中文 DSH plugin for the [DeepSeek Harness: live conversation cost and DeepSeek account balance in the composer stats row. Currency follows the UI locale: RMB (¥) in the Chinese UI, USD ($) in the English UI. Features Conversation cost : cumulative token usage over the whole session log × official DeepSeek prici

Developer ToolDeveloper ToolsActive
Stars
2
Forks
0
Updated
today

dsh-tui

orriduck

dsh tui A small terminal UI for [DeepSeek Harness, built as an out of tree DSH profile bundle. It is intentionally optimized for one person daily use: start in the current directory, chat immediately, close the terminal, and continue the same workspace later. Quick start Open a terminal in the project you want DeepSeek

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh-llm-wiki

detpecca

dsh llm wiki DeepSeek Harness 插件:让 agent 直接管理 LLM Wiki 个人知识库(检索、阅读、统计、校验、错误本、入库)。 @detpecca/dsh llm wiki 是一个 薄适配层 ——不重复实现任何检索/编译逻辑: 每个工具通过 DSH 的 subprocess 服务调用 [DSH Wiki(LLM Wiki 的 Python 引擎,带 json 输出)的 CLI; Wiki 自己的 结构化信号检索引擎 (页名/别名/标签/摘要加权打分)和 论文算法 1 编译流程 保持唯一权威; 插件本体 零运行时依赖 (纯 ESM,无构建步骤)。 工具 工具 作用 需要 LLM key? wiki

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-kanban

Ericwong5021

dsh kanban dsh kanban is a kanban board plugin for the [DeepSeek Harness Web UI. It gives Harness sessions a dedicated workspace for planning and triage. Open the board from the sidebar, search across sessions, drag idle tasks between workflow columns, and open any card in its original Harness conversation. What it doe

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh-recall

Mongfayi

dsh recall 对话撤回(recall)插件:把一条消息 及其之后的所有内容 从对话中移除——界面不再显示,模型也不再见——但 绝不回退任何代码/文件改动 。撤回以追加日志(append only)中的 session/recall 墓碑事件持久化,重启后依然生效。 用法 会话空闲时: 用户消息 右侧的撤销按钮 → 确认 → 撤回该轮对话及其后的全部内容(你的提问与智能体的回复一并移除)。 撤回位置显示「已撤回的消息」提示。 智能体运行中撤销按钮禁用(先停止当前回合)。 实现 宿主端 ( lib/index.js ): POST /recall 路由( {sessionId, messageId} 或 {sessionId,

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh ergonomics DSH 会话人体工学 —— 一组提升 DSH(DeepSeek Harness) 日常会话体验的小改进。 Ergonomics(人体工学):让工具更顺手、更符合直觉的体验优化集合。后续可继续加入更多 UX 改进。 功能 1. /new 一键新会话 在输入框输入 /new 并发送,立即新建并切换到一个空白会话。 不用再移动鼠标去点侧栏的"新建会话"。 2. 输入框历史回溯( ↑ / ↓ ) 按 ↑ 回退到上一次提交过的内容;按 ↓ 向前移动。 回到最新位置时,恢复你"正在输入但还没提交"的草稿;没有草稿则显示空白。 按会话隔离 :每个会话独立维护历史。 刷新不丢 :历史从会话轨迹重建,页面刷新后依然可用。

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-git-plugin

MashedPotato817

dsh git plugin [ [ [ 给 DeepSeek Harness(DSH)的 Git 工作流插件:补齐 DSH 相比 Claude Code / Codex 缺失的「程序员手感」——diff 感知、自动分支、规范提交、可恢复撤销。全部通过 ctx.subprocess seam 以纯 argv 调用 git ,不经过 shell 层,每次运行都受字节与超时上限约束。 能力 命令(面向人 / 斜杠命令) 命令 作用 /status 显示当前分支与工作区状态(porcelain v1) /diff 摘要显示已暂存 / 未暂存的改动 /branch [ ] 不带参数列出分支;带参数则 git switch c 新建并切换 /

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh mcp manager [简体中文 English MCP server manager for [DeepSeek Harness (DSH) — a Settings → MCP page where you add MCP servers once (remote HTTP or local stdio process), authenticate HTTP servers with OAuth in the browser , and get every server's tools registered as native mcp tools in all your sessions. The built in @

IntegrationMemory & ContextActive
Stars
2
Forks
0
Updated
today

DeepEye Vision for DSH 为 [DeepSeek Harness 提供视觉能力的原生 Cordis 插件。 让纯文本模型获得"眼睛":图片描述、OCR 文字提取、视觉问答、UI 布局分析、剪贴板截图分析。 特性 原生集成 — 直接注册到 ctx.tools ,无 MCP 中间层开销 多后端 — 支持 OpenAI (GPT 4o)、Google Gemini、自定义 OpenAI compatible 端点 智能预处理 — 自动缩放过大图片、转换 JPEG 以节省 token 结果缓存 — LRU 缓存减少重复 API 调用 System Prompt — 自动注入提示段落,让模型知道何时使用视觉能力 安装 本插

UI PluginVision & MediaActive
Stars
2
Forks
0
Updated
today

dsh-plannotator

titanwings

📝 dsh plannotator Review the plan before your coding agent writes the code. [ [ [ ① The plan sounds plausible, but one sentence hides a migration risk? ② You found several independent problems, but the only choices are Approve or Reject? ③ You want every comment to stay attached to the exact text the agent must revise

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

同花顺harness 同花顺风格股票终端 + AI Agent 工作区融合的 DeepSeek Harness(DSH)终端式前端。 最终定位 :作为一个插件注入 DSH,替换 dsh 默认 Web 界面(独立运行 = 开发/演示模式,见下文「与 DSH 的集成路径」)。 核心隐喻: K 线图以股票行情展示 Token 消耗 —— 一次删掉 10,000 行死代码的大重构,烧穿 61.40亿 Token,K 线上一根大红烛拔地而起,子图的代码变更则是一根大绿柱一砸到底。 快速开始 要求 Node ≥ 20.19(开发环境实测 Node 24)。 界面结构(对照设计稿 designs/dsh terminal/DSH Terminal

UI PluginOtherActive
Stars
2
Forks
0
Updated
today

DeepSeek Harness Plugin MCP Made by [BitFun. MCP server that lets any agent discover, inspect, install, and run [DeepSeek Harness plugins. Catalog source: [github.com/topics/dsh plugin. English [中文 What it does DSH plugins are Cordis bundles ( dsh.bundle.patch → cordis.patch.yml ). Foreign agents speak MCP, not Cordis.

IntegrationAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh-plugins

HackSing

DSH Plugins English [中文 An independent, bilingual, and continuously maintained plugin directory for [DeepSeek Harness ( dsh ). Explore 94 plugins across four broad areas. Each plugin appears once, under the category that best represents its primary use. Last directory review: August 13, 2026 . Start here Looking for a

Native PluginOtherActive
Stars
2
Forks
1
Updated
today

dsh usage dashboard DeepSeek Harness ( dsh ) 的 Web 插件:在侧边栏底部显示 API 余额 和 今日花费 。 余额:通过 DeepSeek API GET /user/balance 实时获取(带缓存,默认 60s) 今日花费:扫描 $DSH HOME/sessions 的会话日志(zstd 多帧解码),汇总今日 token 用量 × 官方定价估算 支持 [DeepSeek 2026 08 17 起的峰谷定价(高峰 9 12 / 14 18 点,空闲半价),按每条请求的发生时间自动选用费率 界面 侧边栏底部小部件: 展开时显示 余额 ¥xx.xx 与 今日花费 ¥xx.xx ,点击展开

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-record-replay

humblebanana

dsh record replay A [DeepSeek Harness plugin that turns the [Open Record/Replay macOS workflow recorder into first class harness capabilities. It registers the open record replay skill and six model facing orr tools , so an agent can learn a user demonstrated desktop workflow: record the user's real macOS actions, vali

SkillAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

表情包插件 dsh expression — 找得到、发得出 聊天 Agent 斗图最容易翻车的三件事: 手写假路径 乱发不贴题的图 搜不到就硬发 dsh expression 是 DeepSeek Harness 的表情包插件:直接读你现成的表情包库,语义检索后只发 真实存在的文件 。 数据来自 [selfloom(单用户陪伴 agent)的表情包库—— 零迁移、开箱即搜 。发送走 [ dsh companion 的 QQ 通道( companionQq 服务);没有 QQ 通道就不挂工具,绝不给模型一个发不出去的空工具。 想换一套聊天搭子人设?另装 [dsh companion (人设 + Hermes 记忆 + QQ 通道)—

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-wikilink

zhaoscsc

dsh wikilink 中文版 README :[README.zh.md · 简体中文文档入口 Obsidian style [[wikilink]] mentions for the DeepSeek Harness web GUI. Type [[ in the composer and a note title picker floats up: fuzzy search your workspace notes as you type — including out of order (subsequence) matches (「曼食」 finds 曼谷街头美食文化观察) and space separated mul

UI PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh session notification [ English [中文 A notification plugin for the dsh web GUI. When a session finishes, hits an error, asks you a question, or needs your permission, you get a heads up: a sound plays, and when you step away from the tab a system notification keeps you in the loop. Install Everything lives in this pl

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

DeepSeek Harness Docker [English 简体中文 [ [ [ [ 这是一个可直接构建的 DeepSeek Harness 社区容器方案,默认运行官方 @deepseek ai/dsh 的 Web UI。它不构建或修改 DeepSeek Harness 源码,只把官方 npm 发行物装入一个精简、非 root 的 Node.js 24 运行时。 当前基线: @deepseek ai/dsh@0.1.0 rc.6 。DeepSeek Harness 仍处于 RC 阶段;升级前应重新完成本文的构建和 Smoke Test。 0.1.0 rc.6 直接对应构建时官方 npm Registry 的 @deepseek

UI PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh learn everything — DSH 费曼学习法插件 状态:M4 发布门禁(README Model Experience、组合 smoke、验收矩阵、GIF)。 设计决策与验收标准见 [SPEC.md;验收矩阵见 [docs/ACCEPTANCE.md。 一句话定位 :让 DeepSeek Harness 变成"边学边做"的环境——开启学习模式后,模型按费曼学习法讲解概念、出卡片题请你复述、针对缺口重新讲解,教学内容以富 HTML 卡片可视化呈现。 核心形态 会话级 /learn on off 切换;开启后注入费曼教学引导( learning:policy prompt 段),关闭后完全恢复默认行为。 模型经 te

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-mac-desktop

bitterSmilezzz

dsh mac desktop English [中文 A [DeepSeek Harness plugin that opens the Web GUI in a native macOS desktop window — a thin SwiftUI + WKWebView shell. The page it renders is the exact same Web GUI served by dsh web , so the look and feel are 100% the Web UI, plus native window chrome (title bar, toolbar, Dock icon, Cmd+R )

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

Awesome DeepSeek Harness Plugins 中文导读 :这是 DeepSeek Harness(DSH)生态的插件精选列表,英文为主维护,中文说明见各章节标题下方。想直接上手的高星插件评测请看 [Hands on Notes。 A curated list of plugins, tools, skins, bridges, and extensions for [DeepSeek Harness (DSH) — the open source agent framework from DeepSeek, built on the motto "Everything is a Plugin." DSH laun

UI PluginWeb UIActive
Stars
2
Forks
1
Updated
today

@xilin3/dsh prompt persona [ [ 一个 DeepSeek Harness(DSH)插件 :在 Web 设置页里可视化编辑系统提示词( deployment:persona ),并实时预览改动效果。即「给 Harness 加系统提示词」的 方法 1 —— 改部署 persona 。 在 Harness 的系统提示词组装模型里, deployment:persona 是唯一一段「由配置/部署作者撰写」的片段(order 0 )。本插件接管这段片段,把它变成设置页里可直接编辑、可预览、可持久化的内容,而无需改动 Harness 本体或手写 cordis.patch.yml 。 特性 🎛️ 可视化编辑 :设置页

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

PlainDeck

Mappedinfo

PlainDeck 像 PPT 一样编辑,像代码一样保存。 PlainDeck 是一个以用户操作为先的幻灯片编辑器:你在浏览器里拖拽排版,底层文件则保持为 AI 能读写、Git 能管理的 JSON。 在线试用 · npm 包 · 查看源码 用 CLI 生成的真实演示 这些不是截图式样板,而是由 plaindeck npm 包通过 init → operations → validate → render 生成的完整项目。每一页仍然是可编辑、可审查的 JSON。 生成式 AI 互联网如何工作 学习如何留下来 [ [ [ [ 源文件 · [ PDF [ 源文件 · [ PDF [ 源文件 · [ PDF [查看完整 demo galle

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh-side-panel

XYZ1024-alt

dsh side panel A right side developer panel for the [DeepSeek Harness web UI ( dsh web ). It adds a collapsible side panel with three tabs: Files — browse the current session's working directory; click a text/code file to preview it in a popup (unsupported formats show a message). History — list the current conversatio

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh-plugins

Yihong89

dsh plugins Plugins for [DeepSeek Harness (DSH). A pnpm workspace: one package per plugin under packages/ . Package What it does [ dsh usage report Per session token usage and estimated cost report ( /usage command + usage report tool), priced from the DeepSeek pricing table. [ dsh codebase memory Persistent per worksp

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

DeepSeek Harness TypeScript SDK English [中文 [ [ [ [ TypeScript / Node.js SDK for [DeepSeek Harness ( dsh ), the open source AI agent harness by DeepSeek: run coding agent turns in a runtime subprocess over newline delimited JSON RPC stdio. A standalone implementation referencing the upstream packages/sdk/{protocol,clie

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh vision proxy [English [简体中文 DeepSeek brain + automatic image transcription for [DeepSeek Harness. A provider route proxy plugin: keep using DeepSeek (a text only line) as the conversation brain, and attach images in the Web GUI anyway — every image is automatically transcribed to text through an OpenAI compatible V

Native PluginVision & MediaActive
Stars
2
Forks
0
Updated
today

Awesome DeepSeek Harness Plugins [ English [简体中文 A curated index of plugins, starters, tools, and primary resources for [DeepSeek Harness (DSH). [DeepSeek Harness is DeepSeek AI's open source, plugin first agent harness: models, tools, skills, sessions, sandboxes, filesystems, loops, orchestration, and UI can all be co

SkillAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh plugin pi bridge Bridge Pi Agent's skills into DeepSeek Harness zero migration. What it does /.config/pi/skills/ /SKILL.md Injects skills as available skills Install Configuration License MIT YYTbit

SkillAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh plugin opencode bridge Bridge OpenCode's skills and configuration into DeepSeek Harness zero migration. What it does /.config/opencode/skills/ /SKILL.md Injects skills as available skills /.config/opencode/opencode.jsonc Injects config context Install Configuration License MIT YYTbit

SkillAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh plugin codex bridge Bridge OpenAI Codex's skills, instructions, and configuration into DeepSeek Harness zero migration. What it does /.codex/skills/ /SKILL.md Injects skills as available skills /.codex/instructions.md Injects instructions into system prompt /.codex/config.toml Injects model/provider context Install

SkillAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh plugin claude bridge Bridge Claude Code's memory, skills, and configuration into DeepSeek Harness zero migration, full compatibility. What it does Reads Claude Code's standard file locations directly no migration scripts, no file copying, no symlinks: /.claude/projects/ /memory/ .md Injects memories as dynamic syst

SkillAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh-context-viewer

shiningsprk-arch

🕵️ DSH上下文查看器 [English README DeepSeek Harness 桌面上下文查看器(Electron + React)。浏览历史与实时会话的 完整信息 : 思考链、shell 命令(pwsh/bash)、工具调用参数与结果、错误、token 统计、原始事件日志。 功能 会话列表 :按 workspace 分组,标题/时间/轮次/步骤/token 统计,运行状态实时标记 事件时间线 :用户消息、助手消息(含可折叠思考链)、工具调用卡片(shell 命令高亮)、 工具结果(含错误)、轮次/步骤边界、流式增量(默认折叠) 过滤 :按事件类别(用户/助手/思考/调用/结果/边界/流式/其他)过滤 实时视图 :通过

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh-postmortem

zzh-newlearner

DSH Postmortem / DSH 事后复盘 面向 [DeepSeek Harness 的本地优先、只读失败复盘插件。 Local first, read only failure postmortems for [DeepSeek Harness. dsh postmortem 从既有 DSH session event log 生成简短、脱敏的故障报告。它不会改变 agent loop、重试工具、注入提示词或上传完整轨迹。可选模型复盘始终是第二层:确定性规则结论优先,模型输出无效或不可用时会被丢弃。 dsh postmortem turns the existing DSH session event log into a

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh local filetree DSH Web UI 右侧文件树插件(静态 bundle,本地安装)。 许可 :插件自身代码为 MIT(见 [ LICENSE );内嵌的文件类型图标为第三方 MIT 许可作品,署名与完整声明见 [ THIRD PARTY NOTICES.md (发布到 GitHub 时请保留该文件)。 右侧栏 :侧边栏底部的「文件树」按钮打开 Web UI 右侧 details 栏(360px 起,可拖拽调宽),显示 当前会话工作区 的目录树。 懒加载 :逐层展开时经 /filetree/list 拉取一层(Host 的 ctx.fs.listDir ,只读),不递归整盘。 可回滚 :文件树以 priorit

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

把 ChatGPT 订阅登录接入 DeepSeek Harness。 在 DSH 设置页完成 OpenAI OAuth 登录、查看 Codex 用量,并自动向 openai codex 模型提供方提供有效凭据。 快速开始 · 功能一览 · 工作方式 · 配置 · 凭据处理边界 快速开始 将插件安装到 DSH 的 web profile: 启动或重启该 profile: 然后完成首次连接: 1. 打开 DSH Web,进入 设置 → OpenAI Codex 。 2. 点击 登录 OpenAI ,在弹出的 OpenAI 官方授权页完成登录。 3. 返回 DSH,在 设置 → 模型提供方 中选择 openai codex 。 [!IMP

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

loop 定时循环插件:/loop 命令 + loop 工具(模型自调节)+ 对话页活动状态条,支持多循环并行 按固定间隔向当前 agent 重复投递 prompt——适合轮询、PR 看护、build fix test 循环。对齐 Claude Code 的 /loop 语义, 一个会话可同时跑多个循环 。形态:官方 bundle 插件 ( dsh.bundle + dshClient 通道),0 patch。 效果 能力 工具 ( defineTool 注册,模型每轮可自调节): 工具 说明 loop start(启动新循环)/ stop(停指定或全部)/ status / list(列出当前会话循环) 命令 (用户侧): 命令

UI PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh onlyne English [中文 Give DeepSeek Harness agents a real IM inbox/outbox through [Onlyne. dsh onlyne is the [DeepSeek Harness ( dsh ) plugin for Onlyne, the workspace local IM channel daemon. It adds model facing tools and a watch loop so a dsh agent can receive messages from IM channels (Telegram, Feishu/Lark, QQ Bo

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh-worktree

FlashingChen

dsh worktree English [中文 [ Codex style permanent git worktrees for DeepSeek Harness — a Cordis plugin that gives a DSH profile the same durable worktree workflow as codex worktree create permanent . A permanent worktree is a real git worktree add detach checkout that survives sessions and restarts . You (or the agent)

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

dsh-undo

LingLambda

dsh undo Context undo/redo plugin for [DeepSeek Harness ( dsh ), inspired by the undo/redo experience in coding agents like [opencode. The plugin adds two model facing tools to every root agent: undo — rolls the model context back to the end of the last completed step. Every assistant message and tool result of that st

Native PluginMemory & ContextActive
Stars
2
Forks
0
Updated
today

dsh prompt studio Prompt Studio 的 DeepSeek Harness 插件分发形态。插件在对话页注册 Prompt Studio 标签页,以同一组件列表展示运行时原生提示词和用户补充,并提供编辑、原生覆盖与完整请求预览。 组件模型 每个编排项使用同一结构: 这些字段分别描述不同维度,不以 kind 代替角色或用途: kind 只区分来源: native 是 Host 在运行时发现的只读组件; supplement 是用户可编排并持久化的补充组件。 role 决定内容归宿: system 一律注册为有序 system section,最终与原生 sections 合并到全局唯一的 system 字段;此

UI PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh auto approval [English [中文 Automated tool call approval for DeepSeek Harness: an auto tier for the approval policy that classifies every tool call as allow / deny (fully autonomous — no human in the loop, uncertain calls are denied). A monorepo of two packages: Package Role [ packages/dsh auto approval host half :

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

Nowledge Mem for DeepSeek Harness Community DeepSeek Harness ( dsh ) bundle for Nowledge Mem, published from the standalone nowledge co/nowledge mem deepseek harness repo and mirrored in nowledge co/community . Install For a local checkout of nowledge co/community , run this from the repository root: Make sure the nmem

IntegrationMemory & ContextActive
Stars
2
Forks
0
Updated
today

dsh tool schema [English DSH JSON Schema 验证工具插件 —— 验证数据、列出失败路径、解释 schema 约束、安全应用 default。零网络、零动态代码执行。 [ 动机 Agent 需要验证任意 JSON 数据是否符合 schema(API 响应结构、插件 manifest、配置文件、会话事件),并定位失败路径。现有路径没有这个能力: 1. defineTool 参数 DSL 是作者 DSL ——面向插件作者声明工具参数,不是面向任意用户 schema 的通用验证服务 2. dsh tool json 只提供查询 ——能取路径、能筛选,但不验证结构、不给 RFC 6901 失败定位 3.

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-tool-stat

omdsh-dev

dsh tool stat [English DSH 统计工具插件 —— 描述统计、百分位数、频数分布、相关性计算。零依赖、纯函数、确定性。 [ 动机 Agent 处理数值数据时,从 CSV / JSON 提取出数值数组后往往需要聚合分析(均值、分位数、分布、相关性)。现有工具链没有这类能力: 1. calculator 只做单表达式求值 ——一个表达式算不出分位数分布,更算不了相关系数 2. dsh tool csv 的 stats 只报告行/列结构 ——不提供对一组观测值的统计聚合 3. 模型"心算"统计不可验证 ——均值、方差、百分位、相关性涉及大量浮点运算,手算错误率极高,且无法给用户展示可复现的过程 本插件接收显式传入的有

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-tool-time

omdsh-dev

dsh tool time [English DSH 时间工具插件 —— 严格 ISO 解析、IANA 时区转换、UTC 日历运算、固定时长差。零依赖、零进程、纯函数。 [ 动机 Agent 处理时间信息是最高频需求之一——"现在几点"、"3 天后是几号"、"把 UTC 转成北京时间"。当前做法 bash date 的问题:每次起进程、跨平台语法不一致(macOS 与 GNU date d 完全不同)、时区转换靠 TZ=... 手动拼。模型心算时区偏移和闰年/DST 边界是错误高发区。 安全模型 无 eval 、无 new Function 。输入只经过严格校验: 严格 ISO 8601 子集 :仅接受 YYYY MM DD (UT

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh tool regex [English DSH 正则工具插件 —— 测试匹配、提取捕获组、安全替换、 静态解释正则含义(不执行任何代码) 。零依赖、纯函数。 [ 动机 模型经常需要验证用户给的 pattern、从日志/文本中提取字段、做文本替换。"心算"正则结果错误率极高,且无法给用户展示可验证的过程。现有替代是起 bash 进程跑 node e 或 python——进程开销 + 模型现写脚本的正确性风险。内置 grep 只能做 文件域 搜索,无法对任意文本测试/提取/替换/解释。 本插件提供确定性正则工具,其中 explain 是差异化能力:静态解析 pattern 结构并给出人读解释, 不执行匹配 ,天然免疫 ReDoS

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

deepseek harness huggingface A community plugin for [DeepSeek Harness that adds read only Hugging Face Hub model discovery. Status Early prototype. The plugin currently provides one tool: hf search models — searches public models on Hugging Face Hub without an API key. Development Load locally in DeepSeek Harness Add t

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh tool markdown [English DSH Markdown 工具插件 —— HTML↔Markdown 转换、GFM 表格规范化、目录生成。零依赖、纯函数、手写轻量解析器。 [ 动机 模型最常见的文档场景:用户贴一段 HTML(网页源码、邮件、导出文件)、贴表格要求整理、或要求"转成 markdown"。没有工具时模型只能硬编码处理——HTML 实体会错、表格会乱、网页噪音(导航/脚本/广告)会混入。本插件提供确定性转换,与 dsh tool csv 互补: csv 管结构化表格,markdown 管文档/网页 。 安全模型 零依赖 :手写递归下降 HTML 解析器(不引入 cheerio/jsdom——净增数十

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-tool-json

omdsh-dev

dsh tool json [English DSH JSON 查询工具插件 —— JMESPath inspired 路径查询(自定义子集),零依赖递归下降解析器。 [ 为什么需要 Agent 处理 JSON 是高频操作——API 返回值、配置文件、工具输出到处都是 JSON。当前做法是起 bash 进程跑 node e 或 jq ,每次都有进程开销和字符串序列化成本。 DSH 内置 grep 可以做正则匹配,但无法理解 JSON 结构。对于 {"items":[{"id":1}]} : grep 只能做字符串级搜索,容易误匹配值、key、或嵌套子对象中的同名 key json 走结构化路径,只匹配指定路径,不混淆 key 和 v

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh tool encoding [English DSH 编码/哈希工具插件 —— UTF 8 文本的 base64/base64url/url/hex 编解码 + 哈希 + UUID。零依赖、零进程、纯函数。 包名: @deepseek ai/dsh tool encoding (独立 bundle,非 monorepo 集成形态); lib/ 产物由仓库内 npm run build (tsc)生成并随仓库提交。 [ 动机 Agent 处理编码/哈希是日常高频操作:查看 API 响应里的 base64 字段(JWT payload)、构造 query 参数、校验文件完整性(sha256)、生成 UUID。当前做法 bash

UI PluginOtherActive
Stars
2
Forks
0
Updated
today

deepseek manners 在每次发消息之后给可爱的鲸鱼娘说谢谢(默认「谢谢你,鲸鱼大人」),仅当轮生效。 安装 本插件是 [DeepSeek Harness(DSH) 的插件,需要先有一个可运行的 DSH。 本地源码装配 从 GitHub 安装 构建产物( index.mjs / client.js )已随仓库提交,git 安装无需额外构建步骤。 装配完成后,Web 界面输入框右侧会多出一个心形开关,用于随时开关注入。 配置 DSH HOME/settings.yaml : 机制 仅在包含用户直接输入的 step(turn 的第一个模型请求)注入,落在 payload 底部 只看最近一次 assistant 回复长度—— 回

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-tool-diff

omdsh-dev

dsh tool diff [English DSH Diff 文本差异工具插件 —— 文本 / JSON / CSV / Markdown 结构化比较与 unified diff 生成。零依赖、纯函数、只读。 [ 动机 Agent 需要对比两份内容(配置片段、API 响应、表格、文档修订)时,现有路径是起 bash 进程调用系统 diff 或手写比较逻辑: 1. 每次调用都起进程 ——Windows 上尤其昂贵 2. 系统 diff 不懂结构 ——JSON 只能给整段文本差异,看不出 $.user.name 这样的路径级变更 3. 手写比较代码不可验证 ——边界(引号内逗号、嵌套数组、标题重命名)极易出错 本插件提供确定性、零依赖

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh tool calculator [English DSH 计算器工具插件 —— 安全的数学表达式求值器。零依赖、零进程、纯函数。 [ 动机 Agent 做算术不稳定是 LLM 的通病。DSH 内置的 bash 工具可以调用 echo $((15 + 27 3)) 完成计算,但有两个问题: 1. 每次算术都起一个 bash 进程 ——Windows 上尤其昂贵(创建进程、加载 shell、执行、收集输出),高频调用时累积延迟显著 2. bash 算术语法有限 ——不支持 sqrt 、 sin 、 cos 、 log 、 pow 等数学函数,agent 在这些场景下只能猜答案或写脚本 本插件提供零依赖、零进程、纯函数的计算器——

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-deepresearch

havingautism

🔬 Deep Research [English 中文 @deepseek ai/dsh deepresearch 把证据优先的 Codemini 研究工作区带到 DSH。它提供持久工作流状态、模型工具、生成的 deepResearch Remote namespace 和“深度研究”Web 工作区,同时组合宿主已有的 Web 与 subagent 能力。 ✨ 特性 🧭 记录研究问题、目标、约束、种子材料和研究深度。 🧩 确认前编辑子问题、依赖关系和明确的成功标准。 ✅ 未确认计划时拒绝写入证据。 🔎 为每个子问题关联论点、摘录、URL、置信度和已覆盖标准。 📊 跟踪问题覆盖度、搜索与抓取预算、局限和部分完成状态。 📝

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-notebooks

havingautism

📓 Notebooks [English 中文 @deepseek ai/dsh notebooks 把 Codemini 风格的持久随手记带到 DSH。它提供存储、模型工具、生成的 notebooks Remote namespace,以及完整的“随手记”Web 工作区。 ✨ 特性 🗂️ 使用网格或列表浏览支持搜索、筛选和排序的笔记库。 📝 创建带标准化标签和初始手写来源的持久笔记。 🌐 添加网页引用、已读取的网页正文、对话答案,以及纯文本或 Markdown 文档。 ✅ 精确选择参与综合总结和 Studio 产物的来源。 🧠 保存有依据的总结、Mermaid 思维导图和 Markdown 报告。 🗑️ 直接在工作区中

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-hub

omdsh-dev

OMDSH Hub OMDSH Hub is a community extension catalog and Profile generation manager for DeepSeek Harness. It reuses the Harness Profile, Bundle, Repository Plugin, Agent Preset, layered Skill registry, Cordis lifecycle, and configuration contracts while adding transactional installation, recovery, catalog browsing, and

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh-advisor

btspoony

dsh advisor English [中文 [ A standalone dsh plugin bundle porting the omp "advisor" subsystem: a per session reviewer model that observes the primary transcript, reviews each stepped turn with an explicitly configured model (provider + model are required), and injects severity ranked advice (nit / concern / blocker) bac

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

ya workspace sidebar DSH Web 工作区侧栏替代插件。顶部固定展示 5 条全局最近会话,下方使用 Workspace → Session 二级菜单和面包屑导航;搜索、添加工作区、重命名、删除、Fork、归档与拖拽排序继续使用 DSH 原生 Host 能力。 运行 插件采用 bundle 形式, cordis.patch.yml 会禁用官方 ui workspace 并插入 @huanlin/dsh plugin ya workspace sidebar 。本地开发安装: 修改源码后重新运行 pnpm run build ,再重启 dsh web 并硬刷新浏览器。 开发 dsh/ 仅作为类型和行为参考,插件不会

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh sleep DSH 插件:向模型暴露一个 sleep 工具,让模型按指定毫秒数暂停执行后再返回。适合等待时间相关条件成立(服务重启、debounce 窗口、retry backoff)且没有事件型工具可用的场景。 安装 预构建策略: lib/ 入库,无 prepare 脚本, github: 安装开箱即用,无需 allowBuilds 。 配置 在 DSH GUI 设置页或 cordis.patch.yml 中配置: 字段 类型 默认值 说明 maxDurationMs number 60000 单次 sleep 上限毫秒数。超过会被 clamp 到此值,并在返回中标 clamped: true 。 defaultDurat

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh interpreters DSH 插件:暴露 run python 和 run node 两个模型可调用工具,通过 stdin 执行代码并返回 stdout/stderr/exit code。在设置页「插件配置」分区提供配置卡片,让用户设置 Python 和 Node.js 解释器的可执行文件路径,工具描述中会告知模型解释器位置。 架构 工具 : run python / run node ,通过 spawn(executable, [' ']) 执行代码,代码经 stdin 传入(无命令行长度限制) 设置持久化 :通过 ctx.settings 命名空间 interpreters 持久化到 $DSH HOME/settin

Native PluginOtherActive
Stars
2
Forks
0
Updated
today

dsh better sidebar plugin office DSH web 插件:为 better sidebar 的编辑器提供 Office 三件套文件预览( .docx / .xlsx / .pptx )。 背景 better sidebar 曾内置这三个 viewer,但 docx preview / Univer(+ SheetJS)/ pptx renderer 会把 client bundle 撑到约 23MB。本插件把它们拆成独立 bundle,better sidebar 本体不再内联 Office 渲染库(约 5.9MB 全套 → 2.2MB 压缩),需要 Office 预览的用户单独安装本插件即可。 功能

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

dsh chat width 中 / EN :DSH Web 消息宽度调节插件 —— AI 回复的消息列固定宽度、屏幕再宽也是左右留白,本插件让你拖动即可调整展示宽度。 A DSH Web plugin for adjusting the message column width: AI replies render in a fixed width centered column with empty gutters on wide screens — drag to resize. 项目概览 / Project Overview 插件介绍 / Plugin Introduction 简介 / Introduction 中 :ch

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
today

@morlay/session persistence rdb RDB(SQLite / PostgreSQL)持久会话后端( ctx.sessionPersistence ):通过 drizzle 实现 PersistenceBackend ,复用上游 PersistenceCoordinator 与契约测试套件, 支持配置选择 SQLite 或 PostgreSQL 后端。设计细节(表结构、delta 过滤、并发写、 方言差异、仓库结构)见 [docs/design.md。 安装 从 git 安装到 dsh profile(示例:web): 配置 配置写在 ${DSH HOME}/settings.yaml ,settings

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
today

turtle-ui

turtle1999

Turtle UI The very first UI of dsh in a Friday afternoon This repository contains the former packages/ui/tui implementation, its unit and terminal snapshot tests, and a dsh profile bundle patch. The TUI owns terminal presentation and input; DeepSeek Harness owns the agent, model, tools, persistence, and dsh launcher. D

UI PluginOtherActive
Stars
2
Forks
0
Updated
yesterday

dsh-sidechain

Buyi-wsgzg

dsh sidechain DSH 侧会话插件。它通过 fork 当前会话创建独立子会话,让用户在不中断主线程的情况下发起一次性问题或持续对话。 命令 用途 /btw 发起一次性侧问,适合快速确认信息 /side 创建可持续追问的侧会话 /side list 列出当前会话的直接子代理 侧会话继承主会话已经完成的回合作为参考上下文,但拥有独立的消息记录和执行过程。侧会话的提示、思考、工具调用和回答不会进入主会话的模型上下文。 功能 /btw 在后台完成单轮问答,主会话可以继续使用。 /side 创建可续聊线程,可直接在侧栏中发送后续消息。 右侧面板显示用户消息、上下文、思考、工具调用与回答。 运行中的会话实时更新,并在列表中显示活动摘

UI PluginOtherActive
Stars
2
Forks
0
Updated
yesterday

dsh-track

fakechris

dsh track · Track Bridge [English 中文 DeepSeek Harness 的嵌入式任务管理引擎 —— 把「念头、决策、任务」变成结构化、可追溯、可折叠的数据。 捕获零摩擦,决策留痕迹,任务有生命周期。数据全部在 harness 内部(session 事件 + storage KV),零外部依赖。 状态 Active · 测试 342 passing · 构建 pnpm run build · 版本 0.2.1 v0.2.1 · final 正式版适配(2026 08 12) :官方正式版(snapshots/20260812T172954Z final unwatermarked) 的词汇清洗中两处

IntegrationOtherActive
Stars
2
Forks
0
Updated
yesterday

Humanize Current Version: 1.18.0 Derived from the [GAAC (GitHub as a Context) project. A Claude Code plugin that provides iterative development with independent AI review. Build with confidence through continuous feedback loops. What is RLCR? RLCR stands for Ralph Loop with Codex Review , inspired by the official ralph

Native PluginOtherActive
Stars
2
Forks
0
Updated
yesterday

dsh-douyin

AnacondaKC

dsh douyin DSH WebUI 侧栏短视频插件: 原生播放器直接解析视频直链播放 。顶部可选择学姐、甜妹、COS、舞蹈等 21 个系列,支持自动连播、滚轮切换与精确历史回放。 原理 聚合视频源来自 api.yujn.cn 的分类接口。每次请求会 302 到随机 mp4 直链;插件通过 host resolver 读取 Location ,再交给原生 播放。历史栈保存真实直链,因此向上滚动能回到同一段视频。 安装 使用 模式一:dsh better sidebar(装了它时自动生效) 自动注册侧栏 tab「刷视频」(单实例),在侧栏 + 菜单打开。 模式二:自带浮动 dock(未装 better sidebar 时) 页面右

UI PluginOtherActive
Stars
2
Forks
0
Updated
yesterday

dsh web archive Deep Sleeping... — DeepSeek Harness (dsh) Web 模式的客户端插件。 把会话里 正文之外的所有 display (工具卡片 read / bash / web search / grep / edit 等,以及消息内的 Think 推理块 ,含运行中的调用)折叠成内联的小卡片, 无 emoji、与 Read/Think/Bash 卡片同款样式、放在它们原来的位置 : 每条消息的 think 组 + 其后紧跟的工具组合成一块 (落单的 think 组 / 工具组各自成块),工具组区域随块折叠、不留空白; 正文消息保持 文本a [折叠块] 文本b 文本c 的原始结

Native PluginOtherActive
Stars
2
Forks
0
Updated
yesterday

dsh-paseo

renat3u

dsh paseo 把 dsh(DeepSeek Harness)作为 Paseo 的 ACP provider:在 Paseo 界面里并行运行和管理多个 dsh agent,并稳定地拉起 dsh。 [English 特性 Paseo :dsh 注册为 Paseo 的 ACP provider(Agent Client Protocol over stdio JSON RPC),在 Paseo 的桌面 / Web / 手机客户端里直接选择 "DSH (DeepSeek Harness)" 创建会话。 并行 agent :每个 dsh 会话是一个独立 dsh 进程(独立会话日志、独立 workspace、独立取消路径),Paseo 的

Native PluginOtherActive
Stars
2
Forks
0
Updated
yesterday

dsh-evolve

william-jin-cmu

dsh evolve 自进化 harness 插件: agent 在 session 内随对话给自己长出/剪掉能力 。用户的表述暴露出一个缺口(反复要查的表、天天要算的换算、老要看的端点),agent 现场写一个 cordis 插件挂载给自己——新工具在 下一个 step 就可调用;不再需要时可逆卸载;重启自动恢复。 进化不限于工具。evolution 是完整的 cordis 插件:常驻 system prompt 规则、 agent/step / agent/settled 事件钩子、定时器主动唤醒 agent—— 改行为、而不只是加能力 的进化,同样一次 evolve add 完成([三条非工具实录)。 依据的机制:dsh 的工

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
yesterday

影瞳 · Shadow Vision 给纯文本 LLM 添加一双眼睛。影瞳是一个开源 MCP 视觉服务,让 AI Agent 通过 vision ocr / vision inspect / vision annotate / vision layout / vision reconstruct / vision compare 看见、理解并分析真实世界的信息,无需切换宿主文本模型。 为什么不同 MCP 原生 :适配 Codex、Claude Desktop、Cursor 及其他 MCP 客户端 可插拔后端 :Ollama、OpenAI compatible、Anthropic、Gemini 本地优先 :使用 Ollama 时图片和

UI PluginWeb UIActive
Stars
2
Forks
0
Updated
yesterday

dsh-cc-connect

whiteguo233

dsh cc connect 通过 cc connect 远程使用 dsh —— dsh(DeepSeek Harness)与 [cc connect 的双向桥接: 方向 实现 位置 IM → dsh (飞书/微信/Telegram 消息进入 dsh 会话) cc connect 的 dsh agent 适配器(Go) [ go/ dsh → IM (dsh 会话主动推送消息到飞书等) dsh 插件 @dsh external/cc connect (Cordis,两个工具) 本仓库根目录 入站 :cc connect 项目配置 type = "dsh" 后,飞书等平台的消息由 cc connect 转发到本机 dsh web 服务

Native PluginOtherActive
Stars
2
Forks
0
Updated
yesterday

dsh-trace

vibeinging

@deepseek ai/dsh trace English [中文 dsh trace stores DeepSeek Harness session telemetry in a local embedded yiTrace database. It observes records after the host's telemetry/record waterfall, projects each DSH turn into one yiTrace trace, and writes SDK native start, log, and end events through yiTrace's Node API databas

Native PluginOtherActive
Stars
2
Forks
0
Updated
yesterday

dsh-inspect

omdsh-dev

@dsh external/dsh inspect 发现问题 → 修复交付 → 质量复查 的简单闭环插件。 三个朴素工具,共享同一套"对抗式检查"机制: 工具 干什么 核心机制 checkup 找问题 对抗式检查员(各看一个角度)→ 红队攻击验证 (尝试推翻问题声明,推不翻的才保留)→ 汇总分级(严重/一般/建议) fix 修复交付 拆解 → 并行实现(每个实现员按 找根因 (沿数据流找偏离源头)→ 实施 → 重跑复现验证 (反馈闭合))→ 对抗式检查 → 修复轮收敛 → 交付报告 review 质量复查 对抗式审查员(各看一个角度)→ 汇总分级;可传 fixed issues 逐条 重跑复现确认问题真的消失 理论内核:控制论的反馈

Native PluginAgent & WorkflowActive
Stars
2
Forks
0
Updated
2d ago

sandbox-micro

omdsh-dev

@deepseek ai/dsh sandbox microsandbox English [中文 A DSH profile bundle for the fail closed microsandbox microVM capability. The root package contains the ctx.microsandbox provider and exports the model facing tools as @deepseek ai/dsh sandbox microsandbox/tool . Repository shape The single root artifact keeps Git/profi

Native PluginOtherActive
Stars
2
Forks
0
Updated
4d ago

dsh working activity — DSH 实时工作状态行插件 非官方出品。DeepSeek Harness 的实时"工作状态行"插件:模型的实时活动 —— 俏皮思考文案、真正在跑的工具、已耗时、收尾摘要 —— 在 agent 干活时展示在 Web UI 与 dsh cc 终端上。 作者:chimney([@ccch1mneyyy) 版权归作者本人所有。社区发布,非 DeepSeek 官方项目。 特性 实时状态行 :由会话事件( turn/start 、 assistant/chunk 、 tool/call 、 tool/result 、 turn/end )与 agent/status 驱动状态机(idle / wai

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh-tool-browser

MashedPotato817

dsh tool browser 给 DeepSeek Harness(DSH)的 原生浏览器自动化工具插件 ,由 Playwright 驱动。 默认直接使用本机安装的 Microsoft Edge ( channel: "msedge" ,无需下载浏览器), Edge 缺失时自动回退到 Playwright 自带的 Chromium。 能力 面向模型的只读/交互工具(全部注册进 DSH 的 ctx.tools ): 工具 作用 browser navigate 打开 URL,返回标题与最终地址 browser snapshot 返回页面可见文本(body innerText,限长) browser click 按 CSS 选择器点

Native PluginBrowser & WebActive
Stars
1
Forks
0
Updated
today

DSH Meta Orchestrator A model native meta agent plugin for [DeepSeek Harness: the underlying model acts as a meta orchestrator that synthesizes task specific workflows at runtime from the five canonical agentic workflow patterns, then coordinates tools and subagents with the harness's native primitives. What the plugin

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh effort config DeepSeek Harness(dsh)插件:在 设置页 为第三方模型配置「思考努力度」档位,写入 llm pi ai 命名空间; 档位调节复用原生模型框的 Effort 面板 (composer 模型座 / /model 命令),选择器无需重做——模型声明档位后自动出现。 演示截图 特性 设置页入口 :设置面板新增「思考努力度」页( settings.section ),只展示 已配置 的提供商,新添加的在前 右上角添加提供商 ( settings.action 按钮):候选列表已配置的在前、手写路由优先;点击未配置的内置目录路由即启用(写入空 profile,模型与协议由 pi ai 内置目

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

DeepSeek Harness Desktop [ [ [ [ [ [ A desktop shell for [DeepSeek Harness — the pluggable AI agent harness from DeepSeek. Wrap the official dsh web UI into a native feeling, always on desktop app. English [简体中文 Features Zero intrusion wrapper — spawns dsh web as a child process (bundled Node 24 + @deepseek ai/dsh ), l

UI PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

DSH Capability Inspector English [简体中文 A read only runtime diagnostics and health check plugin for [DeepSeek Harness. DSH Capability Inspector registers an inspect dsh tool that explains which capabilities are actually available to the calling agent and where a configuration or runtime problem may be occurring. It is a

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

Qiushi DSH Evidence Audit English [简体中文 Qiushi DSH Evidence Audit is an observe only DeepSeek Harness Profile Bundle. It listens to the official tools/result and session/event extension points and appends deterministic, hash chained JSONL evidence receipts. It never registers a model facing tool, changes a prompt, tran

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

DIzzy-DSH

Acidmoon

Dizzy DSH —— DSH 插件仓库 一个"克隆即装"的 DSH 插件集合,组织方式参考 [oh my pi 与 [oh my opencode: 仓库本身作为一个 DSH bundle 层安装,无需 npm 发布,重启后依然生效。 📖 开发文档:[docs/DEVELOPMENT.md —— 架构、平面规则、 双半区开发流程、关键技术机制与常见坑,所有结论均经实际验证。 安装(用户侧) ⚠️ 为什么必须列出每个插件: dsh plugin add 只把 命令中列出的包 写入 profile 的 dependencies (reconcile 也只遍历顶层 dependencies,见 plugin 9h8shc4d.js

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh eco router [DeepSeek Harness 的 token 高效模型路由飞轮 。 中文 [English 它把 OpenSquilla 的核心思想—— "同样的预算,更强的能力(same budget, more capability)" ——做成一个自改进路由循环:观测每一轮的 (任务 → 模型 → 结果) ,按任务类别蒸馏出一张带 逐模型错误计数 的路由表,持久化到 eco router.json ,并暴露一个 eco route 工具,把每个任务路由到历史上成功过的最便宜模型档位。 真实验证截图 (真实加载构建产物 lib/index.js ,以两个模型档位验证:一个 code 任务在 deepseek

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-report-html

hccccc01333

dsh report html Generate self contained, interactive HTML reports from Markdown sections, structured tables, and bar/line/pie chart data. The report is a single HTML file with embedded CSS and SVG charts — no network, CDN, or JavaScript runtime is required to open it. A DeepSeek Harness plugin bundle generated with the

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-tavily-search

zhouzhencheng07

[English 中文 dsh tavily search 面向 DeepSeek Harness (dsh) 的免费 Tavily 网页搜索工具(keyless 模式)。 注册一个工具: tavily search —— 实时网页搜索,返回标题、URL 和内容摘要。 使用 Tavily 的 keyless 访问模式( X Tavily Access Mode: keyless ), 无需 API Key、零额外成本 。 安装 本包声明了 dsh.bundle.patch ,因此会被激活为 profile 的 bundle 层(而不是仅仅装成 一个不生效的普通依赖)。安装后重启 dsh web ,模型即获得 tavily searc

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-pet

FlytoMAYDAY80

DSH 有声桌宠 悬浮在桌面上的 DeepSeek 小鲸鱼 —— 不打开 DSH 页面,也能实时感知会话状态。 独立置顶悬浮窗,跨全屏 App 可见:有会话在跑、需要你审批、任务做完了,余光即得。 DSH 桌宠是一只独立的桌面应用:当你在浏览器、IDE、文档里工作时,鲸鱼始终悬浮在桌面一角,用表情、气泡和音效告诉你—— 有会话在跑、需要你去审批、任务做完了 。把"任务状态"从需要主动查看的页面,变成余光即得的实时信号。 📦 本项目随 [DeepSeek Harness 发布而开源(原托管于 dsh external 组织仓库,现以个人账号仓库作为公开源)。欢迎使用、定制与贡献。 ✨ 核心特性 离屏状态感知 :独立置顶悬浮窗,跨全屏

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh apple mode [English · [简体中文 Xcode AI integration mode for [DeepSeek Harness ( dsh ) — an agent preset + installer that gives your DSH sessions the full Xcode AI stack: 26 Xcode MCP tools ( mcp xcode ) via Apple's official mcpbridge Xcode Intelligence–style persona (Swift first, tool assisted, explain vs change clas

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

LiuHe

wulun811

# Malong LiuHe(码龙·六合工具) LLM Native Code Operations Toolkit — Code tooling reinvented for the LLM that has no hands, no eyes, and no memory. English [简体中文 [Docs [GitHub Malong LiuHe is a toolkit built for LLMs rather than humans. It ships two components: malong/ — an MCP toolset (44 tools): symbol read/write, indexing,

IntegrationAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

sidesight

ZhuXinAI

SideSight For DeepSeek Harness SideSight supports both of DeepSeek Harness's native extension paths: a filesystem skill for the simplest installation, and a configurable plugin bundle. Neither path starts an MCP server. Install as a filesystem skill DeepSeek Harness natively discovers filesystem skills from .dsh/skills

UI PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh tui — DeepSeek Build A [grok build style terminal agent UI for [DeepSeek Harness, written in Rust (ratatui). It speaks the harness SDK JSON RPC stdio protocol directly — no Python SDK in the loop — and skins the whole thing in the exact DeepSeek Web UI palette, whale included. The whale is rasterized by scripts/gen

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh-milestone

SnowCrescenter-tech

dsh milestone DeepSeek Harness 的会话里程碑导航条 像 Git 提交图一样,一眼定位每一次提问,一键跳转到任何位置。 为什么需要它? 和 AI 聊了上百轮之后,想找回 第 17 轮那个提问 ?你只能不停滚轮往上翻,眼睛在一堆代码块、工具调用和思考过程里大海捞针。 dsh milestone 在会话右侧挂一条 圆点时间线 ——每一条提问对应一个圆点,鼠标悬停看内容,点击瞬间跳转。长对话的"导航地图"。 好用在哪? 一键定位 —— 点击任意圆点,平滑滚动到那条消息,不用再手动翻几百行。 固定间距 —— 圆点 等距排列 ,不随对话长度挤压变形,永远点得准。 蓝色渐变 —— 最新最深、最早最浅,一眼看清提问的先

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh-desktop

SnowCrescenter-tech

DeepSeek Harness 桌面版 — 原生 Windows 桌面壳(无边框窗口 / 系统托盘 / 原生通知 / 单实例 / 开机自启)| Native Windows desktop shell for DeepSeek Harness (frameless window, tray, native notifications, single-instance, auto-launch)

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh web search pro 增强型、可持久化的扩展网页搜索插件 for [DeepSeek Harness(DSH)。 一个 DSH bundle 插件 ,把多引擎网页搜索、平台搜索、持久化缓存、脚本猫式按站提取、Playwright 渲染打包成模型可直接调用的 9 个工具。灵感来自 [MediaCrawler、[Agent Reach、脚本猫/油猴 userscript、opencli 与 playwright。 安装 依赖 @deepseek ai/ 已发布到 npm( ^0.1.0 rc.6 ,与社区 dsh cc tui 一致)。 若你的 harness 是本地源码 checkout(如 0.1.0 rc.5 ),

Native PluginBrowser & WebActive
Stars
1
Forks
0
Updated
today

TapPass governance for DeepSeek Harness The authority layer for agentic AI, as a DeepSeek Harness plugin. Everything in DeepSeek Harness is a plugin. This is the one that decides what your agents are allowed to do. Guardrails and safety classifiers ask "is this output harmful?" That is a property of the model. TapPass

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-client-usage

jLeon-account

dsh client usage DSH web 客户端插件:在对话输入框下方的 dock 区显示 API 用量 —— token 用量分桶(缓存未命中输入 / 缓存命中输入 / 输出)、缓存命中率、上下文占用百分比,以及按 DeepSeek 官方定价估算的费用(支持峰谷时段自动计价)。 显示内容 输入框下方一行小字(与内置 StatsLine 并列,位于其右侧): API 用量 ↑1.23M ↓345K ≈¥0.42 点击展开面板: 输入(缓存未命中): tokens · 费用 输入(缓存命中): tokens · 费用(含命中率 %) 输出: tokens · 费用 上下文占用: % 估算费用合计 · 当前计价档位(高峰价 /

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

peanut dsh plugin DeepSeek Harness(DSH)个人插件合集——集中管理我自己维护的 DSH 相关插件、工具与皮肤。 插件清单 插件 说明 状态 [dsh launcher DSH 桌面独立窗口启动器(WebView2 壳):开机自启、单实例、真 DPI 高清、自定义图标 ✅ 可用 目录约定 每个插件占一个 顶层子目录 ,完全自包含(自带 README / LICENSE / 源码 / 脚本) 插件之间互不依赖;新增插件直接加同级目录即可 根目录只放导航与说明,不放插件代码 构建与安装 各插件目录内的 README 有独立的构建/安装说明。 许可 各插件目录下自带许可证 dsh launcher :MI

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh model modes Capability aware model modes for the DeepSeek Harness web composer. Features Keeps reasoning effort in DSH's official model selector. No level is hard coded: each exact model exposes only the efforts advertised by its adapter. Adds a Fast switch immediately before Send. Fast first applies an explicit pr

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh event auditor Harness 事件流审计面板:观察事件类型、分发模式、计数与最近事件,帮助插件作者理解 DeepSeek Harness 内部发生了什么。 状态: ✅ 已在本地 DSH 源码环境验证运行 (2026 08 14,事件计数 + GET/POST 接口 + /audit 页面均通过)。v0.2 新增 10 个 waterfall 事件观察(遵守 next() 纪律,零副作用)。 功能 监听 22 个 harness emit 事件(agent 生命周期 / 会话 / 工具 / subagent / 配置) v0.2 :监听 10 个 waterfall 事件(tools/execute、approv

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh agent arcade A small deterministic Snake game for [DeepSeek Harness. The Agent chooses a direction on every turn, while the user can watch the ASCII board, score, status, and reasoning returned by each step. The game runs entirely in memory. It does not use the network, save files, or execute shell commands. A fixe

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh chrome devtools — DeepSeek Harness × Chrome DevTools 集成 [English 中文 让 DeepSeek Harness 的 Agent 通过 [chrome devtools mcp 驱动一个真实 Chrome 浏览器:导航、点击、输入、截图、DOM 快照、控制台、网络请求、性能轨迹、Cookie。 唯一安装方式:官方 dsh plugin 一键安装 (GitHub 源,无需克隆本仓库)。 本仓库根目录就是官方 bundle 插件包( package.json 声明 dsh.bundle , cordis.patch.yml 是补丁层):MCP 服务器行由插件自带,安装后

IntegrationBrowser & WebActive
Stars
1
Forks
0
Updated
today

dsh prompt presets A local prompt preset plugin for [DeepSeek Harness. It stores reusable prompt templates, supports {{variable}} placeholders, and renders a finished prompt when the Agent supplies values. Preset data stays in the current working directory under .dsh/prompt presets/presets.json . The plugin does not se

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh task checklist A local task checklist plugin for [DeepSeek Harness. It lets an Agent create tasks, filter them by state or tag, mark work complete, and export a clean Markdown checklist. All task data stays in the current working directory under .dsh/task checklist/tasks.json . The plugin does not send task data ov

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh plugin colorscheme [English 为 DeepSeek Harness 提供配色方案(colorscheme):内置多款知名开源主题的 配色,加载后可在 设置 → 通用 → 配色方案 中一键切换,选择会持久化并 在刷新后自动恢复。 内置 8 个预设主题(Dracula、Nord、One Dark/Light、Tokyo Night、 Catppuccin Mocha、VS Code Dark/Light),许可与署名见 [ THIRD PARTY NOTICES.md 支持三种用户扩展方式(见下) 安装 本仓库已包含构建产物( client.js 与 dist/ ),克隆后可直接使用;只有修改过 源码才

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh suggest prompt Suggested next prompt for the [DeepSeek Harness: after every completed agent turn, a bounded auxiliary LLM call writes one suggested next prompt into the session log, and the web composer renders it as ghost text in the empty input — accepted with Alt / . Two packages live here: Package Role [ @deeps

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

awesome dsh plugins [ [English 简体中文 [🌐 网站 一个面向 [DeepSeek Harness(DSH)][1] 的精选插件目录。项目优先收录 可由 DSH Profile 装载 、具备可复现安装说明且源码公开的社区扩展;技能、预设与相关应用会明确区分,不把“使用 DeepSeek API”或仅贴有 dsh plugin 标签的项目误当作原生插件。 DeepSeek Harness 目前处于 Developer Preview 。官方采用 Cordis 的“Everything is a plugin”架构:Profile 组合 Bundle,外部插件通常以 package.json 的 dsh

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh web search firecrawl English [中文 A [Firecrawl backed search provider for the [DeepSeek Harness web capability seam ( ctx.web ): it makes the built in web search tool run on Firecrawl's search API instead of the shipped DeepSeek route. The plugin is a Cordis function plugin that registers a WebSearchProvider ( id: f

Native PluginBrowser & WebActive
Stars
1
Forks
0
Updated
today

task-passport

dongsheng123132

Task Passport · 任务护照 让一个任务带着“当前世界状态”在 DeepSeek Harness、Claude Code、Codex 等 AI Harness 之间接力,不搬运聊天记录。 一个项目可以有多个任务护照;一个任务护照可以经历多个 Harness 和多个会话。 现在能做什么 每个任务一个稳定短号,例如 TP 7K4M 9D2Q 。 list :只列身份与摘要,不误装载别的任务。 open :读取目标、当前状态、验证过的事实、决策理由和下一步。 checkpoint :工作完成后写回;带状态版本,过期写入直接冲突,不静默覆盖。 同一个包既是通用 CLI,也是 DeepSeek Harness 原生 bundle。

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

reqpipe —— 研发需求流水线管理工具(DeepSeek Harness 插件) 为研发团队把每个需求拆成 4 个阶段( 需求 → 方案 → 评审 → 开发 ), 每个需求一个工作目录,阶段产物有约定的目录命名与文档格式; 支持跳过 方案/评审 的轻量流程(跳过必须记录原因)。 本仓库包含两个可分发包: 目录 包 平台 安装 [ plugin/ dsh tool reqpipe npm(DeepSeek Harness 插件) dsh plugin add dsh tool reqpipe [ python cli/ reqpipe PyPI(命令行工具) pip install reqpipe 插件通过子进程调用 reqpi

UI PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-ajw

rsagacom

DS安甲网 · ds.ajw.cn 为你的 DeepSeek Harness 机器人 安装上所需功能的装甲吧 —— 每日聚合 GitHub 上 DeepSeek Harness / DSH 生态的开源项目:插件、主题皮肤、工具、Skill 与 Awesome 列表,一站式逛超市。 green) 特性 每日自动抓取 :围绕 deepseek harness 、 topic:dsh plugin 、 dsh plugin 、 deepseek skill 等关键词调用 GitHub 官方搜索 API,融合 [awesome deepseek harness 等精选列表 外文介绍自动翻译 :所有非中文项目简介自动译为简体中文(Google

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh obsidian export DeepSeek Harness (DSH) plugin that integrates with an Obsidian vault (no Obsidian app dependency — a vault is just a folder of Markdown files), offering a model facing toolset: export conversations, plus common vault operations read / search / list / tags / backlinks . Tools tool purpose obsidian ex

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh plugin miliastra toolbox DeepSeek Harness 插件:接入[千星沙箱知识库(原神千星奇域 UGC 编辑器的节点/指南/教程/FAQ,300+ 篇文档)。 这个插件是什么 可以让你在Deepseek harness对话里直接问千星沙箱的问题: 「角色实体和玩家实体有什么区别?」 「复杂造物怎么做定点位移?」 「我的碰撞触发器不触发是为什么?」 「奥黛塔的经典模式 ID 是?」 插件注册 4 个工具(模型会自动选用,不需要你指定): 工具 用途 get node info 按节点名查功能、参数、归属端(服务端/客户端/双端)与来源文档 list documents 按关键词列出文档标题(不含正

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh prime agent dsh prime agent is an RLM first control plane for DeepSeek Harness. It turns large context and intermediate results into a persistent, addressable workspace, then lets Code Mode coordinate reads, tools, subagents, and background jobs as one program. [简体中文 · [Architecture · [v0.3 roadmap · [Prime Agent l

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh firecrawl Native [Firecrawl tools for [DeepSeek Harness agents — search, scrape, crawl, map, extract, interact and more — with zero custom code , by bridging the officially shipped firecrawl mcp server through DSH's built in @deepseek ai/dsh mcp client . Follows the official extension shape: an MCP bridge is a comp

IntegrationBrowser & WebActive
Stars
1
Forks
0
Updated
today

dsh-skillport

Jesse-njx

dsh skillport Every skill you already have — Claude Code, Codex, Cursor, Gemini CLI — works in DSH. dsh skillport is a [DeepSeek Harness plugin bundle that makes DSH the next implementer of the open Agent Skills standard ( SKILL.md ). Anthropic released the spec in Dec 2025 and 30+ harnesses read it (Codex CLI, Cursor,

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-multi-cot

AprilWizard

@aprilwizard/dsh multi cot English [中文 Multi CoT gives dsh an approximation of parallel test time compute by repeatedly generating and sampling reasoning chains: samples byte identical calls explore several chains, internal voters pick the best result, and that result drives either a plan first round or the full three

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh ark quota English · [简体中文 A [DeepSeek Harness (DSH) web plugin that shows your 火山方舟 (Volcano Ark) Coding Plan subscription quota as a fixed widget in the sidebar footer — without ever leaving the DSH GUI. Host half ( lib/index.js ) proxies the console API GetCodingPlanUsage behind a same origin route ( /ark quota )

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh archive viewer DeepSeek Harness(DSH)Web GUI 的归档会话管理插件: 查看 / 恢复已归档会话 ,外加右上角 一键关闭 dsh 。 English: [README.en.md 功能 侧边栏插件栏入口「已归档会话」 (设置按钮上方):列出全部归档会话——标题、最后活跃时间、所属工作区、运行中/空白状态 查看对话 :直接读取归档会话的日志( session.history ,冷会话走持久化检查,无需激活 Agent),支持分页加载更早 下载日志 ZIP :官方 session.export 端点 恢复会话(取消归档) :一键把会话放回原工作区分组,位置原样保留 右上角「关闭 dsh」按钮

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh conversation share — DSH 对话分享截图插件 [English 中文 把 DeepSeek Harness 对话流中选中的一段,渲染成带品牌尾部的 PNG 长图分享出去。 许可证 BSD 3 Clause · [GitHub 功能 右上角 Session log 按钮左侧的分享胶囊(与 log 同款样式,点击后激活为蓝色高亮, [取消][确认] 在分享左侧展开) 两个可拖动的范围标记把手(横向标签:「从这里开始」/「到这里结束」),支持磁性吸附 吸附点 = 语义消息行 + markdown 块(p/pre/ul/li/table/标题)+ 视觉盒子(代码块/卡片)+ 内容级按钮(产物文件 chip)+

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

@bill9109/dsh webbridge DeepSeek Harness(DSH)宿主插件:让模型通过 Kimi WebBridge 驱动你的 真实浏览器 ——导航、快照、点击、填写、求值、截图、网络检查、标签页管理。 [English [中文 这是什么 dsh webbridge 是 [DeepSeek Harness(DSH) 的宿主插件。它把 Kimi WebBridge 的本地守护进程桥接成 11 个 webbridge 模型工具,让模型可以操作 用户自己的浏览器 ——登录态、Cookie、已打开的 标签页全保留——而不是无头浏览器。浏览器状态留在用户浏览器里,绝不进入 模型请求。 它 不包含 任何浏览器驱动代码:真

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh drag and drop — 文件拖拽路径插件 [English 中文 DeepSeek Harness Web UI 插件:把文件拖入页面任意位置,将文件原始绝对路径插入当前会话输入框。 插件不会上传、移动或复制文件,不会破坏文件所在目录与相邻依赖文件之间的关系。 许可证 BSD 3 Clause · [GitHub 实现能力 将文件拖入 Web UI 任意位置即可插入原始绝对路径 拖拽过程中显示全页面压暗和模糊提示 支持文件和文件夹,也支持一次拖入多个项目,每个路径占一行 支持 macOS、Linux 和 Windows 原生路径 支持 POSIX 路径、Windows 盘符路径和 UNC 网络路径 不上传、不移动、不

UI PluginMemory & ContextActive
Stars
1
Forks
0
Updated
today

agent-fix

qingzhuo-cn

agent fix Universal repair skill &amp; CLI for ALL AI coding agents — fix Claude Code, Codex, OpenCode, Hermes, Kimi Code, Pi, ZCode, Cursor, Gemini CLI, Aider, Qwen Code and any npm distributed CLI with one skill, in the terminal, from a program, or from inside another agent. English / [简体中文 [ [ [ [ Table of Contents

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-balance

TwotwoPiggy

dsh balance DeepSeek 余额实时显示插件: 在 dsh Web UI 输入框 下方、命中率/输入输出 token 统计条所在的同一行 , 实时显示: 账户余额 (如 余额 ¥99.47 ) 本次对话的估算消耗 (如 本会话约 ¥0.0007 , 按模型、按 DeepSeek 官方单价估算) ? 图标 : 悬停显示当前配置的 DeepSeek 定价策略(按模型: 缓存命中/未命中/输出, 每 1M token), 点击打开官方定价页 悬停读数可查看详情: 余额构成(赠送/充值)、余额是否可用、更新时间、刷新间隔、按模型分解的会话消耗与 token 明细。 架构 性能 : 浏览器只读本地缓存(每 clientPollI

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-routines

Jesse-njx

dsh routines Scheduled agents for DSH — run a prompt on a cron, get the digest where you already are. dsh routines is a plugin bundle for [DeepSeek Harness. A routine is a named prompt + schedule + delivery stored as a plain YAML file — human diffable, git committable. The scheduler launches each due run through the he

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-cowork

Jesse-njx

DSH Cowork READ + WRITE for office documents and Jupyter notebooks inside [DeepSeek Harness — and anywhere else your agent runs. DSH Cowork adds first class document handling to coding agents: Format Read Write (v1) xlsx spreadsheets ✅ bounded, cell addressed windows ✅ create + edit by cell ref ipynb notebooks ✅ cells

IntegrationIntegrationsActive
Stars
1
Forks
0
Updated
today

dsh chatnode wechat Chat with, monitor, and approve your DSH agents from WeChat. A [DeepSeek Harness bundle that connects a DSH profile to a WeChat personal account over Tencent's unofficial iLink bot gateway ( ilinkai.weixin.qq.com ) — the same mechanism hermes agent and OpenClaw use. Text messages go both ways, sessi

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh usage cost DeepSeek Harness 插件:按会话逐轮 token 用量实时计算 DeepSeek API 成本,8/17 起自动切换峰谷计价。 服务端投影 usageTimeline (逐轮 token 桶 + 完成时间戳)+ 客户端四段成本读数。 安装 装完 重启 web 并刷新页面,对话底部(统计行下方)即出现成本行。 官方 bundle 形态( dsh.bundle.patch + dsh.client ),构建产物已入库,git 源安装无需构建。 能力面 能力 说明 投影 usageTimeline 服务端 session projection:逐条 assistant/message 的 tok

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

Deepseek Harness Desktop 中文 · [English 基于 [DeepSeek Harness 官方 Web UI 的 Electron 桌面壳。 不重做聊天界面:Electron 只负责窗口、托盘、工作区、API Key 和启动编排,对话、工具调用、审批还是官方 dsh web 。对第三方思考强度等做了一点点优化。深度 GUI 爱好者,欢迎各种需求、建议和 PR。 微信群 扫码进群,聊用法、踩坑和需求。 特性 无边框窗口 + 自绘标题栏 :可以拖动、双击最大化,最小化 / 最大化 / 关闭按钮齐全,标题栏背景跟随主题 自动启动 Harness :启动时检测 127.0.0.1:3080 端口——杀掉上次残留

UI PluginOtherActive
Stars
1
Forks
0
Updated
today

DeepSeek Harness 桌面版 (Desktop) ⚠️ 社区项目,非官方出品 :本项目是第三方社区开发的桌面外壳, 与 DeepSeek 公司无隶属关系。DeepSeek Harness 本体、 @deepseek ai/ 软件包 及官方前端版权归 [deepseek ai 及其贡献者所有, 详见其 [MIT 许可。 将 [DeepSeek Harness 官方网页版 一比一 复刻为 Windows 桌面应用。 UI 与网页版 像素级一致 :桌面版直接加载官方 dsh web 服务器与官方前端 ( @deepseek ai/dsh + @deepseek ai/dsh web frontend 构建产物),未对界面做任何

UI PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-nocturne-memory

RealAlexandreAI

dsh nocturne memory Connects DeepSeek Harness to Nocturne Memory : session start boot protocol plus memory read / search / create / update, backed by your own Nocturne MCP server. Port of [pi nocturne memory — same protocol, same tool names. [English · [中文 Tools tool what it does nocturne boot load at session start: co

Native PluginMemory & ContextActive
Stars
1
Forks
0
Updated
today

dsh deeptutor English [简体中文 DeepTutor bridge bundle for DeepSeek Harness (dsh) , migrated from the pi coding agent extension ( TecFancy/pi extensions , extensions/deeptutor + skills/deeptutor ). Registers three model facing tools that drive the [HKUDS/DeepTutor tutoring service: Tool Purpose deeptutor run Run a learnin

IntegrationAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-all-search

RealAlexandreAI

dsh all search Adds an AnySearch web search provider to DeepSeek Harness, registered into ctx.web . AnySearch is a single MCP gateway that aggregates exa / tavily / firecrawl / context7 behind one API key . Port of [pi all search. [English · [中文 Why dsh ships Exa / Perplexity / DeepSeek search. This plugin adds AnySear

Native PluginMemory & ContextActive
Stars
1
Forks
0
Updated
today

dsh-atuin

RealAlexandreAI

dsh atuin Record every prompt you type into DeepSeek Harness into your atuin shell history — searchable with atuin search and your shell integration (Ctrl R). Port of [pi atuin. dsh has no terminal UI; this is its atuin bridge. [English · [中文 How it works The plugin listens to session/event → user/message and runs: Onl

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh cloudflare browser run A DeepSeek Harness plugin that gives the agent real browser access : headless Chrome on Cloudflare's network, so JS rendered pages, screenshots, and PDFs all just work. Port of [pi cloudflare browser run, built to the dsh (Cordis) plugin spec. [English · [中文 Why The built in web fetch is a pl

Native PluginBrowser & WebActive
Stars
1
Forks
0
Updated
today

dsh pixel whale adds a compact, animated point cloud whale immediately before the Deep diving... status in DeepSeek Harness Web. It appears with a running turn, follows the status across UI remounts, and leaves when the turn ends. See it in DSH Web This screenshot is rendered from the production browser bundle. In moti

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

intent-flow

TheChengXi

IntentFlow Comment Driven — 注释驱动开发 这只是一套本地的个人设计思路。读一读本 README 也好,参考别人的方案也好,实际本仓库的代码内容没有必要一定要读。内容只是讲解设计思路,不必照抄——毕竟并没有科学验证过这套思路是永久可行的,顺便说一下这个README也是ai写的,我自己也没怎么看,嗯,这句话也是,再顺便说一下其实我叫这个iflow框架的原因也是ai写的。本仓库的 CLI 基本没卵用,项目内容也管理得混乱。 IntentFlow 是一套以 @intent 注释 为核心契约的 AI 辅助开发工作流框架,提供 CLI 和 MCP Server 两种适配形态(VS Code 与 Pi 扩展形态已移除)

IntegrationDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

dsh-memory

Jesse-njx

dsh memory Cited memory over DSH's lossless session log. Distilled facts that can always escalate back to the exact original context. dsh memory is a DeepSeek Harness bundle. When a session ends, a background distillation pass extracts durable facts — user preferences, project decisions, environment quirks, corrections

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

Content to Editable PPT Skill content to editable ppt skill 的目标是把主题、文档或大纲转换为多页、可编辑的 PowerPoint 演示文稿。 当前状态 本仓库已完成 P0 Baseline Freeze、P0.5 Runtime Hardening、P1 Host Content Planning、P2 Markdown Wireframe 和 P3.1 Tabler first Asset Resolution。P3.2 Visual Design Brief 已 Ready;尚未完成正式页面视觉设计或多页 PPT 生成。 当前可执行流程为“材料 → 待确认大纲 → 冻结

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-usage-meter

cute-baobao

dsh usage meter DeepSeek Harness 用量统计插件:自动记录每次模型调用的 token 用量,按「模型 × 天」聚合,在 Web GUI 设置页展示。 [🌐 English · 中文 功能 记录每次模型调用的 输入 / 输出 / 缓存命中 / 缓存写入 ,按模型 × 天聚合 设置页「用量统计」展示累计与每日明细(调用次数、计费合计等) 数据持久化到 $DSH HOME/usage meter/usage.jsonl 中英双语,跟随 Web GUI 语言设置 安装 与官方 npx @deepseek ai/dsh web 同源的安装方式;如果你是用源码跑 dsh( pnpm dsh web ),把开头的

UI PluginDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

dsh search mcp 用 搜索类 MCP 服务器 完全替代 DeepSeek Harness(dsh)内置搜索的独立插件。 模型侧 web search 工具 保留原名、原展示 ,但执行全部走你配置的搜索 MCP 服务器(Tavily / Brave / Exa / Perplexity / DuckDuckGo / 任意自定义 MCP)。 插件启用期间 内置 DeepSeek 搜索 provider 不可用 ( web search deepseek 行被禁用, web.searchProvider 切到 search mcp );卸载插件即完全还原。 所有服务器配置(类型、端点/命令、API key 或 key 环境变量

UI PluginIntegrationsActive
Stars
1
Forks
0
Updated
today

falsify-dsh

shi275773124

falsify dsh English [中文 falsify dsh is a [DeepSeek Harness plugin for the public [Falsify CLI. Official site: [https://falsify.site/ It uses an architecture where the CLI is the adjudicator . The plugin only supplies paths, runs python m falsify , and returns a receipt. Agents do not choose the verdict. Looks green isn

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh openclaw acp [简体中文 A native [DeepSeek Harness bundle that exposes a Harness profile to [OpenClaw through the official Agent Client Protocol (ACP) transport. The integration deliberately has three owners: 1. DeepSeek Harness owns the agent, model, tools, workspace sandbox, and session log. 2. OpenClaw ACPX owns ACP

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-model-selector

bitterSmilezzz

dsh model selector English [中文 A [DeepSeek Harness web plugin that enhances the conversation model picker (the model seat in the composer tool row). When you have many models, the stock picker lists every provider group as one long, uncollapsible, unsearchable list. This plugin adds: Provider group collapse — each prov

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh llm fallbacks [English [中文 [ Automatic provider/model fallback chains for dsh (DeepSeek Harness): when an agent's LLM requests keep failing — retries exhausted, auth errors, quota exceeded, rate limiting (429) — the plugin switches provider/model along the fallback chain for the current role, and the current step/t

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-ui-spec

yumimanji

dsh ui spec A [DeepSeek Harness plugin that turns UI screenshots / mockups / reference images into structured, implementation grade web frontend specs. It merges two complementary layers into one spec (JSON + Markdown): 1. Deterministic geometry (always on, sharp based, no Python needed) — exact dimensions, dominant co

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

DeepSeek Harness Plugin from Scratch 一套从真实代码审计中提炼的 DeepSeek Harness 插件开发范式,以及一个可以安装、运行和逐步阅读的 TypeScript 插件。 这个仓库回答的不是“ apply() 怎么写”,而是一个插件如何在真实 Harness 中做到:依赖正确、配置可验证、注册可撤销、服务可替换、模型可见内容可回放、测试覆盖真实装配路径。 非官方社区教程。审计基线是 [ deepseek ai/deepseek harness@47f9438 ,日期为 2026 08 13;示例依赖公开包 0.1.0 rc.6 。Harness 尚处于预发布阶段,请先看[兼容性说明。 先得

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

dsh claude marketplace Claude Code compatibility layer for [DeepSeek Harness: load Claude Code skills, commands and agents — from a project's .claude directory or from Claude Code marketplaces — as native dsh skills. This is the ecosystem bridge: install any Claude Code plugin once and its components become callable ds

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-browser

ben7am1n

dsh browser Browser automation for [DeepSeek Harness: a Playwright powered browser tool family so the agent can drive real web pages — fill forms, click through flows, scrape SPA content, and take screenshots it can then view with read image . Install The plugin depends on playwright core (bundled with the package) and

Native PluginBrowser & WebActive
Stars
1
Forks
0
Updated
today

dsh deepseek usage DeepSeek usage monitor for [DeepSeek Harness: account balance query and live token usage summary as model callable tools. Install Requires a DeepSeek API key available as DEEPSEEK API KEY (env or credential). Tools deepseek balance Queries GET https://api.deepseek.com/user/balance and returns availab

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

dsh reasoning translator English [中文 A [DeepSeek Harness plugin that makes the model write its visible reasoning (chain of thought) in your language. How it works The plugin contributes one system prompt section instructing the model to think in the configured language. The model reasons natively in that language — no

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-tool-vision

Scorp1o117

dsh tool vision External vision model for [DeepSeek Harness. DeepSeek's own models are text only, and dsh llm has no multimodal content block yet. This plugin bridges the gap in two ways: 1. inspect image tool — sends an image (local file, or http(s) URL) to any OpenAI compatible /chat/completions endpoint that support

Native PluginVision & MediaActive
Stars
1
Forks
0
Updated
today

DeepSeek Harness Lark Bridge English [中文 [ [ [ Turn Lark/Feishu into a secure remote control surface for [DeepSeek Harness—not merely a notification channel. The Bridge maps Harness Projects and Sessions onto Lark chats and topics, streams execution into native interactive cards, and sends text, files, images, commands

IntegrationAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh context lens Request Context Profiler for DeepSeek Harness — see what changed between model requests, and how cache reuse changed with it. What it is dsh context lens is a DeepSeek Harness plugin (server unit + client view) that answers one question continuously: "what did the harness send the model this time, and

Native PluginMemory & ContextActive
Stars
1
Forks
0
Updated
today

dsh plugin pixluna 让 DSH 自己看涩图! 将 [PixLuna 的图片获取能力移植为 DeepSeek Harness(DSH)Cordis 插件。插件不再注册聊天命令,而是注册模型可调用的工具;原命令选项均转换为具名工具参数。 工具映射 原 PixLuna command DSH tool 参数 pixluna pixluna get number , source , tag , r18 pixluna.get.pixiv pixluna get pixiv pid , pages , all pixluna.source pixluna sources 无 开发 安装到 DSH profile 开发目录可

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh plugin marketplace A plugin marketplace inside the DeepSeek Harness Web UI: browse [github.com/topics/dsh plugin right from the settings page — no terminal needed. Search the topic by keyword, sort by stars or last update Plugin cards with description, stars, language, and update date Detail panel : GitHub README s

UI PluginDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

Planned repeatable agent and plugin regression evaluation for DeepSeek Harness

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

模型配置同步 (Model Config Sync) 一个 [DeepSeek Harness (DSH) 可安装插件包(bundle) :把 pi ai 已安装目录(预设)中某个模型的 上下文、输出上限与推理档位 配置,一键应用到已配置的自定义提供商上;也可以不选预设,作为 高级模型配置器 手动填写模型条目并写入。 背景 DSH 默认 LLM 提供商链路基于 @deepseek ai/dsh llm pi ai ,底层是 @earendil works/pi ai 的 安装目录 catalog (内置各提供商的模型、上下文、推理能力数据)。 问题: 新模型发布而目录未更新时,原生「自定义提供商」卡片无法给出预设模型的 contex

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

codex plugin dsh English [中文 Use the locally installed Codex CLI as a first class model provider in DeepSeek Harness. The plugin starts codex app server stdio , discovers the models available to the signed in Codex account, and adds them to the existing per session model selector under Codex App Server (local) . It doe

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh balance display English [简体中文 dsh balance display is an installable DeepSeek Harness bundle that shows the current DeepSeek API account balance in a collapsible shell.overlay panel. The Host resolves DEEPSEEK API KEY through the Harness credentials service for every refresh and calls the official GET https://api.de

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

ai sdk provider dsh [AI SDK provider that drives a [DeepSeek Harness ( dsh ) runtime as a language model. dsh is a full agent harness (agent loop, tools, skills, MCP, sessions) from DeepSeek AI. This provider wraps a dsh runtime subprocess behind the AI SDK LanguageModel interface, so you can drive a harness agent from

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh opencode usage DeepSeek Harness( dsh web )持久化插件:在聊天窗口顶部标题行显示 opencode.ai 额度用量进度 (5 小时 / 本周 / 本月),毛玻璃详情面板,实时重置倒计时,支持按模型渠道(Provider)过滤显示。 功能 标题行进度组件 :三个迷你进度条 + 百分比( 5h / 7d / 30d ),颜色随用量变化( 85% 红),跟随主题配色 输入框同心圆 (可选,默认开启):在输入框工具行右侧(模型名左侧)显示三层同心圆——最内层月、中间层周、最外层 5 小时额度,最大圈与上下文圈等大(14px);圆环按真实百分比绘制(0% 不画弧、100% 无端帽凸起、低百分比保

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

Pawin Brain · DeepSeek Harness A brain inspired agent runtime. Remember · self correct · learn — v0.1 starts with memory, the foundation of both. Quick start · How it works · Security · Configuration · Development [!NOTE] This is an independent community plugin by the Pawin project — it is not an official DeepSeek prod

UI PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh webhook bridge Generic webhook receiver for DeepSeek Harness — POST to a local endpoint and wake a dsh agent. CI, monitoring, or any HTTP capable service can feed messages to a harness agent over plain HTTP. Zero runtime dependencies beyond the official schema library ( node:http only). Overview dsh webhook bridge

IntegrationOtherActive
Stars
1
Forks
0
Updated
today

dsh review skills Engineering discipline skill pack for DeepSeek Harness — five battle tested procedures delivered as a bundled skill provider: code review, simplification, plan then execute, test first, and conflict resolution. Overview dsh review skills packages the discipline that senior engineers apply by habit int

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-ssh

UynajGI

dsh ssh English [中文 SSH remote execution plugin for [DeepSeek Harness. Moves Bash, file tools, PTY terminals, and LSP onto a remote host over a single SSH connection — with multi hop ProxyJump chains, SFTP upload/download, and full auth coverage. Built on [ssh2. First (and as of 2026 08, only) SSH remote development pl

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

dsh security scan Secret & dangerous pattern scanner for DeepSeek Harness — one security scan tool that walks your files and reports leaked API keys, tokens, private keys, and credential bearing connection strings. Zero runtime dependencies (pure Node built ins). Overview dsh security scan gives the harness a model fac

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh lens lite Post edit diagnostics for [DeepSeek Harness. After a file mutating tool succeeds, this plugin runs the checkers you configured for that file's extension and attaches their output to the same tool result as model visible context. The next model request therefore already carries the type errors or lint find

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh mcp proxy Context cheap MCP access for [DeepSeek Harness. The shipped dsh mcp client registers every tool of every configured server on ctx.tools , so a handful of MCP servers puts hundreds of JSON schemas into the system prompt of every request — whether or not the model ever calls one. This plugin registers exact

IntegrationMemory & ContextActive
Stars
1
Forks
0
Updated
today

dsh-memory

ben7am1n

dsh memory Durable cross session memory for [DeepSeek Harness. The harness ships no memory plugin. Its extension cookbook names the mechanism — a prompt section plus tools — but nothing implements it, so every session starts blank. This package fills that gap with one local SQLite file: no embedding service, no API key

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-miku-skin

stushansusu

dsh client ui skin miku · 初音未来主题皮肤 为 DeepSeek Harness(DSH)Web GUI 打造的初音未来(Hatsune Miku)主题皮肤。 配色 :蓝紫洋红渐变(#2e9bff → #9b5dff → #ff4da6)贯穿标题栏与按钮 毛玻璃 :半透明面板、侧边栏、输入框、设置弹窗,背景透出 自定义背景图 :内置示例背景,可替换为你自己的初音图片 亮/暗双主题 :亮色为蓝粉晴空,暗色为霓虹蓝紫夜 电子歌姬元素 :顶部 01 编号徽标、音符图标、状态栏音乐波形 · 特性 纯呈现层:不注入服务、不发事件、不触模型请求 apply() 只写自己会收回的东西,disposer 完整回收(body

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh-desktop-window

fengzhiyushui

dsh desktop window [中文 English DSH desktop window plugin: opens the DeepSeek Harness Web UI in a standalone app window (Edge/Chrome app mode) — double click to launch, auto popup, no address bar, fully isolated from your everyday browser. Features Auto open : once dsh web boots and the server is ready, a standalone app

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh plugin rag Local knowledge base RAG for DeepSeek Harness. What it does Indexes project files (markdown, code, configs) and provides keyword search to find relevant context. No external APIs or embedding models needed pure local TF IDF search. Install CLI What gets indexed Markdown (.md, .txt) Code (.ts, .js, .py, .

Native PluginMemory & ContextActive
Stars
1
Forks
0
Updated
today

dsh-reloader

lin-cheng-lab

🔄 dsh reloader DSH 一键重启工具 —— 安装/更新插件后说一句"帮我 reload",自动重启 web 界面,新插件立即生效,不用再手动 Ctrl+C 。 为什么需要它 DSH 的 profile bundle 插件(如 dsh plugin profile web add ... )装好后,需要 重启 web 进程 才生效。手动重启很麻烦: 本插件把这一步变成一条命令:调用 dsh reload 工具,6 秒后进程自动重启,页面刷新即恢复。 安装 重启 profile 后生效(reload 工具的第一次使用需要一次手动重启,之后就全自动了)。 使用 安装/更新插件后,向 DSH 说一句: 帮我 reload 一

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh plugin agent dashboard Multi agent dashboard skill for DeepSeek Harness. What it does Teaches the agent how to generate structured status reports: Agent status tracking (running/done/blocked) Task dependency visualization Progress indicators Time tracking Install Usage "What are the agents working on?" "Show me the

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh plugin context compressor Context compression skill for DeepSeek Harness. What it does Teaches the agent how to compress long conversations: Keep decisions, errors, file paths, user preferences Drop repeated info, failed attempts, verbose output Structured summary format for easy recall Install Usage "Summarize wha

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-tdai-memory

Scorp1o117

dsh tdai memory 把 TencentDB Agent Memory (腾讯云开源的四层记忆系统,原为 OpenClaw 插件)移植进 DeepSeek Harness。 能力 L0 对话捕获 :每轮对话(turn 结束、请求边界)自动写入原始对话(JSONL + SQLite + FTS + 向量) L1 结构化记忆 :后台管线用 LLM 从对话中提取事实/偏好/事件(persona / episodic / instruction),写入 records/ + SQLite + FTS + 向量 L2 场景 / L3 画像 :场景块与用户画像生成(管线自动调度) 自动召回注入 :每次组装提示词时,按当前用户消息检索相

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-soul-md

Scorp1o117

dsh soul md Soul.md style persona injection for [DeepSeek Harness. Load a markdown persona card (soul.md) and render it as the soul:persona system prompt section (order 0), so your agent keeps roleplaying while it works. Edits to the file hot reload — save and the next assembled prompt uses the new persona. Registered

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh credentials keychain English [简体中文 An OS backed credential provider bundle for [DeepSeek Harness. Status: design and implementation planning. This repository does not yet contain an installable plugin. Goal Replace the default file backed credentials row with a provider that keeps writable secrets in an operating s

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

DSH-Wiki

detpecca

LLM Wiki(论文实现) 对论文 《Retrieval as Reasoning: Self Evolving Agent Native Retrieval via LLM Wiki》 (arXiv:2605.25480)的独立实现:把文档 编译 成带双向链接的结构化 Wiki,查询时由 Agent 组合 wiki search / wiki read 进行遍历推理,并通过 Error Book 实现持久的自我纠错。 安装 唯一运行时依赖是 pyyaml (LLM 调用走标准库 urllib)。 配置 LLM OpenAI 兼容接口均可,环境变量三选一配置: 本地模型(Ollama 等): LLM WIKI BASE URL=h

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh plugin auto docs Auto documentation generation skill for DeepSeek Harness. What it does Teaches the agent how to generate documentation: README files from project structure API docs from code signatures Changelogs from git history Inline JSDoc comments Install Usage "Write a README for this project" "Generate API d

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh plugin code review Structured code review skill for DeepSeek Harness. What it does Teaches the agent a systematic code review process: Correctness: logic errors, edge cases, error handling Security: input validation, secrets, injection Performance: unnecessary loops, N+1, blocking ops Style: naming, complexity, dea

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-telegram

ben7am1n

dsh telegram Telegram runtime adapter for DeepSeek Harness — talk to your dsh agents from Telegram. Every allowed chat maps to one agent session; messages flow in via followup() , committed assistant text streams back to the chat. Zero runtime dependencies (plain HTTP over Node's built in fetch ). Overview dsh telegram

IntegrationIntegrationsActive
Stars
1
Forks
0
Updated
today

dsh tool github 为 [DeepSeek Harness( dsh )提供 GitHub 能力的 Cordis 工具插件。Agent 可以通过自然语言查询仓库、搜索代码、查看 issue、创建 draft PR。 基于官方「一切皆插件」架构,通过 ctx.tools.register(defineTool(...)) 注册模型可见工具,完全遵循官方 [adding a tool 契约。 安装 需要 @deepseek ai/cordis (^4.0.1)与 @deepseek ai/dsh tools (^0.1.0 rc.6)作为 peer 依赖,由宿主 dsh 运行时提供。 配置 在 dsh 的组合配置( cord

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

DeepSeek Harness Desktop 把 DeepSeek Harness Web UI 带到原生 Windows 桌面。 [ [ [ [ DeepSeek Harness Desktop 是一个轻量的 Windows 桌面封装。应用启动时会在本机回环地址上运行随包提供的 dsh web ,等待服务就绪后再用安全隔离的 Electron 窗口加载它。无需每次手动打开终端和浏览器,同时继续使用本机已有的 DSH profile、会话、凭据和设置。 [!NOTE] 这是社区项目,并非 DeepSeek 官方发行版。核心能力来自 [DeepSeek Harness。 功能特性 双击启动:自动运行 dsh profile web

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-skill-manager

bitterSmilezzz

dsh skill manager English [中文 A [DeepSeek Harness plugin that lets you manage your own skills — the /.dsh/skills directory the harness already discovers — straight from the chat, through slash commands and a model facing tool. DeepSeek Harness ships the full skill capability (the dsh skill registry, the dsh skill files

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

spike faye lei dsh skills DeepSeek Harness (DSH) 技能合集 — 从社区收集整理的 1300+ 技能 + 94 个 agent ,按类别分目录整理。 A curated collection of 1300+ skills and 94 agents for [DeepSeek Harness, organized by category. 目录结构 / Structure 注:DSH 技能发现只支持一层深度( / /SKILL.md ),所以分目录后需先 flatten 再安装。 安装 / Install 用 flatten.sh 把分目录技能铺平到 /.dsh/skills/ : 或

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-workbench

echo-escape

DeepSeek Harness Workbench English [中文 dsh workbench is a personal monorepo workspace for managing plugins, skills, and tools for [DeepSeek Harness ( dsh ). Structure Plugins Catalog Plugin Name Path Description : : : cost governor [ plugins/cost governor Real time token audit, monetary cost estimation, dynamic model r

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

vision plugin [中文 [English 中文 一个用于 [DeepSeek Harness 的 scratch 插件:让纯文本的 DeepSeek 主模型通过 视觉子模型 阅读图片。代理调用 vision read 工具,插件把图片和问题转发给配置好的视觉 API,再把视觉模型的回答以文本形式返回。 实现遵循 [你的第一个插件 指南:一个 Cordis 函数插件,通过 ctx.tools.register 注册一个工具。 本仓库是插件源码: @deepseek ai/ 依赖通过 deepseek harness 仓库的 tsconfig paths 解析,因此使用时需要把本目录放进 deepseek harness 检

Native PluginVision & MediaActive
Stars
1
Forks
0
Updated
today

dsh-launcher

SnowCrescenter-tech

dsh launcher A portable Windows launcher for DeepSeek Harness. Double click to start, no Node.js, no pnpm, no command line. What is this? DeepSeek Harness is DeepSeek's official agent framework. The official build is still a developer preview: to install it yourself you need Node 22.19+ or 24, pnpm, and a pile of comma

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

DSH Translator 把 DeepSeek Harness 变成一款真正顺手的 AI 翻译软件。 [ [ [ [English · [安装 · [功能 · [架构 DSH Translator 是一个原生 [DeepSeek Harness 插件。它不再只是给聊天框加一段“翻译提示词”,而是直接提供双栏翻译工作台:选择语言、粘贴原文、观看译文流式生成,再复制、朗读、下载或放进历史记录。 它不绑定额外的翻译 API。翻译由你在 dsh 中选择的模型完成,继续沿用现有模型、凭据、会话和流式传输。 当前版本面向 dsh 0.1.0 rc.6 Web profile。 功能 原生双栏编辑器和响应式移动端布局 自动识别源语言,内置 1

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh task progress notifier [English [中文 English A DeepSeek Harness plugin that tracks the agent's todo write task list and pops a native desktop reminder in the bottom right corner whenever a task completes. What it does Listens to the durable todo/write session event and keeps the latest whole list snapshot per sessio

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-live-stats

Proton1917

DSH Live Stats External plugin for DSH Web. It keeps the built in session status row, updates its input, output, and unabridged total token counts while a response streams, and adds a second row for generation throughput: marks a value that still includes the current request's input estimate. Streamed DeepSeek output i

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

governed workflow for dsh Independent community plugin for DeepSeek Harness. Not affiliated with or endorsed by DeepSeek. Policy enforced, evidence first governed workflows for DeepSeek Harness agents.

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-plugin-doctor

lin-cheng-lab

🩺 dsh plugin doctor DSH 插件体检工具 —— 安装任何 DSH 插件之前,先体检再装,防止 rc 版本不匹配导致的启动崩溃。 为什么需要它 DSH 插件生态发展很快,很多插件还在快速迭代( rc 版本阶段)。插件声明的 peerDependencies (如 @deepseek ai/dsh tools@^0.0.1 )与你本机的 DSH 版本 (如 0.1.0 rc.6 )不匹配时,装进去轻则工具不工作,重则 web 界面直接起不来 。 本插件把"装之前先检查"变成一条命令,输出一份体检报告: 检查项 说明 🏥 本地环境 读取本机 DSH / cordis / dsh tools / dsh workfl

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh session index DeepSeek Harness 的 会话全文索引插件 (组合包 / dsh.bundle )。 监听 session/event 事件流,把每一段会话里的 用户消息、助手回复、工具调用/结果、会话标题 抽取成可检索文档,构建跨会话倒排索引,并通过 session search / session index stats 两个工具暴露给模型 —— 让 agent 能"回忆"之前任何一次对话里说过什么、做过什么。 功能 能力 说明 实时增量 每个 session/event 追加立即入索引(按 sessionId#seq 幂等去重) 历史回填 启动时先索引内存活动会话,再按水位线用 ctx.sess

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

ex-setting

omdsh-dev

@deepseek ai/dsh ex setting English [中文 The automatic DSH Web settings bundle. It combines the host side configuration crawler with its browser settings navigation in one external package: the host enumerates registered settings namespaces and schema bearing composition rows, while the client projects them into first l

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh vision LMstudio Local LM Studio vision recognition plugin for DSH (DeepSeek Harness) Web GUI — recognize, describe, and OCR local images or clipboard screenshots with a local vision model. All inference happens on your own machine; images never leave it. 本插件为 DSH(DeepSeek Harness)Web GUI 提供本地 LM Studio 视觉识别能力:连接 [L

Native PluginVision & MediaActive
Stars
1
Forks
0
Updated
today

dsh plugin meta memory Structured long term memory system for DeepSeek Harness. What it does Teaches the agent how to organize memories using a structured system: Units : Work categories named verb modifier noun.unit Records : Each memory has a brief (quick scan) and full (detailed) version Index : Self maintained glob

Native PluginMemory & ContextActive
Stars
1
Forks
0
Updated
today

jumpserver-dsh

jumpserver-east

dsh jumpserver [DeepSeek Harness 插件:让 agent 通过 [JumpServer 管理资产,并 经 KoKo 堡垒 在资产上执行命令 / 读写文件。流量不直连资产 IP,命令过滤、ACL、会话审计仍然生效。 本版本只支持 SSH / SFTP 。RDP、数据库等协议不在范围内。 兼容版本 插件调用 JumpServer Core REST API v1 (Access Key 签名、用户资产授权、connection token、 client url 、主机资产 CRUD)。Core 与 KoKo 须为 同一发行版本 。 产品 支持的版本 JumpServer v3.10 LTS (v3.10.

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh codex import DeepSeek Harness 的 Codex 配置兼容性扫描器。v0.1 只提供只读盘点,不执行迁移。 能做什么 发现 Codex 用户级和项目级 config.toml 、 hooks.json 、独立 Skills 与 AGENTS.md 指令层。 将结果分类为 READY 、 DISCOVERED 、 NEEDS REVIEW 、 SKIPPED UNSUPPORTED 、 UNSUPPORTED 。 识别当前 DSH hooks codex 桥接可运行的五类同步 command hooks。 只返回类别、状态、数量和通用原因;不返回配置值、命令正文、Skill 正文或绝对路径。 明确边界

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh web background DeepSeek Harness Web UI 背景自定义插件。安装后,设置面板(左下角齿轮)中会出现「背景 / Background」页面,可自定义 Web 界面背景并持久化到 $DSH HOME/settings.yaml 。 功能 纯色 :为浅色 / 深色模式分别指定背景色(附预设色卡)。 渐变 :分别设置浅色 / 深色模式的起止颜色和角度(附预设渐变)。 图片 :http(s) 链接或 data URL,支持本地图片导入(≤1 MB)、铺放方式(覆盖 / 包含 / 平铺)、暗化程度(0–80% 遮罩提升文字可读性)以及加载兜底色。 浅色 / 深色独立取值 :通过主题系统的 token 覆

UI PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh plugins raincode Make raincode the model layer of DeepSeek Harness (dsh) : a cheap model pool with StablePrefix prompt caching, retries, and failover, driven by a local OpenAI compatible gateway. Inside dsh you can pick any model from your raincode pool and browse the raincode skill library with /skills . The plugi

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh archive manager A minimal out of tree DeepSeek Harness Web Cordis plugin that permanently deletes the on disk session directory of an archived session from the sidebar. It does not modify the DSH core installation or any profile configuration. The only durable effect on $DSH HOME is the intended one: after the user

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-tool-policy

Drifter-yh

dsh tool policy Declarative, fail closed governance for model requested tools in [DeepSeek Harness. Community plugin. Not affiliated with or maintained by DeepSeek AI. Repository: [Drifter yh/dsh tool policy dsh tool policy is a small Cordis plugin that evaluates ordered rules at the public tools/pre execute extension

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-skins

Moeblack

🎨 dsh external/dsh skins —— DSH Web 换肤插件 [English 中文 正经插件去 [dsh hub,整活插件去 [toybox, 换肤皮肤来 dsh skins 。 一个给 [DeepSeek Harness (DSH) Web GUI 换肤的客户端插件仓库:每个皮肤都是官方 ThemeService 的第三方主题注册( dsw alias token 覆盖,零核心改动),富皮肤在此基础上叠加 AI 生图背景。装得上、换得掉、有验收标准。 版权 :本仓库为独立插件项目,版权归作者(mattheliu)所有;仅包含原创插件代码与 DSH 官方 logo 素材(按官方仓库许可使用),不包含官方仓库其

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh-desktop

KnCRJVirX

DeepSeek Harness 桌面版 把 [DeepSeek Harness(DSH) 的 Web 界面封装成 Windows 桌面程序(Electron 壳)。开箱即用:自带便携 Node 运行时,目标机器无需预装 Node;默认与官方命令行版共享同一份数据目录。 特性 开箱即用 :打包产物自带便携 Node 运行时,目标机器无需安装 Node.js。 与官方版共享数据 :默认读写 /.dsh ,配置、MCP、插件、会话、设置、凭据与官方 dsh web 完全一致。 原生桌面体验 :独立窗口、外链交给系统浏览器、关闭窗口即干净退出。 安全 :服务仅绑定 127.0.0.1 ,渲染进程开启沙箱与上下文隔离。 快速开始(使用者)

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh open in finder DeepSeek Harness( dsh web )持久化插件:在聊天窗口顶部标题行添加一个文件夹小图标, 一键在 macOS Finder 中打开当前会话的工作目录 。 功能 标题行小图标(SVG 文件夹,跟随主题色,悬停高亮),紧挨标题/agent 预设 点击 → Host 调用 open 在 Finder 中打开当前会话的工作目录;成功时图标短暂变为 ✓ 悬停显示将打开的完整路径 无工作区的会话自动隐藏图标 仅 macOS(依赖系统 open 命令) 安装 1. 把本目录链接进 dsh web profile 的模块目录: 2. 在 /.dsh/profiles/web/cordis.p

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh plugin wepre English [中文 A [DeepSeek Harness ( dsh ) plugin that lets your agent publish single screen content cards to [WePre Next — a platform that pushes offline, single viewport cards to users while they wait on AI generations. With this plugin installed, a dsh session goes from "write me a card" to "it's live"

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh codex bridge English [中文 A dual face (host + browser) plugin for DeepSeek Harness (dsh) that bridges the Codex CLI into the harness. Why A dsh agent often wants a second opinion or a parallel coding pass from an external coding agent (OpenAI Codex). Doing that by hand — spawning codex , capturing JSONL, polling, wi

IntegrationOtherActive
Stars
1
Forks
0
Updated
today

dsh-kimi-bridge

pandashere

dsh kimi bridge English [中文 A dual face (host + browser) plugin for DeepSeek Harness (dsh) that bridges the Kimi CLI (kimi code) into the harness — the Kimi counterpart of dsh codex bridge , built on the same architecture. Why A dsh agent often wants a second opinion or a parallel coding pass from an external coding ag

IntegrationOtherActive
Stars
1
Forks
0
Updated
today

self control guard English [中文 A self control guard for the DeepSeek Harness host process. Why When developing DSH plugins, an agent frequently — by accident or by a misfired command — kills its own host process ( pkill dsh , kill 9 , kill $PPID , killall dsh ). The session dies mid task, work is lost, and there is no

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-notify

haytham818

dsh notify DSH(DeepSeek Harness)系统通知插件:当 agent 完成任务 、 出错 、 阻塞等待你的回答 或 等待审批 时,向操作系统发送桌面通知(通过 node notifier 跨平台封装,Linux 走 notify send ,macOS 走 terminal notifier,Windows 走 snoretoast),这样你切走窗口也能第一时间知道。 触发场景 场景 通知标题 说明 任务完成 DSH · 任务完成 agent 结束一轮运行回到 idle(turn/end reason 为 completed / max tokens),正文为最近一条用户消息摘要 任务出错 DSH · 任务出

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh plugin vision toolkit Vision toolkit for DeepSeek Harness give text only agents the ability to see images. What it does Provides CLI tools that call a vision API (DeepSeek VL, GPT 4V, or any OpenAI compatible endpoint) to describe, locate, detect, and crop elements from images. Registered as a dsh skill so agents k

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh turn budget English [中文 Advisory turn step budget reminders for [DeepSeek Harness. Opt in advisory step budget reminders: when an agent turn exceeds a configured step count, the plugin appends a source attributed reminder telling the model to wrap up. Advisory only — it never rejects or rewrites a step, so it canno

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-toolbelt

cking000bigdemon

dsh toolbelt 中文 [English 八个 [DeepSeek Harness 插件,补上 harness 本体没有覆盖的能力:通用型 agent 人设、回复语言守卫、逐请求视觉回退、两个写入/执行守卫、跨 agent 记忆桥接、生图工具,以及 skill 内的 shell 命令替换。 每个插件都是独立的 Cordis 插件,各有自己的入口、自己的类型化 Config 、自己的测试。只挂你需要的那几行。 基于 @deepseek ai/dsh@0.1.0 rc.6 开发。harness 处于 developer preview 阶段, 一定会有 破坏性变更。 安装 从本地 checkout 安装 必须先构建。 dsh p

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

ContextGate 上下文闸门 · A context folding gate plugin for [DeepSeek Harness (DSH) / [Cordis ContextGate 是一个部署在 LLM 请求瀑布(waterfall)中的闸门插件:它观测每一次 LLM 请求的上下文规模,当历史消息超出阈值时,由 LLM gatekeeper (小模型)逐条判断中间历史与当前任务的相关性,只保留相关消息,把无关历史 折叠为一条摘要 后重发请求——把上下文长度控制在窗口内,显著节省 token。 特性 瀑布闸门 :监听 llm/stream 事件,在请求进入模型路由前拦截,天然与 DSH 的 agent/compact

Native PluginMemory & ContextActive
Stars
1
Forks
0
Updated
today

dsh-resume-plugin

Demogorgon314

dsh resume plugin 简体中文 [English dsh resume plugin 为 [DeepSeek Harness 提供两个内置技能: /resume codex [latest 会话 ID rollout 路径 标题关键词] /resume claude [latest 会话 ID transcript 路径 标题关键词] 每个技能都会将选定的外部会话记录作为不可信的静态历史读取,生成简洁的工作交接摘要,核验当前仓库状态,然后在当前 DeepSeek Harness 会话中继续工作。插件不会启动 Codex 或 Claude Code,也不会把任务重新委派给它们。 安装 从 GitHub 安装 安装到 We

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-turn-meta

randerous

dsh turn meta English [中文 Opt in per step turn metadata for [DeepSeek Harness. Each entering agent step appends one compact, source attributed header naming the session, the current turn and step, how many real user messages and tool results belong to the open turn, and how many turns preceded it. The package doubles a

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh sticky disclosure [ [ [English 中文 DSH Web 客户端插件: 展开中的可折叠标签(Think 思考行、工具卡片、命令卡片、上下文注入行等所有 DisclosureRow)在滑出聊天视口顶部之后,会把标题“钉”在视口顶部 ,让你随时可以收起它;并提供 一键全部收起 的快捷键。 为什么需要它 Think 思考行、工具卡片等区块的收起按钮就是它的标题行。当区块展开且内容很长时,往下读会把它顶出屏幕——此时唯一的收起控件在屏幕外,只能一路滚回去点。本插件在标题滑出视口顶部的瞬间,在视口顶部生成一枚浮动的 affix chip ,把「收起」留在你眼前;区块收起或滚回可见时 chip 自动消失,不留痕

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

让 DeepSeek Harness 在后台服务出错时立即收到事件。 订阅已经运行的 Bash 或 PowerShell Job;保留原始 job output ,不启动第二个业务进程。 快速开始 · 为什么需要它 · 工作方式 · 工具参数 · 兼容性与边界 快速开始 安装到 DSH profile: 启动或重启 profile: 先正常启动后台服务: 再让 job monitor 订阅这个 Job: monitor 1 只订阅 pwsh 1 的输出。出现匹配行时,插件向所属 Agent 投递会话事件;原服务始终只运行一份。 为什么需要它 DSH 的普通后台 Job 会在任务结束时通知 Agent,但长期运行的后端服务可能在退出前

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

mmv dspic — MATLAB + ModelSim + Vivado 数字通信 IC 设计全流程插件 一个 DeepSeek Harness 插件,为 Agent 提供 MATLAB(算法建模/参考仿真)→ ModelSim(RTL 编译/仿真)→ Vivado(综合/实现/比特流) 的完整数字通信 IC 设计工具链,全部通过本地已安装的 EDA 工具执行。 工具一览 工具 作用 mmv check env 探测 MATLAB / ModelSim / Vivado 是否可用并读取版本信息 mmv project init 初始化设计工作区(matlab/ rtl/ sim/ scripts/ reports/ + 模板)

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

dsh-lan

moxisuki

dsh lan 让 [DeepSeek Harness 的 Web UI 可以在局域网访问的插件 + overlay。 警告 dsh web 没有认证层 。绑定 0.0.0.0 会把远程代码执行能力暴露给整个局域网——只在你完全信任的网络中使用。 使用 局域网设备打开启动行打印的 (LAN: http://...) 地址即可;多网卡机器请用真实局域网 IP 加端口(如 http://192.168.x.x:3080 )。用域名/别名访问需编辑 cordis.yml 里注释掉的 trustedHosts 示例。 卸载: dsh plugin profile web remove dsh lan 原理 cordis.yml 是 dsh

UI PluginOtherActive
Stars
1
Forks
0
Updated
today

DSH Music Plugin DeepSeek Harness 音乐插件。仓库 topic:[ dsh plugin 。 当前是可加载的骨架:Agent 已经能调用 music play / music pause / music resume / music skip / music status 。播放器还是内存队列,明天再接真正出声的后端。 本地加载 需要已安装 [DeepSeek Harness。 打开 http://127.0.0.1:3080 ,对 Agent 说: 播放一首 Lo fi 。 明天可以接着做 把 src/player.ts 换成真实播放(本地文件、 afplay / mpv 、或 Web UI 播放器

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

deep_option

Alyosha28

GOAI · DeepSeek Harness 金融期权终端 GOAI 世界人工智能开源大赛 · Boundless Agents 金融服务方向项目。 GOAI 面向有基础期权认知的用户,把自然语言观点转成带数据来源、港股产品规则、确定性定价、账户风控和审计记录的决策卡。产品定位是研究与决策支持,不是投资建议,不提供实盘自动交易。 项目形态:一个运行在 DeepSeek Harness(DSH)上的「大号金融插件」。 Python 确定性引擎守护全部金融数字与审计链,DSH 负责 Agent 编排、工具注册、人机审批与对话体验。评审也可以完全不装 DSH,用 python m src.ui server 独立运行——两条入口共享同一

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh deepseek balance 右下角悬浮的 DeepSeek API 余额监视器 —— 为 DeepSeek Harness (DSH) 实时显示账户余额与用量费用。 功能 🟢 右下角常驻悬浮徽章 :状态色圆点 + 实时余额,任何页面/会话下都可见 📊 用量费用图表 :7 天 / 30 天柱状图,悬停查看每日金额 🔄 每 60 秒自动刷新 ,也可手动刷新 🎨 自动适配深浅色主题 (使用 DSH 主题变量) 🔑 自动读取已配置的 DEEPSEEK API KEY 凭证 ,无需手动填写 🔒 Key 安全 :通过环境变量传给 curl,命令行/日志不出现明文 余额数据来自官方接口 GET https://api.d

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-explain

yuezengwu

English [简体中文 dsh explain — Learning mode for DSH ✅ Status: the M6 Explain Host protocol is implemented and passes the automated gates. Optional consumer integrations are still in progress. The current minimum supported DSH version is 0.1.0 rc.6 . See the [product requirements and [technical architecture for the full d

Native PluginMemory & ContextActive
Stars
1
Forks
0
Updated
today

@crayonlu/dsh web search firecrawl Firecrawl backed WebSearchProvider for the [DeepSeek Harness web capability seam ( ctx.web ). Lets dsh 's web search tool run entirely on [Firecrawl (v2 /search ) — no DeepSeek API key required. Install Then add the provider to the profile patch layer at $DSH HOME/profiles/web/cordis.

UI PluginBrowser & WebActive
Stars
1
Forks
0
Updated
today

@crayonlu/dsh web search tavily Tavily backed WebSearchProvider for the [DeepSeek Harness web capability seam ( ctx.web ). Lets dsh 's web search tool run entirely on [Tavily — no DeepSeek API key required. Install Then add the provider to the profile patch layer at $DSH HOME/profiles/web/cordis.patch.yml (hot reloaded

UI PluginBrowser & WebActive
Stars
1
Forks
0
Updated
today

dsh blue whale maid 蓝鲸女仆 —— DeepSeek Harness Web GUI( dsh web )的桌面宠物插件,本质是一个 任务完成提醒器 。 蓝发、鲸尾、蕾丝女仆装的 Q 版小伙伴:干活时她陪着你、播报进度,任务完成就跳起来提醒你,还能一键跳到对应会话。台词里藏着不少 DeepSeek 的梗。 ⚠️ 美术素材版权 :精灵图等素材来自 [codex pets.net,原作者 simashui 。代码 MIT, 素材不适用 ,请勿商用。详见 [CREDITS.md。 展示 功能 💼 任务完成提醒 :会话跑完 → 跳跃庆祝 + 气泡「「任务名」完成啦!」+「去看看 →」跳转按钮;跑挂 → 失败动画 + 提

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh mobile control DeepSeek Harness 插件 · 操控手机 / DSH plugin for controlling mobile devices 通过 WebDriverAgent(WDA) 驱动 iOS 模拟器:截图、点击、找元素、打开 URL、抓可访问性树。 WDA 是跑在模拟器 内部 的 XCUITest 运行器,暴露 localhost:8100 HTTP 服务—— 零 macOS 辅助功能授权、不依赖 idb、能点任意 app(含系统弹窗) 。 Drives the iOS simulator through WebDriverAgent (WDA) : screenshots, taps

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

dsh browser control DeepSeek Harness 插件 · 操控浏览器 / DSH plugin for controlling browsers 通过 CDP(Chrome DevTools Protocol) 驱动浏览器:复用日常 Chrome 登录态、导航、抓 console / pageError / networkError、截图、执行任意 JS。 核心资产: scripts/launch.sh — 登录态复用的 CDP 启动器(起 :9222 调试实例) scripts/drive.mjs — CDP 驱动:导航 / 截图 / console / eval / mobile 仿真 Drives b

Native PluginBrowser & WebActive
Stars
1
Forks
0
Updated
today

dsh-code-check

a179-sanae

dsh code check DeepSeek Harness(DSH)的自动类型检查诊断插件。 模型编辑或创建代码文件后,本插件在后台(按项目、防抖)自动运行 tsc noEmit ,并通过 code check 工具汇报哪里改坏了——按文件分组,带 行列号、严重级别和 TS 错误码。模型看到报告后可以自己修复,形成 "改 → 查 → 修"闭环。Claude Code 有官方 LSP 插件,pi 有 pi lens,现在 DSH 也有了 dsh code check。 特性 监听 harness 的 fs/observed 变更事件(与内置 skill 文件系统同一条缝),零核心改动。 800ms 防抖,连续编辑合并为每个项目一次

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-context-taxonomy

ArtificialNotImbecile

dsh context taxonomy Logical call context taxonomy plugin for DeepSeek Harness

Native PluginMemory & ContextActive
Stars
1
Forks
0
Updated
today

dsh batch regression DeepSeek Harness 插件 · 批量回归 / DSH plugin for batch regression stats "数据忽高忽低,到底信哪个"——对同一命令跑 N 轮取中位数和分布 ,用统计而不是单次结果下结论。 "Numbers keep jumping — which one do I trust?" Run the same command N rounds and judge by median/distribution instead of a single result. 真实方法论 Methodology(实测沉淀) 结论 说明 取中位数,不是平均 平均会被

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-port-guard

PangYiMing

dsh port guard DeepSeek Harness 插件 · 端口占用处置 / DSH plugin for triaging port conflicts dev server 启动报 EADDRINUSE: address already in use ——最常见的前置障碍。但 不是所有 EADDRINUSE 都该 kill 。 The classic blocker before any dev server starts. But not every EADDRINUSE should be killed . 核心洞察:EADDRINUSE 有三条路,不是只有"杀" 情况 占端口的是谁 正确动作 A. 自己的、还

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

dsh bisect debug DeepSeek Harness 插件 · 二分定位 / DSH plugin for bisecting bugs "bug 在当前代码里,但不知道具体在哪"——用 二分法把搜索范围每轮砍一半 ,快速锁定到具体函数/边界/commit。 "Bugs live somewhere in this code, but where?" — halve the search space every round with bisection, down to the exact function, boundary, or commit. 三种二分法 Three modes 模式 切什么 适用场景 需要什么

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

dsh screenshot diff DeepSeek Harness 插件 · 像素对比 / DSH plugin for pixel diffing screenshots 对两张已截图做像素 diff,输出 diff.png (差异标红)和 compare triple.png (左 A / 中 B / 右 diff 三联图,各自左上角带标签)。 不做截图采集 ——输入是你已有的两张图。 Pixel diff two existing screenshots into diff.png (differences in red) plus a labeled triptych compare triple.png (A B d

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh book2skill 书籍转技能(Book → Skill):DSH 插件包,把一个 5 阶段长任务工作流带进 DeepSeek Harness—— 获取书籍 → 解析分章 → 深度阅读 → 生成 SKILL.md → 安装 ,中途有 3 个人类门控 。 确定性步骤(EPUB 解析 / PDF 提取 / OCR / 安装复制)是宿主工具;理解与生成(浅读建地图、 设计方向问题、深读核心章、撰写 SKILL.md 与自检)由 agent 执行;浏览器面板负责 5 阶段时间线 展示与门控审批。任务状态存宿主存储域, 跨会话、跨重启可恢复,可随时取消 。 架构 平面 内容 宿主( src/index.ts ) book2skill

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

@deepseek ai/dsh pet corner DSH 的轻量摸鱼角:右下角是一只可拖动的小猫,点击后可浏览猫、狗和狐狸图片、 猫咪知识与收藏。所有第三方请求都先经过宿主白名单代理,浏览器不会直接访问外站。 安装 包内已经声明 dsh.bundle.patch ; dsh plugin add 会自动维护 Profile Bundle。 不要手工修改 profile manifest,也不要重复插入 pet corner loader row,否则会得到 duplicate loader entry id 。 功能与网络边界 小猫挂件、来源开关、默认狗狗品种和自动换图周期; 收藏仅保存在当前浏览器的 localStorage

Native PluginVision & MediaActive
Stars
1
Forks
0
Updated
today

@deepseek ai/dsh fun typewriter 为 DSH Web 增加打字机/机械键盘氛围音:助手流式输出敲击、发送回弹、完成提示、 错误低鸣、输入按键音,以及会话头部静音按钮和完整设置页。音效全部由 WebAudio 实时合成,不包含音频文件,也不访问任何外部服务。 安装 包内已经声明 dsh.bundle.patch ; dsh plugin add 会自动维护 Profile Bundle。 不要手工修改 profile manifest,也不要重复插入 fun typewriter loader row,否则会 得到 duplicate loader entry id 。 行为与权限 浏览器第一次用户手势后

Native PluginVision & MediaActive
Stars
1
Forks
0
Updated
today

dsh voice funasr DSH Web UI 的 本地离线语音输入 插件:录音按钮按住说话 → 本地 FunASR 引擎 (paraformer large + FSMN VAD + ct punc,全部官方 int8 ONNX)精准转写 → 可选 两段式润色 (LLM 修正口头禅/口误)→ 自动进 composer 并发送。本地引擎不可用 时 自动回退 浏览器 Web Speech API。 与 dsh voice chat 的差异化:本地 ASR(中文精准、隐私、断网可用)+ 两段式润色。 兼容性 DSH: =0.1.0 rc.3 =24.0.0 Web profile;浏览器需要 MediaDevices / Aud

Native PluginVision & MediaActive
Stars
1
Forks
0
Updated
today

dsh ernie image DSH 百度 ERNIE Image Turbo 文生图插件:宿主端注册图像生成工具(图片落盘 + 注册为会话附件,agent 可继续读图),浏览器端提供插件配置卡(密钥用户自填、测试连接、默认参数)与「✨ 文生图」生成画廊面板(prompt → 变体 → 预览/下载/同 seed 复现/换 seed 出变体 → 插入会话)。 定位 数据源:[百度 AI Studio 的 ERNIE Image Turbo 文生图模型( /llm/lmapi/v3/images/generations )。 宿主工具: ernie generate image(prompt, {size, n, seed, useP

Native PluginVision & MediaActive
Stars
1
Forks
0
Updated
today

dsh paddle ocr DSH 插件:百度 PaddleOCR VL 文档布局解析。把 PDF / 图片逐页解析为 Markdown (文字 + 图片落盘),提供三个宿主工具、一个浏览器配置卡和一个任务面板。 宿主工具(agent 可用): paddle ocr layout(file, {mode, fileType, orientation, unwarping, chart, visualize, outputDir}) —— 逐页解析落盘( doc N.md + 图片),默认异步模式;超限 PDF 自动拆分; 队列满(10010)自动指数退避重试(最多 5 次),最终仍满则给出友好排队提示。 paddle ocr te

Native PluginVision & MediaActive
Stars
1
Forks
0
Updated
today

dsh daily progress 每日进度成就系统(DSH Web 插件,双半架构): host 半 ( src/ → lib/index.js ): daily progress 存储域(每日计划持久化于宿主 storage domain 的 json 后端)+ 完成率 / streak / 周率指标 + 自有 HTTP 路由( /daily progress/state 、 /daily progress/mutate ,loopback only)。 client 半 (P1 起, src/client/ → lib/client.js ): conversation.input.dock 温度计 widget + 两栏计

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-revive

omdsh-dev

dsh revive · 一键复活 DSH 进程经常在跑任务时被杀死(自己杀自己、OOM、崩溃……),重启之后每个被打断的会话都要手动点开、手动发一句「继续」。这个插件把这件事变成 一键 : 扫描全部持久化会话,识别「被打断」的(回合没跑完、消息没处理、上次回合以中止/出错/阻塞/超长收尾的); 按官方 GUI 同款路径冷恢复它们:从持久化日志重建会话、挂回它原来的 preset 组合、沿用上次的模型; 给每个被打断的会话发送「继续」指令,让它们接着干活; 子代理会话不直接复活(它们会随父会话的恢复被自动接管),正在运行的会话不动。 触发方式(三选一,同一套核心逻辑) 入口 用法 浏览器一键按钮 每个会话输入框下方的 dock 区有

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh longbridge DSH 长桥(Longbridge)港美股数据接入插件:券商级行情、账户与交易工具 + 设置页凭据管理。 定位 港美股 ( 700.HK / AAPL.US 格式)+ 券商级能力 (持仓/下单/账户),数据源为 [Longbridge OpenAPI( longbridge npm SDK,App Key/Secret 认证)。 与 dsh stock market 差异化:它覆盖沪深 A 股免费公开源;本插件覆盖港美股与券商级数据。 交易工具 强制确认 : longbridge place order / longbridge cancel order 每次调用都过 DSH 审批通道( tools/p

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh deeplink — WebUI deep link plugin A DeepSeek Harness Web UI plugin that opens a specific project conversation directly from a URL query parameter, instead of always returning to the last session. ?session= → open that conversation ?workspace= → open that project's latest/blank conversation Persistent links: the add

UI PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

DSH Fun Weather 独立的 DeepSeek Harness Profile Bundle,提供当前天气、7 日预报、小时预报、城市设置,以及随天气变化的主题和壁纸效果。天气与地理搜索使用 Open Meteo。 兼容性 DSH 0.0.1 rc.2 Node.js ^22.19.0 =24 Web profile 插件使用自己的同源设置 API,不依赖 DSH 核心 settings RPC 的 namespace allowlist。设置仍由 Host 的 dsh settings 服务持久化。 安装 package.json#dsh.bundle.patch 会自动应用 cordis.patch.yml 。不要手工

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

DSH Daily Fortune 独立的 DeepSeek Harness Profile Bundle,提供「今日一签」会话页、输入区抽签按钮、观音灵签、塔罗牌阵、每日名言与设置面板。 兼容性 DSH 0.0.1 rc.2 Node.js ^22.19.0 =24 Web profile 插件使用自己的同源设置 API,不依赖 DSH 核心 settings RPC 的 namespace allowlist。设置仍由 Host 的 dsh settings 服务持久化。 安装 package.json#dsh.bundle.patch 会自动应用 cordis.patch.yml 。不要再手工向 profile 插入同名 en

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh fun ticker DSH(DeepSeek Harness)行情跑马灯插件:会话底部一条常驻横向跑马灯,加密 / 汇率 / A股 / 指数 / 港美股任意组合,用户自主增删标的;点击条目查看明细(含迷你 sparkline)。全部数据免费免 key,客户端不直连上游 —— 宿主侧代理 + 缓存。 本仓库为 DSH monorepo 中 packages/fun/ticker 的单包快照。源码与该目录内容一致,可直接放回 monorepo 的 packages/fun/ticker/ 目录构建。 结构 src/index.ts — 宿主入口:注册 dsh ticker 设置命名空间与 /plugins/dsh ticker

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

@dsh external/dsh session search Cross agent session search plugin for DeepSeek Harness — directly scan past conversations from dsh, Codex, Claude Code, pi, and OpenCode without creating a derived database. [中文 Capabilities Tool Description agent session search Case insensitive literal search across current source arti

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

dsh-ultra-ui

havingautism

🪄 dsh ultra ui · Ultra UI [English 中文 参考 Codemini 交互的 DeepSeek Harness Web UI 增强:只负责把所有 Tool Call 展示为紧凑、可展开、可回放的折叠行。 状态 Preview · 版本 0.1.0 · 分支 main ✨ 特性 📦 折叠任意 Tool Call,包括第三方插件新增的工具。 👀 折叠状态仍显示工具名和有用的参数摘要。 🔍 展开查看准确参数、结果、错误和轨迹检查操作。 🔄 只从已记录的 call/result block 派生状态,实时展示与会话回放一致。 🧠 不增加模型工具、系统提示或请求 token。 🚀 快速开始 🧪 如

UI PluginOtherActive
Stars
1
Forks
0
Updated
today

omdsh

omdsh-dev

Oh My DSH [简体中文 Oh My DSH is an independent, community maintained experimental project for organizing versioned component sets and defaults in a clear, reviewable, and reproducible form. This public repository candidate is an early preview. It currently contains only a format designed publicly for this project, explici

Developer ToolDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

session teleport DeepSeek Harness 多设备 Session 接力插件。PostgreSQL 是唯一在线权威;同一时间只有一台设备持有写入凭据,移交后旧凭据立即被 writer epoch 拒绝。 这是独立插件仓库,只分发 BSD 3 Clause 许可下的 Session Teleport 代码。 DSH peer packages 是外部依赖,保留各自许可,不在本仓库中复制、镜像或重新授权。 本包保留 private: true ,避免本地发布演练误触 npm 发布;受支持的插件源是 https://github.com/omdsh dev/session teleport ,安装时必须固定到完整

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

Browser control configuration for DSH English [中文 This repository publishes a static Cordis overlay and integration guide for @deepseek ai/dsh tool browser . It does not distribute the tool implementation, a DSH runtime, browser binaries, or credentials. Availability Static configuration candidate only. An authorized r

Native PluginBrowser & WebActive
Stars
1
Forks
0
Updated
today

GitHub integration workflow skill source A static DSH skill source package for structured GitHub issue and pull request campaigns. It guides a model through issue batch survey, triage, isolated fixes, pull request creation, tracking table updates, upstream links, and handoff. This repository intentionally contains work

IntegrationAgent & WorkflowActive
Stars
1
Forks
0
Updated
today

toybox

omdsh-dev

🧸 toybox —— DSH 插件玩具箱 正经插件去 [OMDSH Hub,整活插件来 toybox。 一个专门收藏"有意思"的 [DeepSeek Harness (DSH) 插件的仓库: 有趣的技能、古怪的 MCP 服务器、能讲段子的工具。每个插件都有源码、离线打包与协议验收标准——只是比正经插件多了一点灵魂。 版权 :本仓库为独立插件项目,版权归作者(mattheliu)所有;仅包含原创插件代码,不包含 DeepSeek Harness 的实现源码。 ⚠️ 当前可用性 目前仅为源码与静态包候选。 使用获授权的 registry 只读访问探测显示 @deepseek ai/dsh repository plugin 返回 H

IntegrationDeveloper ToolsActive
Stars
1
Forks
0
Updated
today

7d7d

omdsh-dev

7d7d —— 7k7k 风格的 DSH 游戏门户 让 DeepSeek Harness 变成一个游戏机:模型生成/上传 HTML5 与 Flash 小游戏, 在 DSH Web UI 里直接打开门户游玩。Flash 使用固定版本、摘要校验的同源 Ruffle。 这是什么 7d7d 是 [DeepSeek Harness 的外部插件,参考 7k7k/4399 的门户形态: 前端原生入口 :会话标签栏 chat / Trajectory 之后出现 7D7D 标签,点击即在对话列内打开游戏门户; 游戏库托管 :DSH 主服务器 /7d7d 前缀同源托管,实时扫描 games/ 目录生成门户清单——模型或用户往库里丢一个文件夹,门户立刻上

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

omdsh-runtime

omdsh-dev

OMDSH Runtime A headless execution layer that reuses official Harness Profile, Bundle, Cordis, and package operations. It adds deterministic plan/apply, candidate generations, explicit confirmation, and previous generation recovery without introducing another Loader or daemon. DSH Hub Workshop remains the only discover

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

DSH Spotlight [简体中文 English A keyboard first command palette for DeepSeek Harness Web. Open one palette to find native slash commands, recent sessions, visible UI actions, and installed plugin settings—without leaving the keyboard. Features One shortcut: ⌘K on macOS, Ctrl+K on other platforms. Customizable: click the s

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh tool approval English [中文 Add pre approval to any Tool Calling, aka "Manual Mode"/"Ask Mode". Install Config Default config With the default config, every Tool Calling goes through pre approval. Custom config Only tools specified in include get pre approval; tools in exclude pass through. Wildcards are supported. L

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-tps

Small-tailqwq

dsh tps DSH Web 实时 TPS 徽标:在 "Deep diving…" 状态行内显示实时 tokens per second,跟随运行行自然显隐。 English: [README.en.md 特性 实时瞬时 TPS :滚动 5 秒窗口采样流式输出(UTF 8 字节 / 5 估算),流暂停 1.5 秒自动显示 ,新步骤自动重置窗口;徽标在首个数值到达时才出现(一次性淡入),新一轮不会显示光秃秃的 TPS ,中途暂停的 保留 跟随显隐,零适配 :徽标渲染在 "Deep diving… 7分25秒" 行内,turn 结束、提问/审批面板接管时随行一起消失——无需为待办条、队列条或提问面板编写任何隐藏逻辑 不重复原生功能 :

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-tonghuashun

AdamPlatin123

DSH THS Skin · 同花顺终端皮肤 [ DeepSeek Harness(DSH)客户端插件:同花顺行情终端风格的皮肤 + 代码量 K 线行情面板。 包含包 包 说明 @deepseek ai/dsh client ui skin ths 终端皮肤:红涨绿跌令牌、终端化富 CSS、设置选择行 @deepseek ai/dsh client ui market 行情面板:代码量日 K 线 dock、DS 指数 details、工具 Result 卡 功能 红涨绿跌语义令牌 : skins.ts 的 THS TOKENS 覆盖 dsw alias 层,对齐同花顺行情终端视觉(红涨绿跌、品牌蓝、终端深蓝灰底、方角等宽)。 终端化

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
today

dsh-plugin-spur

HuanLinOTO

dsh spur 小鲸鱼不听话?抽就完了。 一根悬挂在 DSH 聊天流中的辫子(皮鞭)。抓住辫梢甩动——速度足够快时,向 agent 发送一条 go work! 消息,鞭策它去干活。 功能 Verlet 物理引擎渲染的辫子,作为 position: fixed 的 SVG 叠层,锚定在视口右上角,垂入聊天区域。 辫梢圆点是唯一可抓取的元素(在整体 pointer events: none 的叠层上设为 pointer events: auto )。 鼠标按下 → 辫梢锁定到光标;鼠标移动 → 跟踪速度(指数移动平均);鼠标释放 → 带末速度释放。 释放速度超过阈值(2.0 px/ms)时: 1. 保存当前输入草稿。 2. input

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

DSH 桌宠(Rust 版) ⚠️ 因为穷鲸组织的 GitHub Actions 账单额度问题无法运行,所以请自行构建。 DeepSeek Harness 桌面宠物鲸鱼,Rust 原生实现,三端支持(Windows / macOS / Linux)。 原 Electron 版见 ../dsh pet/ 。本版本用纯 Rust 重写,目标体积 attention working done idle ⚡ 双 SSE 实时推送( events.mux + events.host )+ 2s 轮询兜底 🎨 HD 像素画鲸鱼(80×58 网格)+ 喷水水滴动画 + zzz/spark 叠层 💬 状态气泡(多会话聚合列表,可滚动,popIn

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh-plugin-d399

HuanLinOTO

dsh d399 · 贪玩蓝鲸 ❤深❤夜❤寂❤寞❤,❤来❤玩❤ D399❤ 当模型正在生成响应时,右下角弹出一个蓝鲸游戏弹窗。点击「来♂」展开游戏菜单,内置 Wordle + 消消乐 + 192 款参数化小游戏 (覆盖反应/解谜/策略/街机/问答/卡牌等品类,同族变体折叠成组),并支持自定义网页书签。等待不再寂寞。 功能 生成检测 :订阅 ctx.sessions.list 的 running 标志。 false→true 边沿触发右下角 teaser 弹窗; true→false 自动收起(除非用户已打开游戏菜单或正在游戏中——此时保留到用户手动关闭)。 内置游戏 : Wordle — 6 次猜 5 字母英文词,绿/黄/灰三色反馈

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh auto blame 当模型完成当前轮次对话后,将最后 3 条消息发送给 LLM,生成 3 条批判性跟进请求,显示在输入框上方作为可选项,点击直接发送。生成期间"领导视野"标签带 DeepSeek 蓝色流光扫过(同 Deep diving... 特效),建议到达后气泡依次淡入。 工作原理 fire and forget :LLM 调用不阻塞 turn 关闭,建议晚几百 ms 出现 非 surface 事件 : auto blame/suggestions 不进入 model visible 历史,不干扰 agent loop 失败静默 :LLM 失败 / 解析失败 → 不 append 事件,不显示气泡 点击发送 :走 In

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh anti ads 给 DSH Web UI 安装的广告拦截器——拦截对象只有 [dsh ads 一个。右下角一枚小徽章,广告没了,徽章记着拦掉了几个弹层。 它是怎么拦的 四层防御,独立工作、可单独开关: 层 机制 关什么 L1 设置写穿 通过 dsh ads 自身的存储契约( localStorage['dsh ads:settings'] + dsh ads:persist changed 事件)把所有广告位开关写成关闭,并监听 dsh ads 的广播持续压制 两侧广告栏、对话内信息流、右下角弹窗、跑分、安全告警、贪玩蓝鲸海报 L2 兜底清理 MutationObserver 监听页面变化,按形状( position:fi

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

dsh aigc canvas DSH 插件:provider agnostic 的 AIGC HTTP 桥 + 自由画布 + ffmpeg 后处理。Agent 通过 aigc http request 调用任意 HTTP AIGC API(endpoint + apiKey 自动附加),生成的文件用 aigc canvas place 摆到无限画布上,可用 aigc media edit (ffmpeg) 后处理。 安装 预构建 lib/ 入库策略(含 @deepseek ai/ private peer deps,必须预构建), github: 安装开箱即用,无需 allowBuilds 。 配置 在 cordis.patch.

Native PluginOtherActive
Stars
1
Forks
0
Updated
today

简化自走棋(Minimal Auto Chess)· DSH Web 插件 [English · 中文 在 DSH 的会话标签栏里,藏着一张自走棋棋桌:你可以亲自执蓝方,跟 AI 来一场人机对弈;也可以退到观众席,看两个 AI 各自挑好模型,在棋盘上互相对攻。这里的每一步都不是白想的:每个回合的决策,都是一次真实的模型请求。把思考档位拉到 High 或 Max,再点开思考记录,就能围观 AI 盘算「买谁、卖谁、凑什么羁绊、金币花在升级还是刷新」,把算盘一步步打给你看。胜负落在棋盘上,思路留在记录里。 棋局状态保存在浏览器端的模块级 store 中,切标签页、切会话都不会重置对局或打断正在进行的 AI 思考。 主要功能 人机与双 AI

Native PluginOtherActive
Stars
1
Forks
0
Updated
yesterday

dsh diff viewer DSH Web GUI 的 PiUI 风格 diff 查看器插件:替换 write/edit 工具调用的 diff 渲染(原 DiffBlock)。 unified 单栏默认 :同一 gutter 并排显示旧/新行号,无左右错位;split 双栏可选( viewMode ) 变更条 :新增实心绿条、删除条纹红条;行背景色带统一延伸到最宽行 词级高亮 :行内改动叠加绿/红标记,shiki 语法着色( highlightLines ) 上下文折叠 :长段未变更行折叠为" N 行未变更 ",向上/向下/全部展开 窗口化渲染 :固定行高窗口化,大 diff 不挂载全部行;sticky 横向滚动条(hover

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
yesterday

dsh-mobile

lehhair

dsh mobile DSH WebUI 移动端适配插件( PiUI 翻页器结构 ):窄屏下框架本身就是横向 scroll snap 翻页器,两页卡片—— 半开侧边栏页 ( min(360px, 50vw) )+ 全宽聊天页 。滑到侧边栏页后聊天卡片仍在右边露出一半(PiUI 同款 overlayWidth 效果),聊天渲染零改动。纯客户端适配,零核心改动——官方 rc.2 发行版直接可用。 功能 PiUI 翻页器 :≤768px 时三栏框架重排为两页横向 snap 轨道——侧边栏页半开宽(约半个视口),聊天页全宽; 滑到侧边栏页时聊天卡片在右半露出(半边信息流) ,PiUI 同款结构 侧边栏始终完整渲染 :窄屏下控制器自动展开 A

Native PluginOtherActive
Stars
1
Forks
0
Updated
yesterday

dsh split panes DSH 对话分屏插件(PiUI 风格):把信息流分成多个可独立操作的窗格,每个窗格绑定自己的会话——分屏/层叠、四向拖拽分配、侧边栏会话拖入、单行融合 header。信息流本体完全复用原生渲染,插件只做容器与交互。 功能 分屏组合 :header 操作行分屏按钮 + mod+shift+方向键 (左右/上下), mod+shift+w 关闭窗格;分隔条可拖拽、可键盘调节(比例 0.1–0.9) 每窗格独立会话 :通过框架的 SessionScope 座位把每个窗格绑定到各自的会话;分屏是 纯视图操作 ——新窗格是"新建对话"占位(不创建 host 会话),在占位窗格里开始对话时才真正创建会话并绑定到该

Native PluginOtherActive
Stars
1
Forks
0
Updated
yesterday

math-lean

Fisfzy

dsh lean prover DSH(Cordis)单插件:把数学/物理推导结果钉死在 Lean 内核 clean replay 验证上。 任何 Agent 声称的结果都必须通过可复现、防造假的 Lean 验证才被接受;推导由 Agent/外部工具 产出,本插件只负责"裁定 + 证据存证"。 核心信念 Lean 内核 clean replay 是唯一最终数学权威。 反作弊是"权威复核"而非文本扫描 :Lean 的 #print axioms 会报告目标定理依赖的 axiom 集;任何依赖 sorryAx (sorry/admit)、 (unsound)或未授权 axiom 的候选都会被拒绝——即使它 源码里没有字面 sorry (

Native PluginOtherActive
Stars
1
Forks
0
Updated
yesterday

dsh-custom-css

AnacondaKC

dsh custom css DSH WebUI 自定义 CSS 插件(官方 bundle 形态,client half 插件)。 在设置面板新增「外观 / Custom CSS」页:粘贴任意 CSS 即时改变 WebUI 观感,样式持久化到宿主设置( $DSH HOME/settings.yaml ), 所有访问该 GUI 的浏览器共享 ,多浏览器实时同步。 功能 粘贴/编辑 CSS 后 500ms 防抖自动保存 到宿主,所有浏览器实时同步 revision 乐观并发控制:远端修改与本地草稿冲突时暂停自动保存,用户可选择采用远端版本或显式覆盖 保存、同步、冲突和错误状态反馈;失败后可手动重试或放弃草稿 可导入 .css 文件,或上

Native PluginOtherActive
Stars
1
Forks
0
Updated
yesterday

dsh-scout

omdsh-dev

dsh tool scout English [中文 A model facing environment probe tool for DeepSeek Harness : on demand, the agent can learn the runtime environment (platform, shell, user, timezone…), which commands resolve on PATH, which software is installed and at what version, and how much CPU/memory/disk is available — without guessing

Native PluginOtherActive
Stars
1
Forks
0
Updated
yesterday

dsh-artifact

william-jin-cmu

dsh artifact dsh 的文件交付协议。模型写完文件 ≠ 用户拿到文件——本插件补上这最后一步。 注册一个 send artifact(path, caption?) 工具:模型产出文件后调用它正式交付。插件校验文件、构造结构化描述子,随 tool/result 事件的 meta 字段进入 dsh 标准事件流—— 任何消费 events.mux 的客户端 都能拿到并按自己的方式呈现:桌面壳弹预览卡片、IM 桥直接转发文件、headless 客户端记录路径。不引入任何自定义传输通道。 描述子(meta 形状) artifactKind : image video audio pdf markdown html text ot

Native PluginOtherActive
Stars
1
Forks
0
Updated
yesterday

Lujo-MCP

lujoai

Lujo MCP Lujo MCP is an MCP Runtime Debugging Context Server for AI coding agents. 让 Claude、Cursor、Trae 等 AI coding agents 获得 真实运行的 Debug Context —— 不是只读你的代码,而是看到真实 Bug 运行现场。 一个 Model Context Protocol (MCP) Server ,面向 AI debugging / Runtime debugging / Browser debugging 场景的 Developer Tool & Observability 基础设施。 Why Lujo

IntegrationAgent & WorkflowActive
Stars
1
Forks
0
Updated
yesterday

design-playbook

Bandersnatch0x

🎴 design playbook Design I/O for coding agents — declarations + contracts that make UI generation constrained, reviewable, and recirculatable. [ [ [ [ [ [ Not another style/palette pack. Compose with ui ux pro max + frontend design ; this plugin owns the pipeline and acceptance . ✨ What it is A Claude Code / Codex plu

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
yesterday

@deepseek ai/dsh turn navigator English [中文 A compact turn navigator for long DSH Web conversations. It follows the conversation scroll, previews a user turn on hover, and jumps to that turn on click. It stays hidden until the conversation contains at least three user turns. Preview It supports keyboard focus, light an

Native PluginOtherActive
Stars
1
Forks
0
Updated
yesterday

@deepseek ai/dsh agent budget English [中文 dsh agent budget gives one live agent session, or its complete local descendant tree, a durable Token limit and absolute deadline. It reserves capacity before every attributed llm/stream provider attempt and replaces that estimate with provider reported usage after the stream s

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
yesterday

dsh-tool-search

vibeinging

@deepseek ai/dsh tool search English [中文 An experimental external Native Tool Mode plugin for per agent tool discovery and progressive schema disclosure. Each live agent sees one scope local tool search tool plus the global tools matched by alwaysVisible ; other eligible global tools stay executable only after tool sea

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
yesterday

dsh-kb-sieve

omdsh-dev

@dsh external/dsh kb sieve 知识库筛子——把文档做成 可审计、确定性检索 的知识库插件(DSH 版 kb sieve)。 三个工具,纯计算(零子代理、零 workflow、零外部服务): 工具 干什么 核心机制 kb build 文档 → 知识包(支持 增量 ) 抽取(md/txt/docx/pdf,并发 4 可调)→ 分词 → references/ 原文 + kb.sqlite(FTS5,BM25 title=10/body=1)→ manifest + SKILL.md + build state.json kb query 确定性检索 FTS5 BM25 → 精确标识符匹配(标准号/章节号/型号)→

SkillAgent & WorkflowActive
Stars
1
Forks
0
Updated
2d ago

dsh-101

bill9109

@dsh external/dsh 101 DSH 101 文档阅读器 profile bundle:构建于 dsh base + dsh web app 之上的文档优先阅读界面。 整理了 DSH 自带的文档,分门别类,有一定的顺序 自带文档翻译能力 有一个滑动式隐藏目录 对话在右侧 安装(profile 分发) 本仓库同时包含 bundle ( @dsh external/dsh 101 ,可 dsh plugin add )和 profile/ 目录 (完整的 dsh 101 profile 组合: dsh base + dsh web app + 本 bundle)。DSH 官方模型是"分发 bundle、用户组合 profi

Native PluginOtherActive
Stars
1
Forks
0
Updated
2d ago

sandbox-nono

omdsh-dev

@deepseek ai/dsh sandbox nono English [中文 The nono (Landlock/Seatbelt) backend as an installable DSH profile bundle. This standalone package contains the sandbox provider, its invariant companion, the bundle patch, and the vendored @dsh external/nono ts native executor carrier. Repository shape The bundle adds a distin

Native PluginOtherActive
Stars
1
Forks
0
Updated
3d ago

amber-protocol

Bandersnatch0x

Amber Protocol [简体中文 Status: Stable Version: 1.5.0 · [Milestones & test status → Make AI coding sessions reviewable, gated, and handoff ready. [Getting started · [CLI reference · [Governance model · [Examples · [Roadmap What is Amber? Amber Protocol is a repository local governance layer for AI assisted engineering. Wh

Native PluginAgent & WorkflowActive
Stars
1
Forks
0
Updated
3d ago

Image to Editable PPT [ 把一张参考图片重建为真正可编辑的 PowerPoint:标题和正文仍是文本框,卡片、线条和箭头仍是原生形状,复杂图标与插画则作为独立、安全的图片资产保留。 它不是简单地把整张图片铺到幻灯片上,而是帮助 Agent 分析页面结构、选择正确的重建方式、生成 PPTX、渲染预览,并验证文字与对象是否真的可编辑。 效果预览 [ 左侧是[原创参考图片,右侧是生成的[可编辑 PowerPoint 实际渲染结果。标题、说明、编号和结论均为原生文本,卡片、面板和闭环贝塞尔曲线为原生 PowerPoint 对象;13 个具有渐变、阴影和立体细节的图标则从原图独立裁切。整个页面没有使用整页截图,也没有把含

UI PluginWeb UIActive
Stars
1
Forks
0
Updated
4d ago

sandbox-mxc

omdsh-dev

@deepseek ai/dsh sandbox mxc English [中文 The MXC sandbox provider extracted from the DSH feat mxc implementation as one standalone external bundle. The repository keeps two delivery faces in one Git repository: main contains the registry backed provider from DSH feat mxc . feat mxc vendor sdk carries the same provider

Native PluginOtherActive
Stars
1
Forks
0
Updated
4d ago

@deepseek ai/dsh client web component English [中文 The DSH Web Component adapter as an installable profile bundle. It exposes a browser side webComponent service that mounts registered slot trees as native Custom Elements, while keeping slot ownership, typed descriptors, property/event bindings, DOM outlets, and incarna

Native PluginOtherActive
Stars
1
Forks
0
Updated
4d ago

@deepseek ai/dsh qwen mm English [中文 Qwen MM capabilities as an installable DSH profile bundle. The package keeps the Qwen MM implementation small and explicit: it fetches each selected Agent Skill at a configured upstream ref, starts its MCP server through the existing DSH client in required initial discovery mode, an

Native PluginOtherActive
Stars
1
Forks
0
Updated
4d ago

zotero wave rag 面向 Zotero 论文库的 浪潮式 RAG 细节检索系统 —— DeepSeek Harness (DSH) 外部插件(纯 TypeScript,零运行时依赖, node:sqlite 直读 Zotero 库)。 在传统向量 RAG(KNN 最近邻)之上,移植并实现了 VCPToolBox "浪潮语义动力学" 的四个核心思想 (参考项目:[github.com/lioensky/VCPToolBox | [官网 vcptoolbox.com —— 本仓库按其公开文档所述算法思想 独立重新实现 ,未搬运其代码,并在 Zotero 论文库场景落地为可评测的检索系统): 1. 标签河道图传播 —— 论文为

Native PluginMemory & ContextRecent
Stars
1
Forks
0
Updated
7d ago

Robotic Harness(RH)— DeepSeek Harness 具身智能研发插件套件(Demo) 实验性 DSH 插件套件:把机器人资产、仿真、能力编排和故障证据放入同一个 Agent 工作流。 当前参考实现覆盖 MuJoCo 抓取 Demo (资产检查 → 仿真 → 故障注入 → 遥测 → 规则诊断 → 证据导出 → 报告)。 欢迎 ROS 2、CAD、视觉、控制和 VLA 开发者共同定义下一版接口。 致各位测试者与贡献者 :本项目目前处于 Demo 阶段,仅在部分本地环境(Windows + Anaconda Python 3.10 + DSH 0.1.0 rc.6)中验证过,ROS 2、CAD、真机以及其它操作系统

Developer ToolDeveloper ToolsActive
Stars
0
Forks
0
Updated
today

dsh-ramify

yanglongyun

dsh ramify DeepSeek Harness 的原生创意分支画布插件 Ramify 是一个专为 DeepSeek Harness(DSH)开发的 dsh plugin 。它把 Agent 生成的多个创作方向、可运行作品和后续修订组织成一棵实时更新的创意树,让你可以在 DSH 内直接查看、比较并继续分叉。 工作方式 1. 点击 DSH 左侧栏的 Ramify ,打开内置工作台。 2. 在 Ramify 原生输入框中输入需求并选择方案数量。 3. 插件立即创建项目并进入画布,同时把任务提交给当前 DSH 会话和模型。 4. Agent 通过 Ramify 工具把方案持续写入画布,节点和预览实时出现。 5. 点击节点右上角的发散

Native PluginOtherActive
Stars
0
Forks
0
Updated
today

dsh find skill English [中文 Bridge the [vercel labs/skills open agent skills ecosystem into [DeepSeek Harness (dsh). The plugin lets the LLM decide when a task needs a skill no existing tool or loaded skill covers: the model searches the ecosystem ( skill find ), asks the user which candidate and scope to install ( ask

SkillAgent & WorkflowActive
Stars
0
Forks
0
Updated
today

dsh-tool-git

lxj808624

dsh tool git Structured, safe Git tool family for [DeepSeek Harness ( dsh ). Coding agents reach for git constantly, but the stock runtime only offers raw bash . dsh tool git gives the model eight structured tools that run git through a shell free subprocess runner and return canonical JSON values — plus a tools/pre ex

Developer ToolDeveloper ToolsActive
Stars
0
Forks
0
Updated
today

dsh-doctor

asdf17128

dsh doctor [ Find what your [DeepSeek Harness patches silently broke. English [中文 Read only. No config, no signup, no dependencies. The problem You patch one field in cordis.patch.yml : dsh boots fine. Exit code 0. Nothing warns you. But dsh applies an id targeted patch by replacing the entry's whole config , not by me

Native PluginAgent & WorkflowActive
Stars
0
Forks
0
Updated
today

dsh co authored by dsh (DeepSeek Harness) 插件:agent 提交时自动注入 Co authored by 信息 [!NOTE] 本仓库代码完全使用 DeepSeek V4 进行规划和编码 功能 agent 直接执行 git commit 时懒安装 prepare commit msg hook,自动追加 Co Authored By: 与 Generated By: dsh trailer(不改命令,幂等) hook 安装后覆盖该仓库后续所有 commit(含脚本内间接 commit) 与仓库已有 hook 兼容:安装前备份、链式执行;会话结束自动卸载并恢复 模型身份取当前会话实际使用的模型

Developer ToolDeveloper ToolsActive
Stars
0
Forks
0
Updated
today

dsh test runner DeepSeek Harness 插件:结构化测试运行工具 test run 。 让 agent 用一次工具调用完成「改代码 → 跑测试 → 修」闭环:自动探测测试框架、执行测试、 只返回结构化摘要 (通过/失败统计 + 失败用例名称与错误信息 + 输出尾部),避免模型阅读整段原始测试输出(省 token、少一轮)。 功能 能力 说明 框架自动探测 package.json 的 vitest/jest 依赖 → vitest / jest ; scripts.test → npm test ; pyproject.toml / pytest.ini / conftest.py → pytest ; t

Native PluginOtherActive
Stars
0
Forks
0
Updated
today

dsh client ui frosted glass [English [中文 A global frosted glass (backdrop blur) theme plugin for the dsh Web UI. It keeps the existing light/dark preference untouched and layers a translucent surface token override plus a global backdrop filter on top, giving the whole UI an iOS/macOS style frosted glass look. Screensh

UI PluginWeb UIActive
Stars
0
Forks
0
Updated
today

DeepSeek Harness for VS Code VS Code native chat participant @dsh: forwards messages to DSH server, streams responses with tool calls &amp; approval buttons. Optional standalone view with session list, history, multi select. Cross project sessions, auto switch by active editor, or manual /session. Shares DSH web API, a

Developer ToolAgent & WorkflowActive
Stars
0
Forks
0
Updated
today

dsh-desktop

xiaoyuxiaoyuqwq

dsh desktop DeepSeek Harness 的桌面壳。用 Electron 内嵌 dsh web ,一键启动,像 opencode 桌面版一样使用。 特性 一键安装:自动检测 / 下载便携版 Node.js,安装 electron + dsh 一键启动:双击 start.cmd 即弹出窗口,内嵌 dsh Web UI 独立更新 dsh: update.cmd 将 @deepseek ai/dsh 升级到最新版 零系统依赖:系统 Node 版本不足时自动使用项目内的便携版 Node 快速开始 首次运行后会在 /.dsh 生成 dsh 配置(含凭据与 provider 设置)。 手动运行 环境变量 变量 说明 默认 DSH

Native PluginOtherActive
Stars
0
Forks
0
Updated
today

dsh-mdbox

Chi-hong22

dsh mdbox DeepSeek Harness (DSH) Web 输入框的 Markdown 编辑辅助插件。 Overview DSH 的输入框是一个纯文本 textarea:写列表要自己敲标记,改编号要自己数。这个插件补上几个编辑器里常见的小动作: Shift+Enter 在列表行续行(有序列表自动递增), Tab 缩进列表项,整行 显示成一条分割线。发出去的内容还是纯文本, Enter 还是发送,什么都不变。 如果你经常在对话里写清单、步骤和带缩进的提纲,会用到它。 Compatibility 在 @deepseek ai/dsh 0.1.0 rc.6(npx 部署快照)上验证过,最后验证日期 2026 08 13。 插

Native PluginOtherActive
Stars
0
Forks
0
Updated
today

delivery review plugin(DeepSeek Harness 移植版) [delivery review plugin(Claude Code 双 Agent 交付协作工作流插件)的 DeepSeek Harness 移植版 。基于 DSH 的 Cordis 插件系统,以 bundle 方式分发, 不改动 DSH 源码 ,全部能力由插件行在配置层挂载。 与 Claude 版的最大差异: 通信通道从 git notes 改为 DSH 原生子代理消息通道 ——子代理结论由最终回复承载,编排者直接解析,不再需要"代写留言 / 留言 ID 编号 / git notes 解析"整套机制。 工作流一句话 /delivery r

Native PluginAgent & WorkflowActive
Stars
0
Forks
0
Updated
today

DeepSeek Harness Desktop An unofficial desktop application for [DeepSeek Harness: the host composition boots in process inside Electron, the built Web frontend loads from the local filesystem, and every /api request plus event downlink crosses an Electron IPC bridge — no browser, no listening port, no local HTTP server

IntegrationOtherActive
Stars
0
Forks
0
Updated
today

dsh-netdoctor

TYEclipse

dsh netdoctor 🩺 Network diagnostics toolbox for [DeepSeek Harness (dsh) — six read only probes, zero runtime dependencies (Node.js built ins only). When your agent needs to answer "why can't I reach this server?" , "is the port open?" , "when does this certificate expire?" or "what does the public DNS actually return?

Native PluginOtherActive
Stars
0
Forks
0
Updated
today

Black Whale Lab · 黑鲸实验室 夕小瑶 × DeepSeek Harness:让真实 DSH Web 主画布透出黑鲸与小瑶的专业实验室皮肤。 English · 安装 · 原理 · 反馈问题 它不是一张盖在界面上的壁纸 Black Whale Lab 是一个真实的 DeepSeek Harness Web 客户端插件。它通过 DSH 的 profile 与 Cordis 插件加载器进入官方 Web 应用,保留原生会话、模型、工具、沙箱、权限和设置能力,只接管浏览器表现层。 背景透传 :处理 DSH 嵌套的两层基础画布,让鲸鱼与小瑶真正进入主工作区。 局部承载 :侧栏、输入卡、菜单和弹窗仍保持可靠底色,文字不会落进复杂

UI PluginWeb UIActive
Stars
0
Forks
0
Updated
today

dsh-chrome

YJSoooooo

dsh chrome 让 [DeepSeek Harness 直接使用你已经登录的 Chrome。 dsh chrome 是一个面向 DeepSeek Harness 的 Chrome 控制插件。它把 chrome repl 工具、 control chrome Skill、通用审批和 /chrome 管理命令打包成可安装的 DSH Bundle,让 Agent 能在用户授权后复用真实 Chrome Profile 中的登录态、标签页和扩展环境。 适合这些任务:操作登录后的后台、复用当前网页、检查页面状态、点击和输入、截图、上传文件、验证 Web UI,以及读取虚拟列表或无限滚动内容。 [!IMPORTANT] 本项目是非官方社区插

IntegrationOtherActive
Stars
0
Forks
0
Updated
today

DSH Verification Receipt [中文 DSH Verification Receipt is a small, passive Profile Bundle for [DeepSeek Harness. After each durable turn/end , it appends one privacy minimal, heuristic execution summary to a local JSONL file. It records execution traces, not semantic correctness. A receipt shows only that DSH logged too

Native PluginAgent & WorkflowActive
Stars
0
Forks
0
Updated
today

dsh-auto-compact

wangxiang0605qvq

dsh auto compact — DeepSeek Harness 自动压缩插件 Auto Compaction Plugin 让模型可以主动调度 DeepSeek Harness 会话上下文的自动压缩。注册模型工具 compact now :模型在回合中请求压缩当前会话历史,插件在 回合结束后(agent 空闲时) 自动执行压缩,并写入会话日志。 Allows the model to schedule automatic compaction of its session context. Registers the compact now tool: when called, the plugin runs compact

Native PluginMemory & ContextActive
Stars
0
Forks
0
Updated
today

DSH Telemetry Redactor English [中文 dsh telemetry redactor is a minimal DeepSeek Harness Profile Bundle that redacts sensitive values from session telemetry before a backend receives them. It mounts on the official session telemetry/record waterfall, calls next() so other deployment rules still compose, and returns a ne

Native PluginAgent & WorkflowActive
Stars
0
Forks
0
Updated
today

dshx

why913

dshx English [中文 The missing companion CLI for [DeepSeek Harness ( dsh ). Manage MCP servers with one command — with a dry run connection check before anything is written, secret safe config output, and one shot migration from your existing Claude Code / Codex setup. Ships with a SKILL.md so the dsh agent itself knows

IntegrationIntegrationsActive
Stars
0
Forks
0
Updated
today

dsh-deepseek-balance

wangxiang0605qvq

dsh deepseek balance — DeepSeek 余额插件 DeepSeek Balance Plugin DeepSeek Harness(DSH)余额插件:在 Web 界面侧边栏实时显示 DeepSeek API 账户余额,并注册一个可供模型调用的 deepseek balance 工具。 功能 模型工具 deepseek balance :宿主端注册,模型可直接调用查询余额,返回账户可用状态与各币种的总/充值/赠送余额,并渲染为中文文本。 侧边栏余额胶囊 :显示在侧边栏底部( sidebar.footer.action 槽位),绿色/红色状态圆点 + 金额;挂载时查询一次,之后每 60 秒自动刷新,点击立即刷新;

UI PluginWeb UIActive
Stars
0
Forks
0
Updated
today

dsh-crosstalk

Jesse-njx

dsh crosstalk Cross session messaging for DSH. Any session on the machine can list and message any other — Claude Code style horizontal messaging, no daemon. dsh crosstalk is a DeepSeek Harness bundle. Every session running the bundle publishes a heartbeat to a local registry under /.dsh/crosstalk/ (files + atomic rena

UI PluginWeb UIActive
Stars
0
Forks
0
Updated
today

dsh-polyglot

Jesse-njx

dsh polyglot The model switch for DSH. Point DeepSeek Harness at any OpenAI compatible endpoint — with curated presets for free and cheap DeepSeek providers and automatic fallback when a free tier rate limits you. What claude code router is to Claude Code, dsh polyglot is to DSH — except DSH's ctx.llm is a sanctioned e

Native PluginMemory & ContextActive
Stars
0
Forks
0
Updated
today

RemoteOps

jark006

🛰️ RemoteOps RemoteOps 是一个面向远程系统维护和嵌入式 Linux 开发的 MCP 工具。 在 PC 端部署 remote ops proxy 并配置 MCP,远端设备部署 remote ops agent ,则 PC 端的 Claude Code / Codex 即可远程控制远端设备。 🚀 快速上手 到 [Release 里下载最新的 PC 端 remote ops proxy 可执行文件,再丢到环境变量的某个目录里。再下载被控端的 remote ops agent 可执行文件,丢到开发板或需要被控制的系统。 ⚠️ 这些可执行文件都带了目标平台的名称后缀,要么重命名将其移除,要么在下面配置的时候使用完整文

IntegrationAgent & WorkflowActive
Stars
0
Forks
0
Updated
2d ago

marketplace

cogine-ai

Cogine AI Marketplace A curated internal marketplace of role based skills for Codex and Claude Code. Install the Marketplace Codex (recommended) Then open the Codex App's Plugins page, choose Cogine AI , and install only the role plugins you want. If the Marketplace does not appear immediately, restart Codex once. Clau

Native PluginOtherRecent
Stars
0
Forks
0
Updated
16d ago

git-skills

lispking

🌿 Git Skills A powerful Claude Code Git assistant skill that provides intelligent branch management, commit message conventions, workflow assistance, and code review guidance. Features Feature Description 🌱 Smart Branch Management Auto suggest branch naming conventions, quick create/switch/cleanup branches ✍️ Expert

UI PluginWeb UILow activity
Stars
0
Forks
0
Updated
4mo ago