diff --git a/README.md b/README.md index 9c999e6b..b434851a 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ PR-Agent aims to help efficiently review and handle pull requests, by providing ### [Documentation](https://qodo-merge-docs.qodo.ai/) + - See the [Installation Guide](https://qodo-merge-docs.qodo.ai/installation/) for instructions on installing PR-Agent on different platforms. - See the [Usage Guide](https://qodo-merge-docs.qodo.ai/usage-guide/) for instructions on running PR-Agent tools via different interfaces, such as CLI, PR Comments, or by automatically triggering them when a new PR is opened. @@ -31,6 +32,7 @@ PR-Agent aims to help efficiently review and handle pull requests, by providing ## Table of Contents + - [News and Updates](#news-and-updates) - [Overview](#overview) - [Example results](#example-results) @@ -41,6 +43,19 @@ PR-Agent aims to help efficiently review and handle pull requests, by providing ## News and Updates +### Jan 25, 2025 + +The open-source GitHub organization was updated: +`https://github.com/codium-ai/pr-agent` → +`https://github.com/qodo-ai/pr-agent` + +The docker should be redirected automatically to the new location. +However, if you have any issues, please update the GitHub action docker image from +`uses: Codium-ai/pr-agent@main` +to +`uses: qodo-ai/pr-agent@main` + + ### Jan 2, 2025 New tool [/Implement](https://qodo-merge-docs.qodo.ai/tools/implement/) (💎), which converts human code review discussions and feedback into ready-to-commit code changes. diff --git a/pr_agent/settings/pr_code_suggestions_prompts.toml b/pr_agent/settings/pr_code_suggestions_prompts.toml index 3a734a25..c94cfb6c 100644 --- a/pr_agent/settings/pr_code_suggestions_prompts.toml +++ b/pr_agent/settings/pr_code_suggestions_prompts.toml @@ -66,7 +66,7 @@ Specific guidelines for generating code suggestions: - Do not suggest to change packages version, add missing import statement, or declare undefined variable. {%- endif %} - When mentioning code elements (variables, names, or files) in your response, surround them with backticks (`). For example: "verify that `user_id` is..." -- Note that you only see changed code segments (diff hunks in a PR), not the entire codebase. Avoid suggestions that might duplicate existing functionality or questioning code elements (like variables declerations or import statements) that may be defined elsewhere in the codebase. +- Note that you only see changed code segments (diff hunks in a PR), not the entire codebase. Avoid suggestions that might duplicate existing functionality or questioning code elements (like variables declarations or import statements) that may be defined elsewhere in the codebase. {%- if extra_instructions %}