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 ADR/phase4_plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion review_roadmap/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}`

---
Expand Down
2 changes: 1 addition & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down