Skip to content

Latest commit

 

History

8 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dsh-plugin-portal

PerryLink DSH 插件门户 — a zero-dependency static portal that renders the @perrylink DeepSeek Harness plugin ecosystem as grouped cards, one page, no build step, no runtime framework.

English · 这是一个零依赖的静态门户:单页、无构建步骤、无运行时框架,按分组渲染 @perrylink DeepSeek Harness 插件生态的卡片。


生态总览 / Ecosystem overview

The portal renders the complete registry tracked by dsh-plugin-kit/data/repos.json: every roster entry, plugins plus the dsh-plugin-kit infra repo. Every card shows the repo name, a one-line description, its ★ count, two shields.io badges (live GitHub stars + a static rating badge), and the GitHub link. The authoritative counts are printed by node scripts/verify-portal.mjs (the README deliberately carries no frozen number).

本门户渲染 dsh-plugin-kit/data/repos.json 记录的完整清单(全部插件仓库 + dsh-plugin-kit 基建仓库)。每张卡片展示仓库名称一句话简介★ 数、两个 shields.io 徽章(实时 GitHub stars + 静态评分徽章)与 GitHub 链接权威计数由 node scripts/verify-portal.mjs 打印,README 刻意不写死数字。

分组导航 / Grouped navigation

Cards are grouped by the roster's group field (group → English label):

分组 Group 内容 Contents
基建 Infra dsh-plugin-kit
会话 Session dsh-memento, dsh-checkpoint-rewind, dsh-composer-history, dsh-background-agents, dsh-session-pin, dsh-session-sync
安全 Security dsh-auto-review, dsh-permission-rules, dsh-defend, dsh-mask, dsh-skill-pack-security
质量 Quality dsh-doublecheck, dsh-data-quality, dsh-test-drive, dsh-score
研究 Research dsh-industry-research, dsh-fund-research, dsh-research-report, dsh-library
集成 Integration dsh-mcp-panel, dsh-claude-move, dsh-lsp-actions, dsh-local-ai, dsh-github, dsh-translate
桌面 Desktop dsh-click, dsh-talk, dsh-draw
观测 Observability dsh-budget, dsh-observe, dsh-fast
UX dsh-output-styles
生态 Ecosystem dsh-plugin-guide

Per-group counts are printed by the gate (node scripts/verify-portal.mjs) instead of being frozen here.

P0 状态 / P0 status

P0 — the foundational must-haves for the portal — are done for v1:

  • 静态门户 v1 ✅ — index.html is a single file with inline CSS/JS; zero external runtime dependencies.
  • 数据源同步 ✅ — data/repos.json is a verbatim copy of dsh-plugin-kit/data/repos.json (plus a _source sync note).
  • 分组渲染 ✅ — one card per roster entry, grouped by group.
  • 质量徽章 ✅ — live img.shields.io/github/stars/… + a static rating badge per card; no self-hosting.

P1/P2 (not yet in scope): star/rating auto-refresh pipeline, search/filter, per-plugin detail pages, and a self-hosted badge service.

质量信号 / Quality signals

Each card surfaces two quality signals: the ★ count from the roster (synced snapshot) and a live stars badge from GitHub via shields.io. The static rating badge reflects the synced star value (n/a for dsh-plugin-kit, which ships no star count). These signals are display-only — the portal does no scoring of its own; scoring lives in dsh-plugin-kit.

结构与同步 / Layout & sync

dsh-plugin-portal/
├── index.html        # 单文件门户(内联 CSS/JS,无外部运行时依赖)
├── data/repos.json   # 从 dsh-plugin-kit/data/repos.json 复制的清单(见 _source 注释)
└── README.md         # 本文件

data/repos.json is not the source of truth: dsh-plugin-kit/data/repos.json owns the roster and star counts. To refresh this portal, re-copy that file over data/repos.json.

本地预览 / Local preview

Open over HTTP (the page fetches data/repos.json, which file:// blocks):

python -m http.server 8080
# then open http://localhost:8080

校验 / Validation

No browser and no install step: the gate is zero-dependency and asserts that about itself, so the portal stays runnable from a bare checkout.

node scripts/verify-portal.mjs

It prints the authoritative counts (entries, groups, per-group) and checks:

  1. the gate imports nothing but node: builtins;
  2. data/repos.json satisfies the roster contract — name/group/role/star, an https://github.com/<owner>/<repo> URL whose repo segment matches name, and no duplicate names;
  3. the inline script in index.html parses (new vm.Script) and runs under a DOM stub;
  4. every roster entry has a blurb in DESCRIPTIONS and every group a GROUP_EN label — an entry whose blurb has not landed yet must be registered in PENDING_DESCRIPTION (the deliberate allowlist), otherwise the gate fails;
  5. star badges derive their owner from repo.github, third-party owners included (pan17/dsh-wechat) — no hardcoded owner;
  6. data/repos.json is a verbatim copy of the upstream dsh-plugin-kit/data/repos.json except for _source, and the sha256 recorded in _source still matches that file. On a runner without the sibling kit checkout (CI) this check reports skip rather than failing, so the gate is never red for a reason the runner cannot fix;
  7. the README does not freeze a count.

Two behaviors worth knowing when reading a card: the star badge owner comes from the roster entry's own github URL, and a roster entry with no blurb renders the visible description not synced marker (accent, italic) plus one console.warn instead of silently showing placeholder copy.

PerryLink DSH Plugin Family

This project is one of the 41 DeepSeek Harness plugins maintained by PerryLink. If this one helps you, the others likely will too:

Plugin One-liner
dsh-auto-review Second-model auto-review on the approval chain, fail-closed by default
dsh-autotier Automatic strong/cheap model-tier routing with deterministic risk guards and a /tier command
dsh-background-agents Durable background child agents with a Web UI sidebar, messaging and interrupt
dsh-budget Cost governance for DeepSeek Harness: budgets, carbon, and latency in one panel.
dsh-catalog DSH Desktop Market standard catalog source for the PerryLink family
dsh-cert-mcp Read-only MCP server exposing the certification registry: grades, snapshots and five-dimension evidence
dsh-checkpoint-rewind Unified session + workspace + config checkpoints with one-shot /rewind
dsh-claude-move Migrate Claude Code, Codex, OpenCode and Hermes sessions, memories and skills into DSH
dsh-click Cross-platform native desktop control for DeepSeek Harness — Windows first.
dsh-composer-history Terminal-style input history for the web composer: arrows, Ctrl+R search
dsh-data-quality Deterministic dataset profiling, cleaning and citation verification
dsh-defend Prompt-injection, jailbreak, and secret-leak defense for DeepSeek Harness.
dsh-doublecheck Engineering-discipline guard: requirements grill, test gates, adversary review
dsh-draw Unified static-image generation routing for DeepSeek Harness.
dsh-fast Read-only performance diagnostics: load, spill, compaction and cache hit rate
dsh-fund-research Chinese mutual-fund research with sealed, traceable source snapshots
dsh-github GitHub PR/issue/CI integration with every write approval-gated
dsh-industry-research Industry and company research pack: chain map, policy timeline, company cards
dsh-kit One-command starter pack that installs the core family
dsh-library Local document knowledge base with hybrid search and citation-aware injection
dsh-local-ai Local Ollama model discovery and task-based routing with cloud fallback
dsh-lsp-actions LSP diagnostics, formatting, completion, code actions, symbols and rename
dsh-mask PII masking at the model boundary with a host-side restore table
dsh-mcp-panel MCP management console: /mcp command, Settings tab and trial calls
dsh-memento Approval-gated cross-session memory protocol (ctx.memory + SQLite)
dsh-observe OpenTelemetry and Langfuse telemetry export from the session event stream
dsh-output-styles Runtime-switchable model output styles
dsh-permission-rules Declarative allow/deny/ask rules plus a process-level network policy
dsh-plugin-certification Community certification registry with repro-checkable grades and badges
dsh-plugin-doctor Zero-dependency static + sandbox smoke detector for DSH plugins
dsh-plugin-guide Plugin-dev knowledge base, agent skill and the dsh-plugin-dev CLI toolchain
dsh-plugin-kit Shared zero-runtime-dependency toolkit for the PerryLink DSH plugins
dsh-plugin-upgrade-015 Merged 0.1.3-alpha.10.1.5-rc.1 upgrade corridor card plus a zero-dependency seam scanner
dsh-reach Multi-channel approval/question bridge: WeChat, Telegram, Feishu + a session console
dsh-research-report Verifiable research reports: evidence ledger, manifest seal, per-claim verdicts
dsh-score Multi-dimensional plugin quality scoring with an evidence-backed leaderboard
dsh-session-pin Pin sessions and workspaces in the Web sidebar with per-pin colors
dsh-session-sync Git-backed cross-device session synchronization with keep-both merges
dsh-skill-pack-security Security-audit skill pack plus the plugin_vet supply-chain gate
dsh-talk Voice-first session loop: speech-to-text input and text-to-speech replies
dsh-team-rooms Cross-session team rooms: shared message bus, task board and timeline
dsh-test-drive Isolated install-and-smoke test drives with a pass/fail matrix
dsh-ticktick TickTick/Dida365 task bridge: session-header panel plus eleven agent tools
dsh-translate Vendor parameter translation and deterministic JSON repair
dsh-wechat WeChat ↔ DSH bridge (Tencent iLink bot) developed with pan17, who hosts the repo

License

Apache License 2.0

About

Zero-dependency static portal rendering the @PerryLink DeepSeek Harness plugin ecosystem as grouped cards: one page, no build step, no runtime framework.

Topics

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages