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
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 layer —
cordis.patch.ymlinserts a plugin row over the dsh-base layer; later layers can address it by id. - Provider —
lib/index.jscallsctx.skills.registerProvider(...): scansskills/, parsesname/descriptionfrom YAML frontmatter, returns full skill definitions withresourceBasepointing 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,licenseand 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.
Links
More in this category
GanyuanRan/Aegis★ 1023
Software-engineering method pack for coding agents, with skills for baseline-first planning, systematic debugging, prompt hygiene, verification before completion, and repair/retirement tracking.
superdesigndev/superdesign-skill★ 417
Design skill for UI and marketing graphics on the Superdesign canvas: reads the repo for context, extracts its design system, then generates and iterates branchable design drafts, flow pages, and reusable components through the Superdesign CLI.
Ikalus1988/MisakaNet★ 389
Failure-recovery memory: search and record failure-recovery lessons from real engineering sessions, with BM25 + semantic RAG retrieval and a lessons knowledge base.
Vladimir-Human/humanizer-ru#dsh★ 100
Cleans AI traces from Russian text: finds chatbot copy-paste artefacts (ChatGPT, Gemini, Grok, Perplexity, DeepSeek) and rewrites the text into natural prose on request; 39 regex markers with an evidence registry, offline, text-only bundle.
dhicoc/dsh-reverse-skill★ 18
Complete reverse-skill pack (85 SKILL.md) as a DeepSeek Harness Cordis plugin: reverse engineering, authorized pentesting and security-research skill router.
zhaiyateng/dsh-design-skills★ 10
Design-aesthetics skill pack (10 styles: dark SaaS, minimal white, neumorphism, brutalism, glassmorphism, Japanese minimal, bento grid, cyberpunk, vaporwave, art deco) with runnable landing-page demos: tokens, component rules, forbidden lists, and acceptance checklists per style.