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
3 changes: 3 additions & 0 deletions .claude/instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
---
<!-- This file is a fallback for CodeWhale. The canonical rules are in AGENTS.md. -->
2 changes: 1 addition & 1 deletion after-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ Commands:
- `/ponytail-gain`
- `/ponytail-help`

Bundled skills are available as `ponytail:ponytail`, `ponytail:ponytail-review`, `ponytail:ponytail-audit`, `ponytail:ponytail-debt`, `ponytail:ponytail-gain`, and `ponytail:ponytail-help`.
Bundled skills are available as `ponytail:ponytail`, `ponytail:ponytail-review`, `ponytail:ponytail-audit`, `ponytail:ponytail-debt`, `ponytail:ponytail-gain`, and `ponytail:ponytail-help` via the slash commands listed above.
2 changes: 1 addition & 1 deletion benchmarks/correctness.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ sys.stdout = _stdout
# Check output contains the number 351 (100.5 + 200.0 + 50.5)
# Match as a standalone number (not as substring of e.g. 13510)
import re
if re.search(r'(?<![\\d])351(?:\\.0)?(?![\\d])', output):
if re.search(r'(?<!\d)351(?:\.0)?(?!\d)', output):
print("PASS")
else:
# Try running it differently: maybe it defines a function
Expand Down
2 changes: 1 addition & 1 deletion hooks/ponytail-mode-tracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ process.stdin.on('end', () => {

let mode = null;

if (cmd === '/ponytail-review' || cmd === '/ponytail:ponytail-review') {
if (cmd === '/ponytail-review' || cmd === '/ponytail:review') {
mode = 'review';
} else if (cmd === '/ponytail' || cmd === '/ponytail:ponytail') {
if (arg === 'lite') mode = 'lite';
Expand Down