dsh-mobile-ui
Mobile-UI responsive layout plugin for DeepSeek Harness Web GUI: viewport detection, touch-friendly controls, bottom navigation bar, and adaptive conversation scaling
AI 분석
核心用途是优化移动设备上的使用体验。适合经常在手机、平板等小屏幕设备上访问 DSH Web 界面进行对话和管理的用户。视口宽 <= 768px 时自动激活。
설치
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Perederey/dsh-mobile-uiUsage
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
}
})