dsh-mobile-ui
DeepSeek Harness 网页端移动端响应式布局插件,提供视口检测、触控优化、底部导航栏及自适应对话缩放。
AI 分析
核心用途是优化移动设备上的使用体验。适合经常在手机、平板等小屏幕设备上访问 DSH Web 界面进行对话和管理的用户。视口宽 <= 768px 时自动激活。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Perederey/dsh-mobile-ui说明文档
阅读完整 README ↗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
}
})