Skip to content

Commit 6f6b27f

Browse files
authored
fix: update repo references from jwm4 to ambient-code (#3)
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
1 parent dbe26a2 commit 6f6b27f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ADR/phase4_plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ This document outlines potential future improvements for review-roadmap and disc
167167
2. **Development velocity concern is manageable:**
168168
- Use `pip install -e .` locally for development
169169
- Only publish releases for stable milestones
170-
- Users can still install from git for bleeding-edge: `pip install git+https://github.com/jwm4/review-roadmap.git`
170+
- Users can still install from git for bleeding-edge: `pip install git+https://github.com/ambient-code/review-roadmap.git`
171171
3. **GitHub Actions will be much cleaner** with PyPI (one-liner install vs. checkout + setup)
172172
4. **Migration pitch is stronger** with: "Here's a working PyPI package with GitHub Actions integration that's already helping developers"
173173

review_roadmap/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def format_pr_comment(roadmap_content: str) -> str:
2323

2424
header = f"""🗺️ **Auto-Generated Review Roadmap**
2525
26-
> This roadmap was automatically generated by [review-roadmap](https://github.com/jwm4/review-roadmap).
26+
> This roadmap was automatically generated by [review-roadmap](https://github.com/ambient-code/review-roadmap).
2727
> Model: `{provider}/{model}`
2828
2929
---

tests/test_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_format_pr_comment_structure(self):
2727
assert "🗺️ **Auto-Generated Review Roadmap**" in result
2828

2929
# Check attribution link
30-
assert "https://github.com/jwm4/review-roadmap" in result
30+
assert "https://github.com/ambient-code/review-roadmap" in result
3131

3232
# Check model info format (provider/model)
3333
assert "anthropic/claude-sonnet-4-20250514" in result

0 commit comments

Comments
 (0)