ponytail-debt

仓库创建 2026年6月12日最近提交 12 天前SkillHot 收录 21 天前
▸ 精选理由

把故意的权宜之计变成可追踪的待办项,防止遗忘。

这个 Skill 做什么

收集仓库中所有 ponytail: 注释并汇总成技术债务账单。

把代码里所有标注为 `ponytail:` 的注释搜出来,做成一份技术债务账单,帮你把那些被故意延后的快捷写法集中列清单。用在想回头处理临时方案、把 deferred work 量化或复盘项目遗留问题时。它只做只读扫描、不改代码,产出一份便于跟踪和计划的 ledger。

▸ 展开 SKILL.md 英文原文

Harvest every `ponytail:` comment in the codebase into a debt ledger, so the deliberate shortcuts and deferrals ponytail leaves behind get tracked instead of rotting into "later means never". Use when the user says "ponytail debt", "/ponytail-debt", "what did ponytail defer", "list the shortcuts", "ponytail ledger", or "what did we mark to do later". One-shot report, changes nothing.

开发编程技术债务注释抽取跟踪清单通用
9.0w
Stars
5.0k
Forks
12
仓库内 Skill
+1.5w
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/DietrichGebert/ponytail/main/skills/ponytail-debt/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/DietrichGebert/ponytail/main/skills/ponytail-debt/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
Every deliberate ponytail shortcut is marked with a `ponytail:` comment naming
its ceiling and upgrade path. This collects them into one ledger so a deferral
can't quietly become permanent.

## Scan

Grep the repo for comment markers, skipping `node_modules`, `.git`, and build
output:

`grep -rnE '(#|//) ?ponytail:' .`  (add other comment prefixes if your stack uses them)

Each hit is one ledger row. The comment prefix keeps prose that merely mentions
the convention out of the ledger.

## Output

One row per marker, grouped by file:

`<file>:<line>, <what was simplified>. ceiling: <the limit named>. upgrade: <the trigger to revisit>.`

The convention is `ponytail: <ceiling>, <upgrade path>`,
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有