feat: rename all assistant references to rp across docs, config, and source files

- Updated CHANGELOG.md, CONTRIBUTING.md, pyproject.toml, rp/__main__.py, rp/commands/help_docs.py, rp/input_handler.py, rp/research.md, rp/tools/filesystem.py, rp/tools/minigit.py, and rp/tools/patch.py to replace 'assistant' and 'PR Assistant' with 'rp'
- Bumped version from 1.59.0 to 1.60.0 in pyproject.toml
- Added show_diff parameter to search_replace and apply_patch functions with visual diff output support
- Changed default commit author from 'RP Assistant' to 'rp' in minigit tool
This commit is contained in:
2025-11-11 18:53:22 +00:00
parent 5b7a358bf7
commit aba7289017
12 changed files with 63 additions and 25 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ def test_main_version(capsys):
with pytest.raises(SystemExit):
main()
captured = capsys.readouterr()
assert "RP Assistant" in captured.out
assert "rp" in captured.out
def test_main_create_config_success(capsys):