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.

Plugin Chatgpt Crash Fix — DSH Plugin for DeepSeek Harness
← Plugins
P

dsh-plugin-chatgpt-crash-fix

Plugin Chatgpt Crash Fix

Diagnose and fix ChatGPT/Codex desktop app startup crashes on Windows: Store-updater native crash, broken Microsoft Store channel, and Clash/system-proxy interference. Ships a Cordis command, an agent Skill (SKILL.md), and runnable PowerShell diagnostic/fix scripts.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lammarco86/dsh-plugin-chatgpt-crash-fix#853435118b16be22ffb714a582f264625e2c2a37
READMECompatibilityVersions

Compatibility and provenance

Plugin Chatgpt Crash Fix is published as dsh-plugin-chatgpt-crash-fix and currently resolves to version 1.0.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/4/2026

Versions

1.0.2stable
9/4/2026
1.0.1stable
8/26/2026
1.0.0stable
8/22/2026

Related plugins

Loading related plugins…

Latest
1.0.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/4/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 developer-tools.

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)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-plugin-chatgpt-crash-fix

A DSH plugin that diagnoses and fixes ChatGPT / Codex desktop app (Windows Store package OpenAI.Codex) crashes ~60-90s after launch: crash-dump triage → Microsoft Store channel check → proxy-interference fix. Fully reproducible and rollback-safe.

English · 中文

Problem

The ChatGPT desktop app on Windows opens fine, then the whole process tree exits after ~60-90 seconds with no system error dialog. The app log shows [windows-store-updater] Checking Windows Store for package updates right before it dies. Often triggered after an interrupted Windows update or after enabling a Clash-style system proxy.

Root cause (verified via crash dumps)

Clash-style software sets a system proxy (e.g. 127.0.0.1:7897)
  └─ proxy fails to forward Microsoft update domains (direct works, via-proxy fails)
       └─ Windows Update / Microsoft Store channel breaks (0x80072EFD)
            └─ the app's Store-updater native module windows-updater.node crashes (0xC0000005)
                 └─ the whole app exits

Fix (best of both worlds)

Keep the proxy on (OpenAI traffic stays proxied — avoids account-ban risk), and add Microsoft domains to the proxy bypass list so Store/Update go direct. The channel recovers, the app updates to a fixed build and stops crashing.

Contents

ItemDescription
skills/chatgpt-crash-fix/SKILL.mdPlaybook that teaches any DSH agent the diagnose → fix → verify flow
scripts/diagnose-chatgpt-crash.ps1One-shot read-only diagnosis: app state, crash dumps, Store channel, proxy
scripts/check-store-channel.ps1Store / Windows Update channel check (read-only)
scripts/check-proxy-config.ps1Proxy + bypass-list check (read-only)
scripts/fix-proxy-bypass.ps1One-command fix: backup → add MS bypass → verify (with -Restore)
lib/index.jsCordis plugin registering the /chatgpt-crash-fix command

Install

# As a DSH plugin
dsh plugin add dsh-plugin-chatgpt-crash-fix

# Or just clone for the scripts + skill
git clone https://github.com/lammarco86/dsh-plugin-chatgpt-crash-fix.git

Usage

# 1) Diagnose (read-only)
powershell -ExecutionPolicy Bypass -File scripts\diagnose-chatgpt-crash.ps1

# 2) If it reports "WU failed + proxy on + no MS bypass", fix
powershell -ExecutionPolicy Bypass -File scripts\fix-proxy-bypass.ps1 -ProxyServer "127.0.0.1:7897"

# 3) Rollback
powershell -ExecutionPolicy Bypass -File scripts\fix-proxy-bypass.ps1 -Restore

Verified outcome

  • Crash dump triage pinpointed the faulting module: ...\resources\native\windows-updater.node (0xC0000005).
  • After adding the MS bypass list: WU scan recovered, the app updated via the Store (26.818.2441.0 → 26.818.5229.0), it stays running, and the updater log shows overallState=NoUpdates.
  • Proxy kept on; OpenAI authentication works through it.

Disclaimer

Not affiliated with OpenAI, Anywhere Labs, or DeepSeek. No security endorsement. Scripts only touch user proxy settings and always back up first; review before running. Never publish crash dumps, auth.json, or proxy subscriptions with this repo.

License

MIT