Perederey/dsh-mobile-ui0

dsh-mobile-ui

DeepSeek Harness 网页端移动端响应式布局插件,提供视口检测、触控优化、底部导航栏及自适应对话缩放。

AI 分析

核心用途是优化移动设备上的使用体验。适合经常在手机、平板等小屏幕设备上访问 DSH Web 界面进行对话和管理的用户。视口宽 <= 768px 时自动激活。

包名
dsh-mobile-ui
版本
0.1.0-rc.1
最近更新
2026年8月18日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Perederey/dsh-mobile-ui

Usage

Once installed and loaded, open the DSH Web GUI. The plugin activates automatically when the viewport is ≤ 768 px wide. Resize your browser or use Chrome DevTools device mode to test.

Other plugins can subscribe to viewport changes:

ctx.on('mobile-viewport/change', (state) => {
  if (state.size === 'compact') {
    // Adapt your UI for small screens
  }
})