返回目录
其他 插件

dsh-task-progress

chen8923/dsh-task-progress

Live progress for long-running DSH tasks: scripts report structured progress, the Web UI shows it in a floating overlay, a sidebar tab, and a settings page.

Stars
0
Forks
0
Issues
1
更新
1 天前

PROJECT TOPICS

项目标签

INSTALL REFERENCE

安装参考

未验证
dsh plugin --profile web add github:chen8923/dsh-task-progress

该命令指向仓库当前默认分支;尚无绑定当前 commit 的完整验证结果。

PROJECT README

README

dsh-task-progress

Live progress for long-running tasks in DeepSeek Harness. A script reports structured progress to a file; the Web UI shows it in a floating overlay and a right-sidebar tab — no polling the agent, no waiting for the command to finish.

Version 0.1.0 · MIT · 中文 · Changelog

┌──────────────────────────────────────┐
│ ⟳ 2 tasks running                    │   ← floating pill, appears only while
└──────────────────────────────────────┘     something is running
┌──────────────────────────────────────┐
│ Long-task progress      2 running · 1│
│ ██████████░░░░░░░░░░  52%  build     │   ← click the pill, or open the
│ linking objects                      │     "Task progress" sidebar tab
│ 12m04s elapsed · 5/9 files · ~11m left│
└──────────────────────────────────────┘

Why this exists

DSH's pwsh/bash tools are not streaming: a foreground command's output appears only when it finishes, and a background job's output lives behind the model's job_output cursor. The session-header job list shows status, but not a single line of output. So a ten-minute build is a black box to the human watching the GUI.

This plugin gives long tasks a second, purpose-built channel that is theirs to write and the human's to read.

Install

# from npm — one command, which installs the plugin and registers it in the profile
dsh plugin --profile web add dsh-task-progress

# from git, if you would rather install the repository itself
dsh plugin --profile web add github:chen8923/dsh-task-progress

# from a local checkout of this repository (see Development)
./tools/rebuild.ps1 -Profile web -Checkout <path-to-dsh-checkout>

DSH mounts a profile bundle at startup, so restart DSH afterwards. The plugin requires the Web profile (webServer, connection, shellEnv, and the right sidebar); in a composition without them it stays unloaded and changes nothing.

The repository and the npm package share one name, so dsh plugin add dsh-task-progress cannot resolve to somebody else's package — there is no discovery-name/install-name gap to get wrong here. The git install is also one command with nothing to allow: the built plugin is committed, so there is no build step for pnpm to gate.

Compatibility

DSH Built and verified against @deepseek-ai/dsh 0.1.5-rc.2 (commit 0e77055), Web profile.
Node The plugin runs on Node 20+ (engines). The suite needs Node 22.18+ — it executes the TypeScript sources directly through type stripping.
DSH seams used webServer, connection, shellEnv, settings, systemPrompt, slots, sidebarRightTabs, locale, settingsScope. Every one is optional at the call site: a composition missing a seam loses that one surface and nothing else.
Dependencies None at runtime. The host half imports Node built-ins; the browser half ships everything it owns and treats react as a platform external.
Conflicts It claims no path another plugin owns. It adds one key to shell.overlay, one right-sidebar tab and one settings card — the same additive registration the shipped plugins use — plus its own route, settings namespace and prompt section, all named task-progress.

Access and footprint

Installing a DSH plugin is not a sandboxed act — the plugin runs in the DSH process, with that process's privileges. So here is the entire footprint, before you install rather than after. This is the same table SECURITY.md commits to, and a mismatch between it and the code is itself a security report.

Surface Exactly what happens
Files read <root>/.dsh-progress/<session-id>/<task>.jsonl, tail-only (256 KiB per file by default). <root> is a workspace directory a shell call handed the plugin, plus any absolute roots you configure. Nothing else is opened.
Files created <workspace>/.dsh-progress/<session-id>/, on a session's first shell call. The settings card writes that namespace's user layer through DSH's own settings service.
Shell environment Every shell call gains DSH_PROGRESS_DIR and DSH_PROGRESS_CLI.
Network None. No outbound request, no telemetry, no update check, no child process.
HTTP One route, GET/HEAD /plugins/task-progress/state, fenced by DSH's own connection.requestRejection before it reads anything, answering for exactly one session at a time, with no filesystem path in the response.
Model context One static system-prompt section, beside DSH's background-job guidance.
Tools None. The tool catalogue is untouched — so, unlike most plugins, this one does not push new tool descriptions into the cached prefix, and nothing it does at runtime changes the prompt. It costs the cache one short section, once.
UI One overlay entry, one right-sidebar tab, one settings card — additive keys in shared list slots.
Memory Bounded by configuration: maxTasks tasks per document, messagesPerTask messages per task, fileTailBytes per file, and a 64-directory LRU of known progress directories.

Report a vulnerability through private vulnerability reporting rather than a public issue.

Use

Inside a DSH shell call the plugin hands the script its directory:

# PowerShell — one append per event
$line = '{"v":1,"task":"build","state":"running","pct":42,"msg":"linking"}'
[System.IO.File]::AppendAllText(
  (Join-Path $env:DSH_PROGRESS_DIR 'build.jsonl'), $line + "`n",
  [System.Text.UTF8Encoding]::new($false))
# bash
printf '{"v":1,"task":"build","pct":42,"msg":"linking"}\n' >> "$DSH_PROGRESS_DIR/build.jsonl"
# Python (any language works — it is just a file)
import json, os
path = os.path.join(os.environ["DSH_PROGRESS_DIR"], "build.jsonl")
with open(path, "a", encoding="utf-8") as handle:
    handle.write(json.dumps({"v": 1, "task": "build", "pct": 42, "msg": "linking"}) + "\n")

Or let the bundled helper do the quoting:

node "$DSH_PROGRESS_CLI" emit --task build --pct 42 --msg "linking"
node "$DSH_PROGRESS_CLI" done --task build --msg "shipped"
node "$DSH_PROGRESS_CLI" list          # print what the directory currently says

Try it with no setup at all:

pwsh ./examples/simulate.ps1 -Task demo -Steps 30 -DelayMs 500

Then open the Task progress tab in the right sidebar (or click the floating pill once it appears).

Out of the box

Installing the plugin is enough for the agent to know the convention: the host half contributes a short section to the system prompt, right where the background-jobs guidance already is, so the model arranges progress reporting for long commands on its own. There is nothing to configure and no AGENTS.md edit — a feature that only works after you edit your own instructions is not one you can install.

If you want it stronger, or you run a composition without that prompt seam, the same instruction can live in your workspace AGENTS.md:

## Long-running tasks
For any command expected to run longer than ~30s, report progress from inside the
script to `$DSH_PROGRESS_DIR/<task>.jsonl` (one JSON line per event, see the
dsh-task-progress protocol), or use
`node "$env:DSH_PROGRESS_CLI" emit --task <id> --pct N --msg "..."`.
Never read the progress file back — it is for the human.

When nothing appears

The panel shows what scripts report; it never reads a running job's output. A background job started by a script that does not report is therefore invisible here, and existing jobs cannot be retrofitted — but the sidebar tab says so instead of looking broken: with jobs live and nothing reported, its empty state names the count.

Settings

The plugin registers one settings namespace, so its knobs are editable where every plugin's are: Settings → Plugins → Plugin configuration → Task progress.

Field Default Meaning
Scan interval (ms) 1000 How often the Host half re-reads changed progress files.
Poll interval (ms) 2000 How often the browser asks for progress.
Keep finished for (ms) 1800000 How long a finished task stays listed.
Messages per task 30 Recent messages kept per task.
Max tasks 200 Cap on tasks in one state document.
File tail bytes 262144 Bytes read from the tail of one progress file.
Extra roots Absolute paths whose .dsh-progress is scanned too.

Saving writes the namespace's user layer into $DSH_HOME/settings.yaml; pressing Reset (or emptying a field) removes the override, so the value falls back to the plugin row's config and then to the schema default. Changes apply live: a new scan interval re-arms the Host loops on their next tick, and the state document's pollMs follows the value the browser should use.

dirName is deliberately absent from the panel — it is part of every path already written, so it stays a composition-level setting on the plugin row.

Design

Three layers, each independently replaceable — the point is that neither a producer nor the UI knows about the other, and neither knows about DSH internals.

Layer What it is Why it is shaped that way
Protocol (docs/PROTOCOL.md) Append-only JSONL, one file per task Any language, no IPC, no ports, no auth, survives restarts. Works with the plugin uninstalled — the files are just files.
Host half ctx.shellEnv contributor + directory poll + one HTTP route + a system-prompt section Uses only public DSH seams (webServer, connection, shellEnv, settings, systemPrompt), and never touches the job registry.
Browser half One polling store, two panels (shell.overlay + a sidebar tab), and a settings card The panels read the same snapshot and the card reads its own namespace scope, so adding or removing a surface never touches the data path.

Why the plugin does not read job output. ctx.jobs.read() consumes a single-consumer cursor that belongs to the model's job_output tool; a browser path reading it would silently steal bytes the model can then never see (DSH pins that as a tested invariant). Progress here is therefore something the script chooses to report, which is what makes this plugin safe to install alongside anything else.

Why polling instead of push. The data is a couple of kilobytes of JSON on localhost, and a poll loop is the one design that cannot desynchronize: every reader sees the same last-wins document, a missed tick costs one interval, and there is no reconnect logic to get wrong. The interval comes from the Host half's configuration.

Zero dependencies. The host half imports Node built-ins only; the browser half bundles everything it owns and treats react as a platform external. That extends to the settings schema: ctx.settings.register takes a schemastery schema, and this plugin supplies a minimal compatible node — callable for resolution, toJSON() in schemastery's reference-graph form, and walkable by the settings redactor — instead of depending on a package that a profile install cannot resolve. Its own browser card passes a decoder so it never has to rehydrate a schema envelope at all.

What it deliberately does not do

  • No history. Progress is live state, not a log; finished tasks age out.
  • No cancel button. Stopping a job is the model's job_kill (a human-initiated interrupt needs a delivery-semantics decision this plugin does not own).
  • No remote producers. Everything is local files in the workspace the session already writes to.
  • No session lookup. Directories are learned from the shell calls that were handed them, plus configured roots — so the plugin never revives a session or reads a path the browser suggested.
  • No cross-session reads. The state endpoint answers for exactly one session per request and puts no filesystem path on the wire. DSH's web login fences the whole instance rather than a session, so an endpoint that answered with everything the process knows would hand any authenticated caller every other session's task names and messages.

Development

npm test          # 88 tests, one process (works in restricted sandboxes)
npm run test:runner   # the same suite through node --test
npm run build         # requires tsdown

Source layout:

src/protocol.ts        the shared contract (pure, bundled into both halves)
src/host/              settings namespace, store, shell-environment contributor, HTTP route, prompt section, entry
src/client/            polling store, formatting, settings form, React components, slots, styles
bin/dsh-progress.mjs   the dependency-free producer CLI
docs/PROTOCOL.md       the file contract and every configuration key
test/                  twelve suites: protocol, store, formatting, host wiring,
                       settings, settings form, prompt section, session hook,
                       client store, CLI, bundle, release
tools/                 test entry and the build/pack/install script

lib/ is committed, and that is load-bearing. A git-hosted package that has to build needs pnpm's build-script allowlist, whose key contains the exact commit — so the install would take two steps and the second one would change on every push. Shipping the build makes it one command, at the cost of discipline: after any source change, run npm run build and commit lib/ in the same commit. test/bundle.test.ts fails if the build is missing, is not a loader bundle, or no longer carries what the sources define. prepublishOnly still builds for npm publish. The suites run on Node 22.18+ (they execute the TypeScript sources directly through type stripping), while the plugin itself runs on Node 20+.

Releasing

npm test                                  # 88 checks, one process
git push && git tag v0.1.1 && git push origin v0.1.1   # CI publishes it, with provenance
npm publish                               # manual fallback: builds first, then publishes

test/release.test.ts fails if the version in package.json is not also stated in both READMEs and the changelog, if a documented example is missing from files, or if the repository links disagree with the install instructions — so the four places a version or a URL appears cannot drift apart.

Tagging publishes through .github/workflows/publish.yml, once the trusted publisher is configured on npm (repository chen8923/dsh-task-progress, workflow publish.yml). That path holds no token, and it attaches a signed provenance attestation tying the tarball to the commit. A hand-run npm publish keeps working for as long as npm lets a 2FA-bypassing token publish — it retires that in January 2027 — but it can never carry provenance.

License

MIT

CLASSIFICATION EVIDENCE

分类依据

项目类型插件
功能分类其他
规则置信度

系统优先读取 GitHub Topics,再与站内分类词典和词根规则比对。当前命中: 无有效分类标签。