feat: add DeepSeek Harness (DSH) support - #315
Open
cdxiaodong wants to merge 1 commit into
Open
Conversation
- Recognize dsh source in supportedSources so DSH events are not dropped - Match the dsh binary in process-ancestry resolution - Add a plugin-style CLIConfig (no shell hooks; dsh-island bridges the socket) - Skip hook install/uninstall for dsh; detect harness via ~/.dsh or $DSH_HOME - Add a pixel dsh cli-icon and document the integration in both READMEs
This was referenced Aug 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds DeepSeek Harness (DSH) — the plugin-native agent runtime from DeepSeek — to CodeIsland's supported tools.
DSH ships no shell-hook config; it is bridged by the dsh-island cordis plugin, which listens to DSH's built-in events (
session/created,tools/pre-execute,approval/request, …) and writes the same JSON over the CodeIsland Unix socket. This PR only makes CodeIsland recognize thedshsource so those events render as their own session card.Changes
SessionSnapshot.supportedSources: adddsh— previously events with_source: dshwere dropped (HookServer returns{}for unknown sources).CLIProcessResolver.sourceMatchesExecutablePath: match thedshbinary in process-ancestry resolution (session-id fallback / source inference).ConfigInstaller: add a plugin-styleCLIConfigfordsh(no shell hooks), skip hook install/uninstall, and detect the harness via~/.dshor$DSH_HOME.NotchPanelView.cliIconFiles: mapdsh→ new pixeldsh.pngcli-icon.dsh plugin addinstall step.Verification
CodeIslandCoretarget builds clean with the changes.Screenshot
DSH events rendered as a CodeIsland-style panel, including a PermissionRequest approval card.