Skip to content
dsh-market Browse plugins GitHub 中文

gongyijie85/dsh-ponytail

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

Stars ★ 2 Category Skills Listed 2026-08-16 npm dsh-ponytail-skills

Install

Inside DeepSeek Harness, with dsh-market

dsh plugin --profile web add dshmarket

Or from the command line

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

Installing runs third-party code with your own permissions — it can read your files, use your credentials and reach the network. Review the source first, and pin a commit (github:owner/repo#sha) when you can.

README

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 ↗