DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Shikitor — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

dsh-shikitor

Shikitor

DeepSeek Harness 的 Shikitor 编辑器和发送界面

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-shikitor@1.0.2
README兼容性版本

兼容性与来源证明

Shikitor 以 dsh-shikitor 发布,当前版本为 1.0.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/22

版本

1.0.2stable
2026/8/18
1.0.1stable
2026/8/17
1.0.0stable
2026/8/17

相关插件

正在加载相关插件…

最新版
1.0.2
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
8.5 MB
文件数
42
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 74
周下载
71
最近提交
2026/8/27
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 ui-customization 分类下经过校验的插件。

Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Remote Web Ui@linxin666/dsh-remote-web-ui通过扫码配对访问 dsh Web GUI,共享一个官方界面:设置按钮旁的二维码可将手机和 PC 配对到同一个 Web GUI(手机采用竖屏触控适配层,PC 使用完整桌面界面),通过一次性令牌和 rClient Ui Git Graph@linxin666/dsh-client-ui-git-graph外部 dsh Web GUI 插件:空会话 Git 分支选择器和 Git 图,包含实际的主机端 Git 操作与防护,作为 dsh 配置文件包Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。

README

Shikitor Logo

dsh-shikitor

Description

A Shikitor editor and sender integration for the DeepSeek Harness web client.

| en-US | 中文 |

Installation

Requires DeepSeek Harness 0.1.0-rc.5 or newer within the 0.1 release line (<0.2.0).

dsh plugin --profile web add dsh-shikitor

Preview

Discover from the message sender

PreviewWhat it discovers
Session completion triggered by hash in the DeepSeek Harness sender # Sessions
Searches the conversations shown in the current workspace sidebar. A selection is inserted as one protected session link using the deepseekharness://sessions/<sessionId> protocol.
Workspace file completion triggered by at sign in the DeepSeek Harness sender @ Workspace files
Lists files from the current workspace. When Cordis plugins or subagents contribute candidates, they appear before files. Files are ordered from shallow to deep, loaded incrementally, and can be narrowed with file: or plugin:. Hidden paths appear only after the query explicitly enters a dot-prefixed segment.
Skill completion triggered by dollar sign in the DeepSeek Harness sender $ Skills
Searches merged project, home, and plugin-provided skills. Project-local entries take precedence when names collide, and the chosen skill is converted to DSH's executable /skill-name form.
Command completion triggered by slash in the DeepSeek Harness sender / Commands
Uses DSH's command catalog together with executable skills. Selection remains inside DSH's original pick transaction, so built-in command behavior and plugin contributions continue to work.

Workspace file editor

Shikitor workspace file editor in DeepSeek Harness

Editor settings

Shikitor file editor settings in DeepSeek Harness

Features

The integration provides:

  • Shikitor editing and completion menus in the DSH message sender;
  • a file editor tab for the current workspace;
  • a Cordis ctx.shikitor service that other client plugins can extend.

Completion menus support pointer selection, Arrow Up/Down, Enter/Tab, and Escape. Workspace files are ordered from shallow to deep and loaded into the menu incrementally while scrolling. The Message sender settings can further limit file search with comma-separated include/exclude folder globs. Accepted file references render only the filename. Cmd-click (Ctrl-click on Windows or Linux) opens the referenced workspace file in the Shikitor editor tab.

Skill discovery covers <projectRoot>/{.agents,.codex,.claude,.oo}/skills and the matching directories under the user's home. Project entries win duplicate names from home entries.

Register a surface plugin

import type {} from 'dsh-shikitor/client'
import type { ClientContext } from '@deepseek-ai/dsh-client-runtime/client'
import mySenderPlugin from './my-sender-plugin.ts'

export const inject = ['shikitor']

export function apply(ctx: ClientContext) {
  ctx.effect(
    () => ctx.shikitor.register('sender', mySenderPlugin),
    'my-plugin: Shikitor sender contribution',
  )
}

Use sender for message-composer behavior and editor for file-editor behavior. Register the same Shikitor plugin on both surfaces when they should share it.

Register a file icon rule

export const inject = ['shikitor']

export function apply(ctx: ClientContext) {
  return ctx.shikitor.registerFileIcon({
    extensions: ['vue', 'svelte'],
    icon: 'vue-icon medium-green',
    color: '#41b883',
    priority: 100,
  })
}

The default filename mapping, glyphs, fonts, and colors come from Atom File Icons. Rules can match extensions, exact fileNames, or a custom match function. Their icon may be an Atom File Icons class list or a DOM renderer. Higher priority wins; equally ranked rules prefer the most recently registered contribution. The disposer removes only that plugin's rule.

General settings also expose browser-persisted path rules. Each rule accepts a glob (* within one path segment, ** across folders) and can select any Atom glyph or an image. Image sources may be HTTP(S)/data URLs, workspace-relative paths, or absolute paths inside the current workspace. Workspace images must use a supported image type and be no larger than 1 MiB. Later user rules win. Plugins can observe the same effective registry through fileIconRules; the editable rules are exposed separately through configuredFileIconRules and configureFileIconRules().

The General settings tab owns the shared color scheme, highlight-theme family, cursor shape, and file-icon policy. Sender and File editor inherit that appearance until their first surface-specific change; resetSurface() removes the override and resumes live inheritance. Editor-only line/current-line controls remain on the File editor tab. These browser-local appearance values are also available through ctx.shikitor.appearance, resolveAppearance(), and configureAppearance().

Edited files save automatically by default. Auto save can be disabled in the File editor settings; the editor toolbar and Cmd/Ctrl+S remain available for manual saves. Plugins can read and update this behavior through ctx.shikitor.preferences and configurePreferences().