DSH HUB
HomePlugin StorePlugin PacksCommunityRankingsResourcesPublish Guide
Plugin source
Back to catalog

pengkodam /

dsh-lab

Topic repository only

Production-grade DeepSeek Harness plugin laboratory, featuring read-only Git worktree intelligence.

★ 0 Stars0 Forks0 IssuesN/A Community rating0 Confirmed installs
View on GitHub
READMESource: main@af29bd59

dsh-lab

CI Release License

A production-grade laboratory for extending DeepSeek Harness without forking its core.

Harness is built around the idea that everything is a plugin. This repository explores what a trustworthy out-of-tree plugin should look like: narrow authority, machine-readable contracts, explicit safety boundaries, packed-artifact acceptance, and cross-platform release evidence.

The first stable release is dsh-worktree, a read-only worktree-intelligence plugin.

dsh-worktree 1.0.0

dsh-worktree gives a Harness agent structured visibility across every Git worktree associated with the repository from which it was launched.

Tool What it answers
git_worktree_list Which worktrees exist, and which one is primary?
git_worktree_status Which worktrees have staged, unstaged, untracked, conflicted, or locally known upstream work?
git_worktree_compare How does each linked HEAD differ from the primary worktree's captured HEAD?

All three tools take zero arguments. The model cannot supply a path, revision, executable, or Git option. The plugin never fetches, checks out, stages, commits, merges, rebases, or deletes.

60-second demonstration

Prerequisites: Node 22.19+ or 24+, Git, GitHub CLI, and a compatible dsh installation. Version 1.0.0 was acceptance-tested with DeepSeek Harness 0.1.0-rc.6.

git clone https://github.com/pengkodam/dsh-lab.git
cd dsh-lab

gh release download v1.0.0 --repo pengkodam/dsh-lab --pattern dsh-worktree-1.0.0.tgz
dsh plugin --profile worktree-demo add ./dsh-worktree-1.0.0.tgz
dsh plugin --profile worktree-demo add @deepseek-ai/dsh-headless@0.1.0-rc.6
dsh --profile worktree-demo --dump-config

node scripts/create-demo-fixture.mjs .acceptance-demo-readme
cd .acceptance-demo-readme/main
dsh --profile worktree-demo "Inspect every worktree in this repository. Tell me which ones have uncommitted work, how their committed changes differ from the primary worktree, and what I should review first."

The final command requires DEEPSEEK_API_KEY to already be set in the environment. Its prompt is:

Inspect every worktree in this repository. Tell me which ones have uncommitted work, how their committed changes differ from the primary worktree, and what I should review first.

The generated fixture has deterministic facts that make tool selection easy to verify:

  • two worktrees: primary main and linked feature/demo;
  • one untracked file in main;
  • a clean feature/demo worktree;
  • feature/demo one commit ahead of the primary HEAD; and
  • one committed file, feature.txt, in that comparison.

An evidence-backed answer should report those facts, distinguish uncommitted state from committed history, and avoid claiming the branch is safe to merge.

How it fits

flowchart LR
    U["User asks about all worktrees"] --> H["DeepSeek Harness agent"]
    H --> P["dsh-worktree"]
    P --> L["list"]
    P --> S["status"]
    P --> C["compare"]
    L --> G["Fixed read-only Git argv"]
    S --> G
    C --> G
    G --> F["Validated structured facts"]
    F --> H

The plugin is deliberately smaller than the host. Harness owns the model loop, tool registry, profiles, sessions, and interaction surface; dsh-worktree contributes one bounded repository capability through the public composition boundary.

Safety and proof

  • Git is invoked directly with fixed argument arrays and no shell.
  • Every process receives LC_ALL=C and GIT_OPTIONAL_LOCKS=0.
  • Execution is cancellable, deadline-bound, and buffer-limited.
  • Machine-format output is fully validated before canonical data is returned.
  • Diagnostics are sanitized and capped.
  • Real-repository tests compare refs, worktree files, and index bytes before and after inspection.
  • The package has no runtime or test dependencies.

Release evidence:

  • v1.0.0 release and verified tarball
  • 49-test Windows/Ubuntu CI matrix
  • packed-artifact and Harness acceptance record
  • completed release checklist

Compatibility

Component Validated version
Node.js 22.19.0, 24
Operating systems Windows, Ubuntu
DeepSeek Harness 0.1.0-rc.6
Local Git acceptance baseline 2.39.1.windows.1

DeepSeek Harness is in developer preview and explicitly permits compatibility-breaking changes. Re-run the packed installation and live acceptance gates after every Harness upgrade.

Repository map

  • plugins/dsh-worktree — package, runtime, tests, and detailed usage
  • V1_PRD.md — product and demonstration contract
  • V1_TECHNICAL_SPEC.md — schemas, Git operations, safety model, and test strategy
  • V1_RELEASE_CHECKLIST.md — sequenced build and release gates
  • V1_ACCEPTANCE.md — local, CI, package, and live Harness evidence
  • scripts — reproducible fixture and acceptance utilities

Local verification

cd plugins/dsh-worktree
node --test
npm pack --dry-run

License

This repository, including dsh-worktree, is available under the MIT License.

DSH HUB

A community index for DSH plugins. Not an official GitHub or DeepSeek AI product.

CommunityResourcesAPIAbout
—/ 5

No ratings yet

Manifest verification required

Commit af29bd598094

Community comments

No comments yet. Be the first to write one.