DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Omdsh Status — DSH Plugin for DeepSeek Harness
← Plugins
O

@omdsh-plugins/omdsh-status

Omdsh Status

Current project and its git state at a glance for the DeepSeek Harness web GUI: the project name with its branch and change counts, in the Work window's conversation header, left of the Session log export button

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:omdsh-plugins/omdsh-status#364b0d49c10ea49cec42182092e4dc464f46c91e
READMECompatibilityVersions

Compatibility and provenance

Omdsh Status is published as @omdsh-plugins/omdsh-status and currently resolves to version 0.2.6. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/3/2026

Versions

0.2.6stable
9/3/2026
0.2.5stable
9/3/2026
0.2.4stable
8/23/2026
Show 1 more versionCollapse versions
0.2.3stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.2.6
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/3/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in developer-tools.

Better Sidebardsh-better-sidebarDSH web plugin: a VSCode-like right sidebar (explorer / editor / terminal / git / browser), isolated per conversation session. Exposes a service for other plugins to register sidebar tabs and file viewers.Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Plugindsh-pluginA community plugin marketplace for DeepSeek Harness, built to the official plugin spec — browse, search and install 9000+ human-curated community plugins without leaving the app. · DeepSeek Harness 社区插件市场(遵循官方开发规范):9000+ 人工精选社区插件,每日更新。

README

omdsh-status

English | 中文

Which project, which branch, how much has moved — at a glance. This plugin puts the current conversation's project name and its git state in the conversation header of the DeepSeek Harness web GUI's Work window, just left of the Session log export button:

  omdsh-plugins   ⎇ main ↑1 +2 ~3 ?1    export

The project name is the title of the workspace the conversation lives in (the group heading you already read in the sidebar). Beside it: the checked-out branch, and whichever of ahead/behind, staged, modified, untracked, and conflicts are non-zero. A clean tree shows the branch alone; conflicts are the one count drawn in the alarm colour, because a row where every glyph shouts says nothing. The tooltip carries the full directory, every count in words, and why the figures are stale when a refresh failed.

A conversation that has not started yet has no header at all — the harness hides it — so the same readout holds that row's own corner from the frame's floating layer, on the same pixels, and hands them back the moment the header returns:

                                    demo-project  ⎇ main ~1 ?1    ✦  Files  Terminal
                 Into the Unknown

        📁 demo-project ⌄   ⚙ Standard mode ⌄
  ┌──────────────────────────────────────────────┐
  │ Describe what you want to build              │

What it adds

SurfaceWhere it comes from
The readout left of the Session log button in the conversation headerconversation.session.header.utilities, ui-conversation's trailing row — order: -1 keeps it left of the harness's default-order utilities
The same readout holding that row's corner on a new sessionshell.overlay, ui-layout's frame-wide floating layer — the stand-in, for the conversations whose header the harness is not drawing
GET /omdsh-status/statuswebServer, behind the same browser-trust fence as the /api gateway

There is no settings namespace. Nothing here needs a person's decision — the project name is the workspace's own title, the git counts are the working directory's own state, and the poll cadence is fixed.

How the readout is assembled

Each half reads from whoever already knows:

  • The browser derives the project name. The page already holds the live workspace and session lists: find the workspace accounting for the current session, and its title is the project. Nothing is guessed or stored — the lists move, the readout follows.
  • The host runs git. A browser cannot read .git, so the host half resolves the session's working directory and runs git --no-optional-locks -C <dir> status --porcelain=v1 --branch, then answers with the parsed counts as JSON. No path list, no diff, no branch graph ever reaches the browser — only the handful of numbers it draws — and the route sits behind the same trust check as /api.
  • A new session gets the same answer, in the same place. The harness hides the whole session header while a conversation is still blank — which is exactly when the branch is worth knowing, since you are about to say what to do in this project. So a second entry stands in for that row from the frame's floating layer: the column's top-right corner, inset by the header's own measured padding, at the same row height, so the readout does not move when the header comes and goes. It stands down the moment the header entry announces itself, so the two never show at once — and that is read off the header entry's own mount rather than off "is the conversation blank", which is ui-conversation's rule to change, not this plugin's to copy.
  • That corner is shared, and packed without a registry. omdsh-sidepanel's switches hold its outer end and omdsh-sidechat's summon icon tucks in beside them; this readout is the utility row's leftmost entry, so its stand-in measures the occupant that has already tucked itself furthest IN and goes inboard of that. The neighbour measures the opposite end, so the dependency runs one way and the row settles in a single pass. Only boxes are read — never another plugin's code, state, or identity — and an empty corner is measured as empty: the readout takes the header's own padding.
  • A chat is not a project. When a mode system is composed (@omdsh-plugins/omdsh-basemode with @omdsh-plugins/omdsh-chatmode), a conversation it classifies as a chat gets no readout and no poll: its workspace is the managed one under the harness's own home, which is a directory the harness keeps rather than one anybody chose. The rule is read from sessionModes rather than re-derived, so the readout and the mode switch cannot disagree.

The poll is kept cheap: one directory's git answer is shared across every open page for two seconds, a visible page re-asks every four seconds, background tabs ask nothing, and cold sessions resolve their directory through the cached persistence listing.

When pieces are missing

  • The directory is not in a repository, git is not installed, or the command times out. The readout shows the project name alone and the tooltip says "not a git repository". None of these are errors — "no git here" is the honest answer.
  • No conversation is selected, or it belongs to no workspace. Both entries render nothing; there is no project to name yet.
  • Chat mode. The readout renders nothing and the poll stops: a chat names no project. Switch to Work and both return.
  • No mode system is composed. Nothing is a chat, so nothing hides — the readout behaves exactly as it did before the rule existed. sessionModes is read on a restricted fiber and never injected, so its absence costs this behaviour and nothing else.
  • Code mode has replaced the conversation column with a terminal. The header goes with it, and the stand-in declines rather than taking a corner that is now the terminal's own banner. No readout beats a readout over someone else's control; switch back to Work and it returns.

Install

npx @omdsh-plugins/omdsh-plughub add omdsh-status

That is the plugin hub's installer with argv where the button was. It resolves this plugin from the collection's registry, installs it from its GitHub repository, and writes the pnpm build-allowlist entry a bare dsh plugin add github:… would leave to you — the entry carries the commit pnpm resolved, so it can be copied out of a failure and never written down in advance.

dsh plugin --profile web add @omdsh-plugins/omdsh-status is not that command yet: this package is not on npm, and pnpm answers ERR_PNPM_FETCH_404. The same install is also a button, on this plugin's card in Settings → Plugins → Plugin hub, once the hub itself is in the profile.

Or from a checkout — the form an unpublished build needs:

pnpm install && pnpm run build
dsh plugin --profile web add "$PWD"

Remove it the same way:

dsh plugin --profile web remove @omdsh-plugins/omdsh-status

Nothing here is a precondition. Every service either half injects — webServer, webRuntime, sessions on the host; slots, sessions, workspaces, locale on the page — is a harness service, and both seats register through slots.inject. The one companion service it reads, sessionModes, is reached on a restricted fiber inside apply, so a profile without a mode system boots normally and simply hides nothing. A profile with only this plugin installed starts and works: without a git repository it shows the project name alone, and without a conversation it shows nothing. Removing it takes the readout, the route, and the poll with it — the harness itself is untouched.

Commands

pnpm install
pnpm run build                                  # tsdown bundles the host and browser halves
pnpm run typecheck
pnpm run test
pnpm run harness:local <path-to-harness-checkout>   # while developing against a checkout
pnpm run harness:npm                                # back to the registry pin before committing
pnpm run check:harness-pin                          # fails while any harness dep is still linked

The pure logic (porcelain parsing, project derivation, the chat gate, polling rules, route behaviour, and the corner arithmetic the stand-in places itself by) tests under plain node; the browser-side slot registration cannot run against a published harness pin because published packages ship no sources — that half is exercised under harness:local.

tests/git.run.spec.ts is the one spec that spawns git, in a throwaway repository it creates itself. It earns the milliseconds: a parser spec cannot ask whether git accepts the command being run, and the released argv put --no-optional-locks — an option of git, not of git status — after the subcommand, so every read exited 129 and every repository read as "no git".

Known limitations

  • Both seats are borrowed. The readout lives on the conversation header's trailing row and, while that row is away, on the pixels it would occupy. Code mode replaces the whole column with a terminal and takes both with it; there the readout is simply not drawn, which degrades to nothing rather than to something wrong.
  • The stand-in lands where the row's live occupants are, not where the header's would be. The Session log export button sits between this readout and its neighbours in the drawn header, and that button has no stand-in of its own — it has nothing to export yet. So on a new session the readout sits the width of that button further right than it will once the header returns. Reserving space for a control nobody is drawing would be a guess; holding the row's height and corner is a measurement.
  • The counts are a poll, not a stream. A change shows up on the next poll, so the badge can be up to a few seconds behind the index, and a poll that fails keeps the previous figures dimmed until one succeeds.
  • "No git" is one wide net. Git not installed, a repository it refuses to touch (dubious ownership), or a git status that outlives its timeout all read as "not a git repository" — the tooltip does not distinguish them.