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.

App Updater — DSH Plugin for DeepSeek Harness
← Plugins
A

dsh-app-updater

App Updater

Sidebar button that checks whether DSH has a newer release and auto-downloads/opens the installer, with live progress and a minimizable panel.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:m1452700576/dsh-app-updater#efeb6fc1db97003e93d5d4dddae146d77cf72b8e
READMECompatibilityVersions

Compatibility and provenance

App Updater is published as dsh-app-updater and currently resolves to version 0.2.0. 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/1/2026

Versions

0.2.0stable
9/1/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
Apache-2.0
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/11/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 ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.

README

dsh-app-updater

A DSH web plugin: a sidebar button (icon only) that checks whether DSH has a newer release and, when one exists, auto-downloads the installer and opens it - with a live progress bar and a minimizable panel.

Features

  • Sidebar icon-only button (tooltip "Check DSH update"), red dot when new version found.
  • Probes known desktop-packaging repos (or your own githubRepo) for a newer release that ships a macOS installer (.dmg/.pkg/.zip).
  • Auto-downloads the installer to ~/Downloads (or downloadsDir) and runs open.
  • Live download progress (streaming bytes + percent), indeterminate bar when unknown.
  • Panel can be minimized to a floating bubble while downloading.
  • Supports multiple update sources (GitHub, npm).
  • Security checks: confirm before download, private IP blocking, SHA-256 checksum.
  • GitHub mirror support for fast downloads in mainland China.

Installation

Method 1: Direct Install (Recommended)

dsh plugin --profile web add github:m1452700576/dsh-app-updater

Method 2: Local Development

# Clone the repository
git clone https://github.com/m1452700576/dsh-app-updater.git
cd dsh-app-updater

# Install in your DSH profile
dsh plugin --profile web add link:$PWD

Method 3: Manual Installation

  1. Clone or download this repository
  2. Copy the folder to your DSH profile:
    cp -r . ~/.dsh/profiles/web/node_modules/@local/dsh-app-updater
    
  3. Add to your profile's package.json:
    {
      "dependencies": {
        "@local/dsh-app-updater": "link:./dsh-app-updater"
      },
      "dsh": {
        "profile": {
          "bundles": ["@local/dsh-app-updater"]
        }
      }
    }
    
  4. Restart DSH completely

Configuration

Configure in cordis.patch.yml:

- insert:
    - id: dsh-app-updater
      name: '@local/dsh-app-updater'
      config:
        sourceType: github
        githubRepo: m1452700576/dsh-app-updater
        downloadsDir: ''

Configuration Options

OptionTypeDefaultDescription
sourceTypestringgithubUpdate source type (github or npm)
githubRepostringsteven-kid/deepseek-harness-desktopGitHub repository to check for updates
downloadsDirstring~/DownloadsDirectory to save downloaded installers
mirrorsarray[]GitHub mirror URLs for faster downloads in China

Usage

  1. After installation, look for the update icon in the DSH sidebar
  2. Click the icon to check for updates
  3. If an update is available, click "Download" to start the download
  4. The download progress will be shown in real-time
  5. Once downloaded, the installer will open automatically

API Routes (Loopback Only)

  • GET /api/dsh-update/status - Check current version and available updates
  • POST /api/dsh-update/download - Download the latest update
  • GET /api/dsh-update/progress - Get download progress

Troubleshooting

Plugin not appearing

  • Ensure DSH is completely restarted after installation
  • Check that the plugin is listed in your profile's package.json

Update check fails

  • Verify your internet connection
  • Check if the GitHub repository is accessible
  • Try using a mirror if you're in mainland China

Download fails

  • Ensure you have enough disk space
  • Check if the download directory is writable
  • Verify the installer URL is accessible

Development

# Clone the repository
git clone https://github.com/m1452700576/dsh-app-updater.git
cd dsh-app-updater

# Install dependencies (none currently)
npm install

# Test the plugin locally
dsh plugin --profile web add link:$PWD

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

License

Apache-2.0

Support

  • GitHub Issues: https://github.com/m1452700576/dsh-app-updater/issues
  • Documentation: This README