DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Ponytail Skills — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-ponytail-skills

Ponytail Skills

Ponytail, lazy senior dev mode, for DeepSeek Harness: 6 skills (ponytail, ponytail-audit, ponytail-debt, ponytail-gain, ponytail-help, ponytail-review) adapted from DietrichGebert/ponytail (MIT)

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:gongyijie85/dsh-ponytail#0a837a6bc5849955dc07b4be7d40ca95e60fa459
READMECompatibilityVersions

Compatibility and provenance

Ponytail Skills is published as dsh-ponytail-skills and currently resolves to version 0.1.6. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/20/2026

Versions

0.1.6stable
9/10/2026
0.1.5stable
9/8/2026
0.1.4stable
9/7/2026
Show 4 more versionsCollapse versions
0.1.3stable
8/16/2026
0.1.2stable
8/16/2026
0.1.1stable
8/16/2026
0.1.0stable
8/16/2026

Related plugins

Loading related plugins…

Latest
0.1.6
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 11
Weekly downloads
300
Last push
9/10/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-ponytail

English | 简体中文

把 DietrichGebert/ponytail(~76k⭐ 的 "最懒资深工程师"代码风格)移植到 DeepSeek Harness (DSH) 的 Cordis 插件架构。

插件向 ctx.skills 注册表的 host 层 注册技能提供者,6 个技能随包分发 (skills/<name>/SKILL.md),无需任何用户配置。

非官方移植:技能内容改编自 DietrichGebert/ponytail(MIT, © DietrichGebert)。

快速上手

装好后对 agent 说 "用 ponytail 模式写这段代码",或让模型在编码时自动 采用:YAGNI → 复用现有代码 → 标准库 → 原生平台能力 → 一行 → 最小代码。 支持 lite / full(默认)/ ultra 三档强度,"stop ponytail" 退出。

技能列表

技能用途
ponytail核心模式:强制"最懒但能用的方案",YAGNI → stdlib → 原生 → 一行 → 最小代码。支持 lite / full(默认)/ ultra 三档
ponytail-review只针对过度工程的代码评审:每行一个发现(位置、删什么、用什么替代)
ponytail-audit全仓库过度工程审计(ponytail-review 的仓库版):排序输出"最大削减优先"
ponytail-debt把代码里所有 ponytail: 注释收进债务台账,延迟不烂尾
ponytail-gain展示 ponytail 的实测收益记分牌(基准中位数)
ponytail-help全部模式/技能/命令的速查卡

安装

支持的 DSH 版本:>=0.1.0-rc.6(宿主面仅 ctx.skills.registerProvider,覆盖 0.1.0-rc.8 起全部 rc/alpha 线;实测基线 0.1.1-rc.2)。

# npm(包名 dsh-ponytail 已被同名项目占用,本包发布为 dsh-ponytail-skills)
dsh plugin --profile web add dsh-ponytail-skills

# GitHub
dsh plugin --profile web add github:gongyijie85/dsh-ponytail

# 本地开发
dsh plugin --profile web add D:\plugins\dsh-ponytail

装完重启 profile(dsh web),技能即可用 skill 工具加载。

工作原理

  • Bundle 层 —— cordis.patch.yml 在 dsh-base 层插入插件行,后续层可按 id 定位。
  • 提供者 —— lib/index.js 调用 ctx.skills.registerProvider(...):扫描 skills/ 目录,从 YAML frontmatter 解析 name/description 并返回完整技能 定义,resourceBase 指向技能目录。
  • 零运行时依赖 —— 只使用 Node 内置模块。

移植说明(对比上游)

  • 技能文件与上游完全一致(verbatim):包括 description: > 折叠多行 frontmatter——提供者(lib/index.js)原生解析折叠标量(按 YAML 语义以 单空格连接),无需任何改写。
  • argument-hint、license 等元数据原样透传。
  • 调用语义:全部模型/用户可调用(上游未设 disable-model-invocation)。

许可证

MIT。技能内容 © DietrichGebert(ponytail); DSH 移植 © gongyijie85。见 LICENSE。