A floating command deck that lists every slash command in DeepSeek Harness as runnable buttons, sorted by usage.
Install
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:GooodWei/arcana
GitHub-sourced plugins run build scripts on your machine at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).
README
Arcana
Every slash command in DeepSeek Harness, as a draggable, collapsible, usage-sorted floating command deck.
A floating command deck for DeepSeek Harness, pinned to the right side of the Web UI: it lists every / command the Harness serves — built-in and plugin-provided — as buttons. Hover for details, click to run, sorted by usage, with pagination at 10 commands per page.
✨ Features
- 🔍 Full command discovery — reads the Harness command directory (
remote.commandsRPC), the exact same catalog the composer's/palette uses, so built-in and third-party plugin commands all appear. - 🧭 Hover for details — hovering a button shows the command
description(identical to the chat-bar hint); argument-taking commands also show their usage hint. - ⚡ Click to run — argument-free commands run instantly; commands that need input reveal an inline field, Enter to run.
- 🪟 Draggable & collapsible — drag the header to move vertically (position remembered); the "▸/◂" toggle collapses to just the header (like context-vista).
- 📊 Usage-sorted — per-command usage counts are persisted in localStorage, so frequently used commands float to the top across reloads and restarts.
- 📄 10 per page — paginated with prev/next when commands overflow; the list scrolls.
- 🌐 Bilingual — follows the Harness locale.
- 🎨 Client-only, zero build — no host logic, no bundler; themed through the shell's
--dsw-*tokens (light/dark aware).
🚀 Install
npx @deepseek-ai/dsh plugin --profile web add github:GooodWei/arcana
npx @deepseek-ai/dsh web
Install pnpm first (
dsh plugin addinvokes it internally). If dsh is installed globally,npx @deepseek-ai/dshcan be shortened todsh.
Restart DSH (dsh --profile web) and the deck appears on the right side.
🧭 Usage
- Run: click a command — argument-free commands run immediately; commands with arguments (e.g.
/resume-claude) show an inline input. - Inspect: hover a button for its full description and usage.
- Paginate: use
‹ 1/3 ›at the bottom, 10 per page. - Drag: grab the header to move; position is remembered.
- Collapse/expand: use the "▸/◂" toggle to collapse to just the header.
- Sort: commands are ordered by usage count (descending, then by name); the more you use one, the higher it ranks.
🗂 Layout
package.json npm metadata + dsh.client manifest
cordis.patch.yml bundle patch (inserts the host row)
lib/index.js empty host half (client-only plugin)
lib/client.js client half: command discovery + floating deck + pagination
README.md / README.en.md bilingual docs
🛠 Compatibility
- Targets
dsh 0.1.0-rc.6(web profile). - Client-only; never touches the DSH engine. Consumes only the public
remote.commands,sessions,slots, andlocaleservices.
📄 License
MIT
Links
More in this category
zhu1090093659/dsh-web-ui★ 1766
Plugin and skin collection for the DSH Web UI: task board, Git graph, right-side panel, remote mobile UI, pet, live token stats, and a skin center.
ccch1mneyyy/dsh-TUI★ 829
Claude Code-style full-screen terminal UI: pixel-whale header, live status line, and streaming thought expansion.
omdsh-dev/DSH-better-sidebar★ 705
Full sidebar workbench with file rendering and editing, terminal, Git, and subagents; third-party plugins can register new tabs.
huiliyi37/dsh-tianshu-tui★ 131
A terminal UI (TUI) for DeepSeek Harness.
omdsh-dev/dsh-at-file★ 117
Codex-style `@file` mentions: search workspace files in the composer and attach their contents to prompts.
Nagi-ovo/dsh-visualize★ 79
In-conversation generative UI: the model renders interactive HTML cards into the chat stream, with streaming preview and sandboxed rendering.