Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/uninstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ try {
console.log(`Removed ponytail statusLine entry from ${settingsPath}`);
}
} catch (e) {
if (e.code !== 'ENOENT') throw e;
if (e.code !== 'ENOENT' && !(e instanceof SyntaxError) throw e;
}
2 changes: 2 additions & 0 deletions skills/ponytail-help/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ Level sticks until changed or session end.
| **ponytail** | `/ponytail` | Lazy mode itself. Simplest solution that works. |
| **ponytail-review** | `/ponytail-review` | Over-engineering review: `L42: yagni: factory, one product. Inline.` |
| **ponytail-gain** | `/ponytail-gain` | Measured-impact scoreboard: less code, less cost, more speed. |
| **ponytail-audit** | `/ponytail-audit` | Review diffs for unnecessary complexity. |
| **ponytail-debt** | `/ponytail-debt` | Harvest ponytail: shortcuts into a debt ledger. |
| **ponytail-help** | `/ponytail-help` | This card. |

Codex uses `@ponytail`, `@ponytail-review`, and `@ponytail-help`; Claude Code
Expand Down