DeepSeek Harness Plugin

gongyijie85/dsh-ponytail

Stars ★ 0 Category Skills Added 2026-08-16 npm dsh-ponytail-skills

Ponytail lazy senior dev mode: 6 skills adapted from DietrichGebert/ponytail.

Install

# from npm (prebuilt)

dsh plugin --profile web add dsh-ponytail-skills

# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)

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

Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).

README

npm version GitHub release License: MIT

Ponytail, the lazy senior dev mode, for the DeepSeek Harness (DSH) — 6 skills adapted from DietrichGebert/ponytail (the ~76k⭐ "laziest solution that actually works" coding style).

The plugin registers a skill provider on the host layer of the ctx.skills registry. The 6 skills ship inside the package (skills/<name>/SKILL.md); no user configuration needed.

Unofficial port: skill content adapted from DietrichGebert/ponytail (MIT, © DietrichGebert).

Quick start

Tell the agent "use ponytail mode for this code", or let it adopt the style on its own while coding: YAGNI → reuse existing code → standard library → native platform features → one line → minimal code. Intensity levels: lite / full (default) / ultra; "stop ponytail" exits the mode.

Skills

Skill Purpose
ponytail Core mode: forces the laziest working solution — YAGNI → stdlib → native → one line → minimum. lite / full (default) / ultra
ponytail-review Code review focused exclusively on over-engineering: one line per finding (location, what to cut, what replaces it)
ponytail-audit Whole-repo over-engineering audit (repo-wide ponytail-review): ranked list, biggest cut first
ponytail-debt Harvest every ponytail: comment into a debt ledger so deferrals don't rot into "later means never"
ponytail-gain Show ponytail's measured impact as a compact scoreboard (benchmark medians)
ponytail-help Quick-reference card for all modes, skills and commands

Install

# npm (the plain `dsh-ponytail` name is taken by another project; this port
# publishes as dsh-ponytail-skills)
dsh plugin --profile web add dsh-ponytail-skills

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

# Local folder (development)
dsh plugin --profile web add D:\plugins\dsh-ponytail

Restart the profile (dsh web) — the skills then load with the skill tool.

How it works

  • Bundle layercordis.patch.yml inserts a plugin row over the dsh-base layer; later layers can address it by id.
  • Providerlib/index.js calls ctx.skills.registerProvider(...): scans skills/, parses name/description from YAML frontmatter, returns full skill definitions with resourceBase pointing at each skill directory.
  • Zero runtime dependencies — Node built-ins only.

Adaptation notes (vs upstream)

  • Flattened descriptions: upstream's folded description: > multi-line frontmatter was flattened to single lines — the DSH discovery parser reads scalar values only.
  • Skill bodies unchanged (pure prompts, no harness-specific references); argument-hint, license and other metadata pass through verbatim.
  • Invocation: all skills are model+user invocable (upstream sets no disable-model-invocation).

License

MIT. Skill content © DietrichGebert (ponytail); DSH port © gongyijie85. See LICENSE.

Content from the project README on GitHub ↗

Links

More in this category

View the whole category →