설치
npx -y @deepseek-ai/dsh plugin --profile web add github:jhonden/my-dsh-plugins이 설치 명령은 GitHub 저장소 주소에서 생성된 확인되지 않은 시작점입니다.
README
유지 관리자가 작성한 문서 스냅샷입니다.
my-dsh-plugins
English | 中文
Plugin collection for the DeepSeek Harness (dsh).
Each directory under plugins/ is one self-contained, independently installable plugin distribution — its own packages, its own bundle, no cross-plugin coupling. Zero upstream code changes; everything attaches through dsh extension points (Typert Remote services, slot registrations, profile bundles).
Plugins
| Plugin | What it adds |
|---|---|
web-files | A "Files" tab in the Web client's conversation view: a workspace file tree with a read-only viewer (markdown preview via the platform renderer) backed by a sandboxed Host Remote service |
session-notify | Per-session completion alerts in the Web client: arm a session with a bell in the composer tool row (or a !notify message prefix); the sound is user-customizable (system sounds / custom file / volume) via hot-reloaded settings |

Install
One command per plugin — each bundle carries its implementation packages as dependencies, and build outputs are committed, so no local clone or build is needed:
dsh plugin --profile web add "github:jhonden/my-dsh-plugins#main&path:plugins/<name>/bundle/<name>"
Two one-time preparations:
-
pnpm v11 blocks git-hosted subdependencies — allow them once in the profile's
pnpm-workspace.yaml(created on firstdsh pluginuse):blockExoticSubdeps: false -
On a slow link to codeload.github.com, widen pnpm's fetch timeout once:
pnpm config set fetch-timeout 600000 --location=global
For web-files, copy the ready-to-run command from its
README.
From a local checkout (plugin development)
pnpm install && pnpm build
dsh plugin --profile web add link:$(pwd)/plugins/<name>/bundle/<name> \
link:$(pwd)/plugins/<name>/packages/<pkg-a>
After editing source, rebuild and commit lib/ together with the change —
GitHub installs carry what is in the tree.
Repository layout
plugins/<name>/ one plugin distribution
packages/... the plugin's npm packages (Host half, Client half, ...)
bundle/<name>/ the installable profile bundle (cordis.patch.yml)
docs/ design notes
tsconfig.json root solution: references every package
pnpm-workspace.yaml plugins/*/packages/* + plugins/*/bundle/*
Development
pnpm install
pnpm build # tsc project references + client browser bundles (tsdown)
pnpm test # vitest across all plugins
Typert Remote descriptors (lib/typert.*.js) are committed: regenerating them requires the upstream generator, so consumers never do.
Compatibility
dsh is a developer preview (0.1.0-rc); these plugins pin the upstream packages they were built against and follow upstream releases deliberately.
프로젝트 파일 및 신호
표시된 항목은 디렉터리 스냅샷에서 감지된 공개 저장소 신호입니다.
저장소 정보
- 언어
- TypeScript
- 라이선스
- 보고되지 않음
- 마지막 업데이트
- 2026. 8. 17. AM 9:11
신중하게 설치하기
소스 코드, 권한, 수명 주기 스크립트, 의존성 및 네트워크 접근을 검토하고 신뢰하지 않는 플러그인은 격리 환경에서 테스트하세요.