dsh-plugin-publish

dsh-plugin-publish is a skill for Claude Code, Codex from hackerFish/awesome-dsh-skills. It costs 51 tokens per session (595 once invoked), scanned A, original, MIT.

A publishing procedure for putting a DSH plugin on GitHub and adding it to the DSH community list. DSH is the plugin ecosystem described by the procedure, and GitHub is the code-hosting service where the plugin is published.

In plain words
What is it for?
Use it to build and commit plugin output, create and tag a GitHub repository, add required documentation and topics, and submit an entry to the awesome-deepseek-harness list.
Why use it?
It captures the files, repository settings, documentation, encoding details, and duplicate-checking needed for an installable public release. It also prevents common publishing failures, such as omitting built files.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build and commit plugin output, create and tag a GitHub repository, add required documentation and topics, and submit an entry to the awesome-deepseek-harness list.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hackerfish/awesome-dsh-skills/dsh-plugin-publish
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hackerFish/awesome-dsh-skills --skill dsh-plugin-publish
Clone the repo
git clone --depth 1 https://github.com/hackerFish/awesome-dsh-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dsh-plugin-publish

README.md
[![agentmods](https://agentmods.dev/badge/skills/hackerfish/awesome-dsh-skills/dsh-plugin-publish/github.svg)](https://agentmods.dev/skills/hackerfish/awesome-dsh-skills/dsh-plugin-publish)
Your own site
<a href="https://agentmods.dev/skills/hackerfish/awesome-dsh-skills/dsh-plugin-publish"><img src="https://agentmods.dev/badge/skills/hackerfish/awesome-dsh-skills/dsh-plugin-publish/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dsh-plugin-publish

Your own site · 80×15
<a href="https://agentmods.dev/skills/hackerfish/awesome-dsh-skills/dsh-plugin-publish"><img src="https://agentmods.dev/badge/skills/hackerfish/awesome-dsh-skills/dsh-plugin-publish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 595 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.00595
Opus 5 $0.00026 $0.00298
Sonnet 5 $0.00010 $0.00119
Haiku 4.5 $0.00005 $0.00060

Measured 12d ago against content hash fe194fd5ddc0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

dsh-plugin-publish scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/dsh-plugin-publish/SKILL.md · 28 lines

What it actually says

DSH 插件发布与生态收录(依据 dsh-video-studio / dsh-voice-input 实战验证)

发布前

  • lib/ 构建产物必须提交进 git:GitHub tarball 安装直接取仓库内容,没有 lib/ 装不上
  • 补 LICENSE(MIT)与中英双语 README(README.md 英文 + README.zh.md 中文互链)
  • README 不写本机绝对路径(D:\...),统一用 $DSH_HOME/profiles/<profile> 通用写法

建仓与推送

  • 本地:git init -b main → commit → git remote add origin [email protected]:<user>/<repo>.gitgit push -u origin main
  • GitHub 建仓用 API:POST /user/repos(body: name / description / private
  • ⚠️ 编码陷阱:PowerShell 5.1 的 Invoke-RestMethod 直接传中文 body 会变成问号;必须 [Text.Encoding]::UTF8.GetBytes($json) 传字节流,并带 ContentType 'application/json; charset=utf-8'
  • 仓库 topics(PUT /repos/<user>/<repo>/topics):dshdeepseek-harnessplugin 必带,再按功能加(如 voice-inputspeech-recognition

生态收录(awesome-deepseek-harness)

  • 目标仓库 Dominic789654/awesome-deepseek-harness:fork → 改 README.md(英)+ README.zh-CN.md(中)→ 提 PR
  • 条目放匹配类目(UI 类插件 → ## UI / 客户端 / ## UI / Clients),一行 markdown 链接 + 一句话描述
  • 脚本化要点:fetch 加超时与退避重试(GitHub/raw 偶发网络抖动自愈);提 PR 前先查同 head 的 open PR 直接复用(幂等,避免重复 PR)
  • 仓库 description 与 PR body 用 Node fetch(UTF-8 正确)或 UTF-8 字节流,避开 PowerShell 编码坑
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 28 lines · 51 tokens per session scan A fe194fd5ddc0

Subscribe to this mod's changes

dsh-plugin-publish is a skill published in the GitHub repository hackerFish/awesome-dsh-skills (5 stars, last pushed 7d ago), licensed MIT. It adds 51 tokens to every session and 595 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.