Skip to content
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Your coding agent shipped a change and your Playwright test went red? Don't rewr
## Install

```bash
curl -sL 9l.run | sh # coming soon
curl -sL 9lives.run | sh
pip install 9lives # or: uv tool install 9lives
```

Expand Down
2 changes: 1 addition & 1 deletion docs/VERIFICATION_TRANSCRIPTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ failed=0
</details>

---
🐾 checked by [9lives](https://9lives.run) — `curl -sL 9l.run | sh`
🐾 checked by [9lives](https://9lives.run) — `curl -sL 9lives.run | sh`
```

## 5. Unit tests + lint
Expand Down
4 changes: 2 additions & 2 deletions install/9l.run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
# 9lives installer — served at https://9l.run (and https://9lives.run/i)
# curl -sL 9l.run | sh
# 9lives installer — served at https://9lives.run
# curl -sL 9lives.run | sh
#
# Installs the 9lives CLI (`9l`) into an isolated environment via uv.
# No account, no telemetry. MIT. https://github.com/Quality-Max/9lives
Expand Down
2 changes: 1 addition & 1 deletion src/ninelives/report/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
logger = logging.getLogger(__name__)

COMMENT_BODY_FILENAME = ".9lives-report.md"
FOOTER = "🐾 checked by [9lives](https://9lives.run) — `curl -sL 9l.run | sh`"
FOOTER = "🐾 checked by [9lives](https://9lives.run) — `curl -sL 9lives.run | sh`"

_STATUS_EMOJI = {
"passed": "✅",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_healing.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def test_render_markdown_report():
assert "| `login.spec.ts` | 🐾 healed |" in body
assert "Timeout \\| strict" in body # pipes escaped for the table
assert "```diff" in body
assert "9l.run" in body # the footer IS the growth loop
assert "9lives.run" in body # the footer IS the growth loop


def test_write_github_reports(tmp_path, monkeypatch):
Expand Down
Loading