deepseek-pp-shell-host-enhanced
v1.17.0
Published
Native Messaging Shell MCP host installer for DeepSeek++
Readme
deepseek-pp-shell-host-enhanced
Native Messaging Shell MCP host installer for DeepSeek++.
npx deepseek-pp-shell-host-enhanced install --browser chrome --extension-id <extension-id>The installer writes the browser Native Messaging manifest, installs the Shell MCP host into the user's profile directory, and installs command-based OfficeCLI by default.
Useful commands:
npx deepseek-pp-shell-host-enhanced status --browser chrome
npx deepseek-pp-shell-host-enhanced uninstall --browser chromeInstall or repair Minimal Runtime in one command
Minimal Runtime can prepare its pinned OCI image and install the generated runtime manifest into the Native Host in one command:
npx deepseek-pp-shell-host-enhanced minimal-install \
--browser chrome \
--extension-id <extension-id> \
--engine docker \
--base-image <image-with-bash-python3-pip>@sha256:<digest> \
--mirror-dir <minimal-mirror>The base image must already exist locally, use an immutable @sha256: reference, and already provide /bin/bash, python3, and python3 -m pip; the current offline APT setup also expects a Debian/Ubuntu-style base. The mirror directory must contain apt/ package metadata and wheelhouse/ with at least one wheel. The Minimal setup itself does not pull images or packages from the network. For the Windows 11 + WSL2 + Docker Desktop walkthrough, see ../../docs/minimal-runtime-windows11-setup.md.
Re-run the same command at any time, or use the equivalent repair alias:
npx deepseek-pp-shell-host-enhanced minimal-repair \
--browser chrome \
--extension-id <extension-id> \
--base-image <image-with-bash-python3-pip>@sha256:<digest> \
--mirror-dir <minimal-mirror>From a source checkout, npm run minimal:install -- ... and npm run minimal:repair -- ... expose the same flow.
