From 70819562c8e4c4b6f335829d2e245b69e207aef8 Mon Sep 17 00:00:00 2001 From: Bill Murdock Date: Fri, 2 Jan 2026 15:51:09 -0500 Subject: [PATCH] fix: update repo references from jwm4 to ambient-code Update remaining references to the old jwm4 repo: - review_roadmap/main.py: footer link in generated roadmaps - tests/test_main.py: test assertion for footer URL - ADR/phase4_plan.md: pip install example URL --- ADR/phase4_plan.md | 2 +- review_roadmap/main.py | 2 +- tests/test_main.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ADR/phase4_plan.md b/ADR/phase4_plan.md index 7f54c84..88a1784 100644 --- a/ADR/phase4_plan.md +++ b/ADR/phase4_plan.md @@ -167,7 +167,7 @@ This document outlines potential future improvements for review-roadmap and disc 2. **Development velocity concern is manageable:** - Use `pip install -e .` locally for development - Only publish releases for stable milestones - - Users can still install from git for bleeding-edge: `pip install git+https://github.com/jwm4/review-roadmap.git` + - Users can still install from git for bleeding-edge: `pip install git+https://github.com/ambient-code/review-roadmap.git` 3. **GitHub Actions will be much cleaner** with PyPI (one-liner install vs. checkout + setup) 4. **Migration pitch is stronger** with: "Here's a working PyPI package with GitHub Actions integration that's already helping developers" diff --git a/review_roadmap/main.py b/review_roadmap/main.py index 37ed57e..20b7f1e 100644 --- a/review_roadmap/main.py +++ b/review_roadmap/main.py @@ -23,7 +23,7 @@ def format_pr_comment(roadmap_content: str) -> str: header = f"""🗺️ **Auto-Generated Review Roadmap** -> This roadmap was automatically generated by [review-roadmap](https://github.com/jwm4/review-roadmap). +> This roadmap was automatically generated by [review-roadmap](https://github.com/ambient-code/review-roadmap). > Model: `{provider}/{model}` --- diff --git a/tests/test_main.py b/tests/test_main.py index ef24d74..46fdc49 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -27,7 +27,7 @@ def test_format_pr_comment_structure(self): assert "🗺️ **Auto-Generated Review Roadmap**" in result # Check attribution link - assert "https://github.com/jwm4/review-roadmap" in result + assert "https://github.com/ambient-code/review-roadmap" in result # Check model info format (provider/model) assert "anthropic/claude-sonnet-4-20250514" in result