Evidence snapshot reviewed Sep 16, 2026GitHub checked Aug 21, 2026
Evidence-verifiedPlugin BundlePlugin Discovery & ManagementWeb Profile

DSH Pub Plugin Directory

Browse a bilingual, source-backed directory of DeepSeek Harness plugins from Settings.

At a glance

What it does

Browse a bilingual, source-backed directory of DeepSeek Harness plugins from Settings.

Use cases
Plugin Discovery & ManagementPlugin DiscoveryPlugin ManagementSearch
Works with
Deepseek HarnessWeb
Compatibility

Web Profile
Not declared in supplied evidence

Trust & status

Evidence-verified
Checked Sep 13, 2026, 1:53 PM UTC

Code-evidenced contributions

What it adds to DSH

Web UIDSH Pub Plugin Directory

A read-only bilingual directory in DeepSeek Harness Settings for searching and filtering public plugins and bundles.

Mechanism evidence

Before you choose it

This web-client bundle adds the DSH Pub visual directory to DeepSeek Harness Settings. It presents the public plugin and bundle catalog with bilingual search, capability topics, provenance, runtime, distribution, and type filters, plus deterministic sorting. The directory is described as read-only and does not load third-party code.

Best for

DeepSeek Harness users who want to discover and compare public plugins and bundles before choosing what to install.

Common tasks

  • Search the public plugin catalog in English or Chinese.
  • Filter entries by capability, provenance, runtime, distribution, or artifact type.
  • Compare catalog entries inside Harness Settings without running the listed third-party plugins.

Permissions and data

The supplied evidence describes a read-only web directory bundled into DSH Settings.

Permissions
  • Injects into the DSH web client through declared runtime, locale, and Settings UI integrations.
Data handling
  • The directory is stated to bundle a public plugin and bundle surface; no external data collection behavior is established for this bundle.

Limitations

  • No npm package version was found in the supplied distribution evidence; use the verified commit-pinned Git bundle path.
  • No runtime installation or compatibility smoke test is supplied.
  • The directory catalogs entries; listing is not a security audit, runtime test, publisher verification, or endorsement.

What DSHub checked

  • The package manifest and Cordis patch form a verified DSH bundle structure at the pinned commit.
  • The bundle targets the web client and declares DSH runtime, locale, and Settings UI integrations.
  • The repository describes the directory as read-only, bilingual, searchable, and filterable.

What DSHub did not check

  • Successful installation in a specific Harness environment was not provided.
  • A Harness version range was not declared in supplied evidence.
  • Network, telemetry, and runtime behavior of the installed directory were not executed.

Pinned install

Install DSH Pub Plugin Directory

This plugin bundle does not have a DSH Plugin install action. Use its source documentation for the delivery method.

Visit the source project

Maintainer source

Project README

View at commit e11cc97
Maintainer-authored contentCaptured from README.md on Sep 13, 2026. The text and repository-relative media are fixed to commit e11cc97e2e39 with content hash 2e5e34d14e4e; provider-hosted badges may update independently. README commands are upstream documentation; the DSHub copy action above is the verified, version-pinned install.

DSH Pub

dsh.pub is the bilingual, source-backed registry for the DeepSeek Harness plugin ecosystem. It catalogs the current built-in modules, explains runtime and UI capabilities, and separates atomic modules, built-in profile layers, and community bundles pinned to public source.

DeepSeek Harness source
        │ pinned catalog sync
        ▼
219 source packages ──► 170 loadable plugins ──► Astro pages in English + Chinese
        │
        └── 3 manifest-declared bundles ──► built-in profile activation layers

Browser submission ──► Turnstile ──► Worker + D1 ──► Cloudflare Workflow
                                                        │
                                                        └─► GitHub App ──► submission PR
                                                                                  │
                                      Cloudflare Workers ◄── main deploy ◄── automatic merge
        │
        └── community Git bundle ──► dshpub CLI ──► native dsh plugin add
                                                                └─► D1 completed-install count

Workspace

apps/
├── web/       Astro static registry
├── server/    Cloudflare Worker install API and locale routing
├── cli/       GitHub bundle installer (`dshpub`)
└── dsh-plugin/ In-DSH bilingual visual directory
packages/
└── catalog/   generated Harness snapshot and typed access
migrations/    D1 event and aggregate schema

Local development

npm install
npm run build:og
npm run build
npm run dev --workspace @dsh-pub/web

To enable Google Analytics in a production build, provide the public GA4 Measurement ID:

PUBLIC_GA_MEASUREMENT_ID=G-XXXXXXXXXX npm run build

To enable Google AdSense account tags and optional manual units:

PUBLIC_ADSENSE_CLIENT_ID=ca-pub-XXXXXXXXXXXXXXXX \
PUBLIC_ADSENSE_SLOT_DETAIL=1234567890 \
PUBLIC_ADSENSE_SLOT_CATALOG=0987654321 \
npm run build

When PUBLIC_ADSENSE_CLIENT_ID is set, every page emits the AdSense account meta tag and loads adsbygoogle.js. Manual units render only when the matching slot env var is set: detail pages use PUBLIC_ADSENSE_SLOT_DETAIL, and the catalog uses PUBLIC_ADSENSE_SLOT_CATALOG. The submission flow never hosts an ad unit. apps/web/public/ads.txt must stay aligned with the publisher ID. Auto ads can be turned on later in the AdSense console once the site is approved; prefer the manual slots above so discovery pages keep a restrained layout.

The build emits a bilingual sitemap index at /sitemap-index.xml, crawler policy at /robots.txt, and canonical, hreflang, Open Graph, Twitter Card, and JSON-LD metadata on every indexable page.

The Web app runs at http://127.0.0.1:4321. To run the complete Worker boundary locally:

npx wrangler d1 migrations apply dsh-pub --local
npx wrangler dev --local --port 8787

Catalog sync

The generated catalog is pinned to a known DeepSeek Harness commit and refuses a dirty source checkout.

node scripts/sync-harness-catalog.mjs

Override the default neighboring checkout only when intentionally verifying another local path:

node scripts/sync-harness-catalog.mjs --source /path/to/deepseek-harness

CLI

npx dshpub add owner/repo \
  --path packages/my-bundle \
  --profile web

The command resolves a public GitHub ref to an exact commit, validates that the selected package declares dsh.bundle.patch, removes the validation checkout, and passes a persistent commit-pinned Git spec to dsh plugin --profile … add …. Only a successful native install reports completion. Telemetry is best-effort and can be disabled with DO_NOT_TRACK=1 or DISABLE_TELEMETRY=1.

The current three Harness bundles are built-in monorepo profile layers, not standalone Git packages: their workspace: dependencies require the Harness workspace. The catalog therefore shows them as built-in profile layers without an install command or install count.

DSH plugin directory

The repository also ships @dsh-pub/plugin-directory, a read-only visual catalog inside DSH Settings. It bundles the same public plugin and bundle surface as the site, supports bilingual search, eight capability topics, provenance/runtime/distribution/type filters, and deterministic sorting without loading third-party code.

npx dshpub add dsh-pub/dsh-pub --path apps/dsh-plugin --profile web

See apps/dsh-plugin/README.md for its update and verification flow.

Submit a plugin

Use the bilingual submission page at dsh.pub/submit. The browser sends one public GitHub repository URL and a Turnstile token to the Worker. After verification, the Worker stores a submission job in D1, starts a Cloudflare Workflow, and immediately returns a status URL. The page polls that URL while the Workflow uses the repository-scoped dsh.pub GitHub App to create or find the corresponding submissions/*.json branch and Pull Request. The user does not need to fork the repository or click GitHub's Propose changes action.

The trusted GitHub Actions submission workflow reads the submitted file from the exact Pull Request commit without checking out or executing untrusted plugin code. It resolves the plugin repository's current public default-branch commit, validates its committed bundle contract, and runs the complete dsh.pub quality gates. A passing Pull Request is merged with a merge commit, then a trusted main workflow regenerates and commits the catalog. The existing Cloudflare Workers Git integration deploys main automatically. Anyone may nominate a public repository; the submitter is not treated as a verified publisher, and an existing repository/package-path coordinate cannot be overwritten through this flow.

The web submission page also generates Markdown and HTML badge snippets. The live badge reports not listed until the registry commit is deployed, then changes to listed (with a short cache). The Pull Request and the checked-in submission file provide the public audit trail.

Repository automation uses the same GitHub App through two narrowly scoped tokens. Pull Request base-drift recovery requests only pull_requests: write; trusted catalog integration requests only contents: write, and only after lint, tests, E2E, and build have passed. Configure the repository variable DSH_PUB_APP_CLIENT_ID and repository secret DSH_PUB_APP_PRIVATE_KEY_PKCS8 for those workflows. The App must be installed only on dsh-pub/dsh-pub with Contents and Pull requests read and write access. These Actions names intentionally differ from the Worker's GITHUB_APP_* bindings because GitHub reserves the GITHUB_ prefix. Pull Request validation never receives the App secret or token.

Protect main with two active repository rulesets. main-pr-gate requires a Pull Request and lists only the dsh.pub GitHub App Integration as an always bypass actor, allowing trusted catalog jobs to make audited fast-forward commits. main-ref-integrity has no bypass actors and blocks deletion and non-fast-forward updates. Keeping these controls separate prevents the App, repository administrators, and GitHub Actions from bypassing deletion or force-push protection; do not add an administrator role or the GitHub Actions Integration to either bypass list.

The dsh-plugin GitHub topic is synchronized every day at 01:00 Asia/Shanghai. The workflow takes a cutoff snapshot, pins each public default-branch commit, validates root bundle contracts without executing third-party code, updates the catalog and installable registry, and records accepted and rejected results in packages/catalog/src/topic-analysis.generated.json. Repositories added or updated after the cutoff are deferred to the next run. If the Topic connection still drifts after three complete pagination attempts, the analysis records unresolved coverage and retains unseen records from the prior snapshot instead of treating them as removed. Listing proves only that a pinned public bundle contract and required committed files passed automated checks; it is not a human review, security audit, runtime smoke test, quality score, publisher identity check, or official endorsement. Older records labeled community-reviewed retain their historical provenance.

The public metric means CLI-reported completed installs. It is not unique users, GitHub clone traffic, active usage, or installs performed directly through Git or the native DSH command.

The public installer is the dshpub package on npm. Run it with npx dshpub.

Quality gates

npm run lint
npm run test
npx playwright install chromium
npm run e2e
npm run build

The one-time Playwright install makes the catalog filter E2E independent of a machine's system browser. CI installs the same Chromium revision with its required OS dependencies.

npm run eval remains separate because it may call real models and consume credentials.

Cloudflare deployment

The Worker serves apps/web/dist as static assets and runs first only for / and /api/*. Plugin source and documentation stay in GitHub. D1 stores install event counters and submission job state; it never stores the GitHub App private key, installation tokens, or Workflow step credentials. Production Workers Builds watches every path on dsh-pub/dsh-pub main, runs npm run build, and deploys the static assets, HTTP API, D1 binding, and PluginSubmissionWorkflow in one Worker.

Runtime bindings required by plugin submission are:

Binding Purpose
TURNSTILE_SITE_KEY Public site key returned to the submission page
TURNSTILE_SECRET_KEY Server-side Turnstile verification secret
GITHUB_APP_CLIENT_ID GitHub App client ID used to sign an App JWT
GITHUB_APP_INSTALLATION_ID Installation restricted to the dsh.pub repository
GITHUB_APP_PRIVATE_KEY_PKCS8 PKCS#8 PEM private key used only inside the Worker
GITHUB_TARGET_REPOSITORY_ID Numeric repository ID allowed when creating installation tokens
PLUGIN_SUBMISSION_WORKFLOW Wrangler Workflow binding; configured in wrangler.jsonc
DB Existing D1 binding; configured in wrangler.jsonc

Keep deployment values out of source control. Configure the six string bindings above through Cloudflare secrets (the site key and numeric identifiers are not confidential, but treating the complete runtime set uniformly avoids environment drift):

npm run build
npx wrangler d1 migrations apply DB --remote
npx wrangler secret put TURNSTILE_SITE_KEY
npx wrangler secret put TURNSTILE_SECRET_KEY
npx wrangler secret put GITHUB_APP_CLIENT_ID
npx wrangler secret put GITHUB_APP_INSTALLATION_ID
npx wrangler secret put GITHUB_APP_PRIVATE_KEY_PKCS8
npx wrangler secret put GITHUB_TARGET_REPOSITORY_ID
npx wrangler deploy

This order is intentional: build first, migrate the production D1 database, configure runtime secrets, then deploy the Worker version that depends on the new schema and bindings. For local development, put non-production values in an ignored .dev.vars file. Never place a GitHub App private key or installation token in D1, a Workflow event payload, or a persisted Workflow step result.

See product decisions, architecture, and research evidence.

License

DSH Pub is available under the MIT License. Generated catalog documentation derived from DeepSeek Harness retains its upstream notice in THIRD_PARTY_NOTICES.md.

Operate deliberately

Install and manage

Prerequisites and target Profile

Target Web Profile

Delivery Dsh Bundle Git — dsh-pub/dsh-pub#e11cc97e2e39031ea6776b47e91afd1765e93e2e

Verify, update, and remove

Show lifecycle commands
Verify
dsh plugin --profile web list

Compatibility and access

DeepSeek Harness web client bundle with optional peer integrations Not declared in supplied evidence

Review compatibility evidence

Risk facts

Lifecycle Script

Package declares a prepack build script

Evidence
Evidence and editorial reviewManifest, Bundle patch, distribution and freshness

Immutable evidence

Review status and source activity

AI reviewed

Install through the immutable Git source rather than relying on an unavailable npm distribution record.

AI reviewed Sep 13, 2026, 1:54 PM UTCGitHub facts last checked Sep 13, 2026, 1:54 PM UTC

No material source change has been recorded since this evidence baseline.

Next step

Follow the Plugin installation workflow

Subscribe to material changes for DSH Pub Plugin Directory