Harvest honey shortcut markers into a debt ledger.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add Green-PT/honey-for-devs --skill honey-debt --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Honey Debt?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/green-pt-honey-debt)More formats (shields.io, HTML) on the badges page.
---
name: honey-debt
description: "Harvest honey shortcut markers into a debt ledger."
version: 1.3.1
author: GreenPT
license: MIT
metadata:
hermes:
tags: [token-efficiency, coding]
---
# Honey Debt
Lever 1 trades code for a known ceiling. That trade is only honest if someone can
see it later. Every deliberate simplification carries a `honey:` comment naming its
ceiling and the trigger to revisit; this collects them into one ledger.
## Scan
```bash
grep -rnE '(#|//|--|/\*) ?honey:' . --exclude-dir={node_modules,.git,dist,build,vendor}
```
Each hit is one row. The comment prefix is what 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>. trigger: <when to revisit>.`
The convention is `honey: <ceiling>, <trigger>`, so both fields come straight from
the comment. Add `git blame -L<line>,<line> -- <file>` per row only if the user asks
who owns it.
Tag any marker with no trigger `no-trigger` — a ceiling without a revisit condition
is the shape that rots. End with:
`<N> markers, <M> with no trigger.`
Nothing found: `No honey: debt. Clean ledger.`
## Boundaries
- **Report only.** Don't fix, refactor, or remove markers — the user decides what to
pay down. Offer, don't act.
- **Don't invent debt.** A `TODO`/`FIXME` is not a `honey:` marker; mention the count
separately at most once if it's large, don't fold it into the ledger.
- **Don't editorialise per row.** The ledger is data. Save any judgement for one
closing line, and only if something is genuinely alarming.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!