DSH Plugin Store
Back to home

Dominic789654

awesome-deepseek-harness

A curated list of plugins, skills, MCP servers, patch/profile layers, orchestrators & UIs for DeepSeek Harness (DSH). Visualization · PPT · Coding · Agents · Loops (auto-research) and more. #dsh

Stars
26
Language
TypeScript
Created
Aug 13, 2026
Updated
Aug 14, 2026
ToolsRuntimeIndexSkills
GitHub repo

Introduction

DeepSeek

Awesome DeepSeek Harness Awesome

A curated list of plugins, skills, MCP servers, patch/profile layers, orchestrators, aggregators & UIs for DeepSeek Harness (DSH) — DeepSeek's official agent runtime built around the idea Model + Harness = Agent.

English | 简体中文

DeepSeek Harness ("DSH") is DeepSeek's agent runtime / harness layer — the "hands" that turn the model's reasoning into real actions (context management, tool-call orchestration, execution sandbox, feedback loop, session persistence). Its defining feature is an open plugin ecosystem: the community contributes plugins, skills, MCP servers, orchestrators, aggregators, and UIs.

This list collects the best of that ecosystem. Contributions welcome — see Contributing.

Tip for authors: DeepSeek asks plugin repositories to carry the #dsh GitHub topic so they can be discovered. Add it to your repo, then open a PR here.

DeepSeek Harness ecosystem map

Quick Start

# Launch the DSH Web UI
npx @deepseek-ai/dsh web

# Install a community plugin (from this list) into your profile
dsh plugin --profile web add "github:owner/repo#main"

Before installing, confirm the target repo carries the #dsh GitHub topic so the community hub can index it.

Contents


Official

Profiles & Patch Layers

DSH's core composition mechanism: a profile stacks bundle patch layers, then your own cordis.patch.yml (profile-level, then $DSH_HOME-level, then --patch overlays) — letting you reshape the whole plugin tree without forking. This is the layer where task-specialized runtime configurations live: a long-horizon profile, a math-reasoning profile, a slides-editing profile are all just a different bundle stack + patch, not a different codebase. Tools and harnesses that operate at this layer (share/export a profile, or run DSH as a specialized backend under a task-specific patch) belong here rather than under generic plugins.

  • asdf17128/dshp — Manage DeepSeek Harness profiles: list, create, clone, diff, and share a whole dsh setup (plugin versions + bundle order + patch) as one portable file.
  • AMAP-ML/LongHorizon-Harness — Long-horizon computer-use harness with a DSH adapter: runs dsh --profile headless under an isolated DSH_HOME with role-scoped patches (workspace-write for executors, read-only for Manager/auditors) — a concrete example of a task-specialized DSH profile.

Harnesses & Runtimes

DeepSeek-native or DeepSeek-first agent harnesses / coding agents, plus runtime-level infrastructure (diagnostics, ops, session management, approval policies).

  • hxs996-beep/deepAct — Terminal AI coding agent built for DeepSeek that guards every action: ambiguity check, design review, scope control, team mode, parallel sub-agents, and MCP support.
  • LaplaceYoung/oh-my-dsh — Large plugin collection (700+) for DSH that registers only through extension seams, without modifying the agent-loop core. ⭐24
  • omdsh-dev/fabric — Minecraft-Fabric-style hook processor for DSH.
  • omdsh-dev/dsh-session-health — Read-only, zero-dependency session health check: frame-level scanning of multi-frame zstd session files to detect torn/corrupted/empty sessions; registers a session_health tool.
  • omdsh-dev/dsh-security-audit — Local security audit plugin: read-only, redacted risk report covering config, plugin sources, sessions, and network exposure.
  • Zhenyu98/dsh-context-doctor — Context-injection audit: measures the token cost of the AGENTS.md instruction chain, skill catalog, and tool schemas, and detects duplication and conflicts; Web UI ring panel plus a context_audit tool.
  • coppynight/dsh-doctor — flutter-doctor-style diagnostics and repair covering install-level and in-harness checks, with safe auto-fixes; repository-plugin format.
  • lhh010/dsh-bash-encoding — Auto-detects bash output encoding (UTF-16LE/UTF-8/GBK, etc.) and decodes it correctly, fixing garbled non-ASCII output on WSL/Windows.
  • vlln/plugin-registry — Ecosystem infrastructure: a thin browser console for managing repository plugins (zero patches) plus a make-dsh-plugin skill guiding plugin development. ⭐13
  • Andy8647/dsh-auto-approval — Automated tool-call approval: an auto tier that classifies every tool call as allow/deny via rules plus an LLM classifier, with a status chip beside the composer.
  • zzh-newlearner/dsh-postmortem — Local-first failure postmortems for DeepSeek Harness sessions.
  • vibeinging/dsh-trace — Telemetry backend that exports turns, model steps, and tool calls to yiTrace over HTTP.
  • omdsh-dev/dsh-hub — Community extension catalog and profile-generation manager, adding transactional installation, recovery, catalog browsing, and a settings UI on top of official contracts.
  • fakechris/dsh-harness-ops — Ops toolbox: A/B dual-slot snapshot upgrades with atomic switch and one-click rollback, a watchdog that auto-restarts web/agent, and a self-rescue doctor command.
  • omdsh-dev/session-teleport — Multi-device session handoff with PostgreSQL as the single online authority; only one device holds write credentials at a time.
  • Tieboyh/dsh-session-search — Index-free cross-agent session search for DeepSeek Harness.
  • ilharp/dsh-tool-approval — Manual approval for tool calls (a "manual mode" / "ask mode" for DSH).
  • blissito/ghostycode — DeepSeek V4 terminal coding agent and constitutional harness (Rust TUI with MCP and sub-agents).
  • bobleer/deepseek-harness-rust — Rust implementation of DeepSeek Harness: layered crates for session log, turn/step loop, and DeepSeek SSE adapter.
  • didclawapp-ai/zagens — Open-source agent harness for DeepSeek V4. ⭐13
  • liubf21/ds-forge — Lightweight agent harness for DeepSeek V4.
  • Owen718/FlashCoder — Simple harness for DeepSeek models.
  • ArtificialNotImbecile/dsh-context-taxonomy — Logical-call context taxonomy plugin for DeepSeek Harness.
  • btspoony/dsh-llm-fallbacks — Role-based LLM retry and fallback strategy plugin.
  • Drifter-yh/dsh-tool-policy — Declarative deny-by-default tool policy plugin.
  • LingLambda/dsh-undo — Context undo/redo: roll the model context back to the last completed step and restore it again.
  • omdsh-dev/omdsh — Community experiment for organizing versioned DSH component sets and defaults in a reviewable, reproducible form.
  • omdsh-dev/omdsh-runtime — Headless execution layer reusing official Profile/Bundle/Cordis operations, adding deterministic plan/apply, candidate generations, and previous-generation recovery.
  • wangshunnn/oh-my-dsh — A collection of DeepSeek Harness plugins.
  • yjh051108/dsh-super-injector — BepInEx-style mod injector: hot-injects local plugin packages into a running DSH web instance without patches or restarts.
  • yoke233/dsh-openai-codex-auth — OpenAI Codex OAuth login and usage card plugin.
  • YYTbit/dsh-plugin-claude-bridge — Bridges Claude Code memory, skills, and config into DeepSeek Harness.
  • Gordonynh/dsh-plugin-codex-import — Imports Codex conversation history into DSH.
  • Hu9956/dsh-codex-provider — Codex provider plugin with OAuth login support.
  • WSL043/dsh-codex-subscription — Caches Codex subscription/usage state for DSH.
  • PerryLink/dsh-output-styles — Switch between different assistant output styles.
  • Toukaiteio/dsh-effort-tweak — Adjusts model reasoning effort on the fly.
  • csiroqa/dsh-backup-sync — Snapshot backup and WebDAV sync for DSH workspaces.
  • csiroqa/dsh-schedule — Cron-style scheduled tasks with status monitoring.
  • Karuisawa-Mrs/dsh-plugins — Community plugin collection for DSH.
  • BlockRunAI/dsh-clawrouter — A second brain for your DeepSeek Harness agent — strong-model review before risky tool calls, plus 70 models from one wallet.
  • gordonlu/dsh-context-lens — Request Context Profiler for DeepSeek Harness — see what changed between model requests, and how cache reuse changed with it.
  • green-dalii/dsh-shift-router — Two-tier model router for DeepSeek Harness — LLM-Judge routing, multi-model fallback chains, exponential-backoff failover, and task-level orchestration.
  • KitDoesIt/dsh-compaction-instant — LLM-free lossless compaction engine for DeepSeek Harness.
  • morlay/session-persistence-rdb — Relational-database persistence layer for DSH sessions.
  • rainforest888/dsh-plugins-raincode — Model layer for DeepSeek Harness: model pool/cache/retry plus a /skills browser.
  • weijiafu14/dsh-remote-sandbox — Crash-resilient remote execution world for DeepSeek Harness: ctx.fs/ctx.subprocess over an E2B sandbox with heartbeat keep-alive, transparent recovery, and workspace sync.
  • 030611/dsh-telemetry-redactor — Fail-closed export-copy redaction for DeepSeek Harness session telemetry.
  • cnyac/dsh-polling — Polling/scheduled-task plugin: cron scheduled tasks as real sessions, natural-language creation, model tools (polling_*), and a Web UI.
  • cpj-dev/dsh-plugin-cc — Bridges DeepSeek Harness into Claude Code for review, critique, delegation, and session import.
  • khiqwq/dsh-system-proxy — Host plugin for smart outbound HTTP(S) routing: named proxies (http/https/socks4/4a/5/5h), per-host/provider/plugin rules, direct-first fallback with health memory.
  • lire1131/dsh-undo — Snapshot & rollback for plugin/skin/settings configs: auto-save on change, undo/redo stack, snapshot manager panel, keyboard shortcuts, plus an offline PowerShell CLI & GUI that work even when DSH won't boot.
  • omdsh-dev/dsh-scout — Read-only environment-probe plugin for DeepSeek Harness: reports runtime environment, software versions, system resources, ports, services, hardware, and workspace info.
  • sleepinginsummer/dsh-rtk-optimizer — RTK optimizer plugin for DeepSeek Harness.
  • weijiafu14/pi2dsh — Bridges the Pi and DeepSeek Harness ecosystems: one Pi Host ABI runs unmodified Pi extensions as native DSH plugins.
  • wenliang9527/dsh-workspace — Workspace plugin for DeepSeek Harness.

Security & Permissions

Permission rules, approval review, security audits, and policy-check plugins.

Session & Memory Management

Cross-session memory, checkpoints, pinning, and session navigation plugins.

Cost & Usage Tracking

Token usage, cost dashboards, and budget-alert plugins.

Channel / IM Bridges

Bridges DSH into chat platforms and messaging channels.

Plugin Marketplaces & Ecosystem

Plugin marketplaces, install managers, indexes, and ecosystem tooling.

Visualization

Plugins that turn data / results into charts, diagrams, dashboards.

  • ZSeven-W/dsh-openpencil — OpenPencil design preview and editing plugin for DSH. ⭐33
  • Anionex/dsh-vision-toolkit — Vision tasks for text-only models: intent-driven image Q&A, long-screenshot OCR, UI restoration, pixel diff. ⭐150
  • william-jin-cmu/dsh-visionview_image tool bridging any OpenAI-compatible VLM to text-only models. ⭐10
  • omdsh-dev/dsh-genui — Interactive UI components rendered inline in assistant replies via a dsh-ui fence — layout, charts, plots, forms, quizzes, mermaid, 3D scenes — with an action event loop back to the model. ⭐14
  • omdsh-dev/dsh-ernie-image — Baidu ERNIE-Image-Turbo text-to-image: a host-side generation tool plus a browser gallery panel and config card.
  • omdsh-dev/dsh-paddle-ocr — PaddleOCR-VL document layout parsing: converts PDFs/images to Markdown page by page, with host tools, a config card, and a task panel.
  • PangYiMing/dsh-screenshot-diff — Pixel-diffs two screenshots into a diff image and triptych (pixelmatch).
  • Kevoyuan/dsh-mac-vision — Native macOS OCR/Vision framework integration.
  • MC5lan/dsh-multimodal — Combined vision transcription and text-to-image generation.
  • loudMore/dsh-drop-to-path — Converts dropped images/files into file paths for text-only models.
  • Yuuz12/dsh-vision-helper — Vision-assist helper plugin.
  • ysr666/dsh-vision-router — Free vision for text-only agents: built-in keyless vision chain plus pixel tools (Q&A, grounding, crop, pixel diff, colors, OCR, SVG trace, cutout, screenshots); paste an image and it just works — no Python, one-command install.
  • pinch-eng/dsh-audio-dub — Video/audio dubbing tool.
  • LuZhouheng/dsh-gen3d — 3D character-generation plugin for DeepSeek Harness: direct API links to Meshy / Hunyuan3D / Tripo3D / Rodin with your own keys and a mock fallback.
  • wangyang10/image-vision — Image/vision skill plugin for DeepSeek Harness.
  • xiaoshihou514/dsh-vision — Vision bridge for DeepSeek Harness.
  • Hyperionjust/dsh-tool-underseal — "Underseal" sealed-assignment tool plugin for DeepSeek Harness (multi-model support).
  • hccccc01333/dsh-report-html — Generates self-contained interactive HTML reports from Markdown, tables, charts, China province maps, flowcharts, math, and drill-down tables.
  • yumimanji/dsh-ui-spec — Turns UI screenshots into structured, implementation-grade web-frontend specs: deterministic geometry (sharp) plus optional vision-model semantics, merged into one JSON + Markdown spec.
  • 237229953-create/dsh-vision — DSH plugin letting text-only models (e.g. DeepSeek-V4) automatically see images via a vision model; official surface-replace, cache-friendly, human transcript untouched.

Slides / PPT

Generate presentations, decks, slide exports.

  • Blaczz/dsh-deck-builder — Convert Markdown into a self-contained HTML presentation (slides) with themes and keyboard navigation; a zero-dependency deck_build tool.
  • THU-MAIC/dsh-openmaic — OpenMAIC for DeepSeek Harness: classrooms, slides, interactive widgets, and Socratic teaching.

Coding

Code generation, refactoring, review, repo-level engineering plugins.

Agents

Reusable sub-agents / specialized agent packs runnable inside DSH.

  • hewzhew/dsh-agent-rp — SillyTavern migration and next-generation agent role-play for DSH. ⭐67
  • whiteguo233/dsh-openbiliclaw — Embeds OpenBiliClaw, a local personalized content-recommendation agent, as a fourth panel in DSH with 22 agent-bridge tools for reading recommendations and closed-loop learning.
  • omdsh-dev/dsh-data-agent — Lets the agent connect to databases and write SQL for you.
  • omdsh-dev/dsh-mnemon — Deep Mnemon integration providing a three-layer local memory: runtime memory, retrievable documents, and supervised memory spaces.
  • nowledge-co/nowledge-mem-deepseek-harness — Nowledge Mem community plugin bundle for DeepSeek Harness.
  • btspoony/dsh-advisor — Pairs a second model that passively reviews each turn and injects notes.
  • fakechris/dsh-track — Embedded task-management engine: decision-point protocol, idea-capture wall, and Linear-style issue storage shared between AI and humans.
  • Fisfzy/ego-browser — Plugs the ego-lite agent browser (Chromium) into DSH with 13 structured ego_* tools: semantic text snapshots, semantic-locator clicks, form filling, screenshots, and CDP control.
  • omdsh-dev/dsh-longbridge — Longbridge OpenAPI integration for HK/US stocks: quotes, account, and trading tools with credential management in settings.
  • omdsh-dev/dsh-tool-browser — Static Cordis overlay and integration guide for the official dsh-tool-browser browser-control tool.
  • PangYiMing/dsh-browser-control — Browser-control plugin (CDP/Playwright).
  • PangYiMing/dsh-mobile-control — Mobile-device control plugin (ADB/iOS).
  • titanwings/dsh-better-browser — Lets agents drive the user's signed-in browser through thirteen Kimi WebBridge tools.
  • UynajGI/dsh-ssh — SSH remote-execution plugin: ProxyJump chains, SFTP filesystem, subprocess and PTY over ssh2.
  • whiteguo233/OpenBiliClaw — Local-first cross-platform content-discovery agent (Bilibili, Xiaohongshu, YouTube, X, etc.) that ships a DSH client plugin. ⭐1926
  • zenx0x/allinluna — Resource-aware multi-agent orchestration for Codex and DeepSeek Harness ("All in Flash" DSH plugin). ⭐22
  • zcx369658780/governed-workflow-for-dsh — Policy-enforced, evidence-first governed workflows for DeepSeek Harness agents.
  • ciceroyang/dsh-report-studio — Turns a DeepSeek Harness session into deliverable work reports (daily/weekly/handoff/article) with verifiable receipts.
  • mario03690/dsh-netcafe — Adds AI NetCafé's hosted outcome tools (statement extraction with reconciliation, SQL dialect transpile, mainland-China reachability, cross-session memory, scheduled agents) to your dsh profile in one install.
  • MicroHEROX/dsh-Kimi-WebBridge — Kimi WebBridge for DeepSeek Harness — turns the local Kimi WebBridge daemon into 15 native kimi_webbridge_* browser tools (navigate, click, fill, snapshot, screenshot, evaluate, network, upload, PDF).

Loops (Auto-Research, Self-Improve, etc.)

Long-running loop workflows: auto-research, deep-research, self-refine, iterative build.

  • btspoony/mstar-harness — Skill-driven harness/loop engineering workflow agent plugin. ⭐39
  • csyangwen/dsh-memory-evolve — Plugin-only cross-session long-term memory with background self-evolution: five memory tracks, in-turn self-review, skill self-evolution and a skill manager, todo tracks, and session search — zero core modifications. ⭐14
  • vlln/dsh-loop — Timed loop plugin (/loop command + loop tool + activity status bar).
  • william-jin-cmu/dsh-evolve — Self-evolving plugin: hot-mount/unmount Cordis plugins inside a session.
  • fuhefei/dsh-sentinel — Condition-driven wakeup: durable file/command/HTTP/process/webhook watches that wake the agent, with a dock and a global dashboard.
  • lzszq/dsh-scholar — AI research workbench for computational research: materials, project conversations, code and data, experiment runs, an evidence ledger, and TeX manuscripts in one recoverable project.
  • omdsh-dev/dsh-revive — One-click revive: automatically sends "continue" to all interrupted sessions after a restart (/revive command, tool, and browser button).

MCP Servers

Model Context Protocol servers that contribute tools / prompts / resources to DSH.

  • bobleer/deepseek-harness-plugin-mcp — MCP server that lets any agent (Cursor, Claude Code, Codex) discover, install, and run DSH plugins from the dsh-plugin topic.
  • taxueseek/argo — Multilingual agent-facing search tool (web, academic, code, finance, news) that ships a DSH plugin bundle exposing ten mcp__argo__* tools. ⭐56
  • chushixixin/dsh-harness-mcp-server — Exposes DSH itself as an MCP server.
  • f0909172434/dsh-plugin-verified-search — Verified/fact-checked search plugin.
  • qwased/dsh-web-search-duckduckgo — DuckDuckGo web-search MCP tool.
  • gxpppp/dsh-search-mcp — Replaces dsh's built-in web search with search MCP servers (Tavily/Brave/Exa/Perplexity/DuckDuckGo/custom), configured from the web Settings page.
  • anweat/dsh-web-search-pro — Enhanced, persistent web-search plugin for DeepSeek Harness: multi-engine search, SQLite+LRU cache, platform backends, and Playwright rendering.
  • lmcsh9527/dsh-search-free — Free multi-layer web search + fetch provider for DeepSeek Harness (Exa → Tavily → Bing + web_fetch).
  • MicroHEROX/dsh-exa-mcp — Exa Search MCP for DeepSeek Harness: mounts the remote Exa MCP endpoint through the in-box @deepseek-ai/dsh-mcp-client bridge.
  • PerryLink/dsh-mcp-panel — Read-only runtime management panel for the official DeepSeek Harness MCP client: /mcp command + Settings MCP tab with status, tools, errors, reconnect counts, sanitized display, and controlled patch suggestions.
  • xwh-01/dsh-mediacrawler — MCP adapter and installable DSH profile bundle for bounded MediaCrawler jobs with isolated browser profiles, QR-code login, run supervision, redacted previews, and sanitized exports.

Orchestrators & Aggregators

Multi-step / multi-agent schedulers and output aggregators.

  • icetomoyo/dsh_workflow — Upgrades DSH's one-shot multi-agent dispatch into a workflow layer that can be generated, saved, governed, observed, and resumed (UltraCode-style). ⭐35
  • NanmiCoder/dsh-agent-teams — AgentTeams plugin for DeepSeek Harness. ⭐72
  • Chinesezjc/dsh-interconnect — Cross-instance message/event handoff plugins for DSH (interconnect service + tools). ⭐15
  • titanwings/dsh-automation — Runs coding tasks on a schedule in fresh agent sessions; schedules are managed from the DSH Web UI or by the agent itself.
  • Buyi-wsgzg/dsh-sidechain — Side sessions: persistent /side sessions (Codex-style) and one-shot /btw questions (Claude-style) that run in a temporary fork without touching main-session history, with an embedded side panel.
  • omdsh-dev/dsh-hub-workshop — Public catalog, review projection, and immutable feed authority for the OMDSH ecosystem.
  • TtTRz/dsh-gatedflow — Human-in-the-loop gated workflow engine.
  • franksong2702/dsh-codex-connect — ChatGPT OAuth and Codex models for DeepSeek Harness.
  • ropon/dsh-plugin-clawrouters — One-key ClawRouters plugin for DeepSeek Harness: chat, image, video, and web search.
  • Frost-Reed/blocker-notify — Real-time attention alerts for DeepSeek Harness: a global banner + flashing workspace entries when the agent is blocked (approval request / sandbox denial).
  • superslash-rico/dsh-plugin-slashx-gateway — DeepSeek Harness host bundle for SlashX request, response, rich media, async callbacks, and complete token metering.
  • Uddoo/dsh-dashboard — Symphony-compatible Linear issue orchestrator and native operations dashboard for DeepSeek Harness.

UI / Clients

Desktop, web, terminal, or editor front-ends for DSH.

Skills

Packaged task capabilities (markdown-based skills, tool packs).

  • Anionex/dsh-vision-toolkit — Vision tools for text-only models: intent-aware image Q&A, long-screenshot OCR, UI restoration, grounding, pixel diff, artifacts, and a Web UI. ⭐150
  • omdsh-dev/dsh-toolkit — Zero-dependency deterministic tool pack — time, encoding, JSON, calculator, CSV, regex, markdown, diff, stats, and schema — with a unified one-command install. ⭐10
  • Anionex/dsh-computer-use — Accessibility-first macOS computer-use bundle with fresh observations, stale-state rejection, scoped permissions, and safe input. ⭐12
  • omdsh-dev/dsh-plugin-dev — Field notes on DSH plugin development (skill + docs): cordis dual copies, tsconfig setup, Windows junctions, multi-frame zstd, and other tested findings.
  • omdsh-dev/dsh-tool-csv — CSV data tool (RFC 4180): parse, query, aggregate, and convert CSV text with a zero-dependency state-machine parser.
  • emredeveloper/deepseek-harness-huggingface — Read-only Hugging Face Hub model discovery; registers an hf_search_models tool that needs no API key.
  • omdsh-dev/dsh-plugin-skills — Agent skills for building and testing DSH plugins — from scaffolding a new package to choosing test tiers — entirely inside an agent session.
  • omdsh-dev/dsh-book2skill — Book-to-skill pipeline: a five-stage long task (fetch, parse, understand, generate, install) with three human gates and a browser timeline panel.
  • omdsh-dev/dsh-github-integration — Static skill source for structured GitHub issue and pull-request campaigns: batch survey, triage, isolated fixes, and tracking-table updates.
  • omdsh-dev/dsh-tool-calculator — Calculator tool: safe math-expression evaluator with a zero-dependency recursive-descent parser.
  • omdsh-dev/dsh-tool-diff — Diff tool: structured comparison and unified diffs for text, JSON, CSV, and Markdown; zero-dependency and read-only.
  • omdsh-dev/dsh-tool-encoding — Encoding/hash tool: base64/base64url/url/hex codecs, md5/sha1/sha256/sha512 hashes, and UUID generation; zero-dependency.
  • omdsh-dev/dsh-tool-json — JSON query tool: JMESPath-subset queries with a zero-dependency recursive-descent parser.
  • omdsh-dev/dsh-tool-markdown — Markdown tool: HTML-Markdown conversion, GFM table normalization, and TOC generation with a lightweight parser.
  • omdsh-dev/dsh-tool-regex — Regex tool: test matches, extract capture groups, replace safely, and statically explain patterns without executing code.
  • omdsh-dev/dsh-tool-schema — JSON Schema validation tool: validate/paths/explain/normalize with zero network access and no dynamic execution.
  • omdsh-dev/dsh-tool-stat — Statistics tool: descriptive stats, percentiles, frequency distributions, and correlations; zero-dependency pure functions.
  • omdsh-dev/dsh-tool-time — Time tool: strict ISO 8601 parsing, IANA timezone conversion, UTC calendar math, and fixed-duration differences; zero-dependency.
  • cyanseek/dsh-native-playbook — Skill guide covering native-capability usage patterns.
  • cui-stack/dsh-workspace-digest — DeepSeek Harness bundle providing a workspace_digest tool.
  • LayneChai/superpowers-dsh — Superpowers skills for DeepSeek Harness: TDD, debugging, planning, and collaboration skills adapted from obra/superpowers.
  • xiaoxiaosrm/dsh-mattpocock-skills — Unofficial DSH port of mattpocock/skills — Engineering (18) + Productivity (7) skills as a DeepSeek Harness bundle plugin.

Resources

Contributing

PRs welcome! To add a plugin:

  1. Make sure your repo carries the #dsh GitHub topic.
  2. Add one entry under the most fitting category, format: - [Name](https://link) — Concise one-line description.
  3. Keep the list alphabetical within each section where practical.
  4. One PR per logical change; keep descriptions factual and hype-free.

See CONTRIBUTING.md for details.

License

CC0

To the extent possible under law, the contributors have waived all copyright and related or neighboring rights to this work.