Skip to content

chore: adjust PR-Agent config settings#577

Merged
mcowger merged 1 commit into
mainfrom
better-suggestions
Jun 10, 2026
Merged

chore: adjust PR-Agent config settings#577
mcowger merged 1 commit into
mainfrom
better-suggestions

Conversation

@mcowger

@mcowger mcowger commented Jun 10, 2026

Copy link
Copy Markdown
Owner

User description

Disable output of relevant configurations and suppress the semantic files walkthrough. Update code suggestion behavior by increasing suggestions per chunk, lowering the score threshold, and enabling committable code suggestions.


PR Type

Enhancement


Description

  • Tune PR-Agent output settings

  • Disable semantic file walkthrough

  • Increase suggestion volume and usability


Diagram Walkthrough

flowchart LR
  config["PR-Agent configuration"] --> output["Reduced output noise"]
  config --> suggestions["More actionable code suggestions"]
Loading

File Walkthrough

Relevant files
Configuration changes
.pr_agent.toml
Adjust PR-Agent output and suggestions                                     

.pr_agent.toml

  • Disables output_relevant_configurations.
  • Adds pr_description.enable_semantic_files_types = false.
  • Replaces num_code_suggestions with num_code_suggestions_per_chunk = 5.
  • Lowers suggestion threshold and enables committable suggestions.
+8/-3     


🛠️ Relevant configurations:


These are the relevant configurations for this tool:

[config]

model: gpt-5.5
fallback_models: []
git_provider: github
publish_output: True
publish_output_progress: True
progress_gif_url: 
progress_gif_width: 48
verbosity_level: 0
use_extra_bad_extensions: False
log_level: DEBUG
use_wiki_settings_file: True
use_repo_settings_file: True
use_global_settings_file: True
disable_auto_feedback: False
ai_timeout: 300
custom_reasoning_model: False
response_language: en-US
max_description_tokens: 500
max_commits_tokens: 500
max_model_tokens: 32000
custom_model_max_tokens: -1
model_token_count_estimate_factor: 0.3
patch_extension_skip_types: ['.md', '.txt']
allow_dynamic_context: True
max_extra_lines_before_dynamic_context: 10
patch_extra_lines_before: 5
patch_extra_lines_after: 1
cli_mode: False
output_relevant_configurations: True
large_patch_policy: clip
duplicate_prompt_examples: False
seed: -1
temperature: 0.2
ignore_pr_title: ['^\\[Auto\\]', '^Auto']
ignore_pr_target_branches: []
ignore_pr_source_branches: []
ignore_pr_labels: []
ignore_pr_authors: []
ignore_repositories: []
ignore_language_framework: []
is_auto_command: True
enable_ai_metadata: False
reasoning_effort: medium
enable_claude_extended_thinking: False
extended_thinking_budget_tokens: 2048
extended_thinking_max_output_tokens: 4096
extract_issue_from_branch: True
branch_issue_regex: 
enable_custom_labels: False

[pr_description]

publish_labels: False
add_original_user_description: True
generate_ai_title: False
use_bullet_points: True
extra_instructions: 
enable_pr_type: True
final_update_message: False
enable_help_text: False
enable_help_comment: False
enable_pr_diagram: True
publish_description_as_comment: False
publish_description_as_comment_persistent: True
enable_semantic_files_types: True
collapsible_file_list: adaptive
collapsible_file_list_threshold: 6
inline_file_summary: False
use_description_markers: False
enable_large_pr_handling: True
include_generated_by_header: True
max_ai_calls: 4
async_ai_calls: True

Disable output of relevant configurations and suppress the semantic files walkthrough. Update code suggestion behavior by increasing suggestions per chunk, lowering the score threshold, and enabling committable code suggestions.
@github-actions

Copy link
Copy Markdown
Contributor

PR Reviewer Guide 🔍

Here are some key observations to aid the review process:

⏱️ Estimated effort to review: 1 🔵⚪⚪⚪⚪
🧪 No relevant tests
🔒 No security concerns identified
⚡ No major issues detected

🛠️ Relevant configurations:


These are the relevant configurations for this tool:

[config]

enable_ai_metadata: False
model: gpt-5.5
fallback_models: []
git_provider: github
publish_output: True
publish_output_progress: True
progress_gif_url: 
progress_gif_width: 48
verbosity_level: 0
use_extra_bad_extensions: False
log_level: DEBUG
use_wiki_settings_file: True
use_repo_settings_file: True
use_global_settings_file: True
disable_auto_feedback: False
ai_timeout: 300
custom_reasoning_model: False
response_language: en-US
max_description_tokens: 500
max_commits_tokens: 500
max_model_tokens: 32000
custom_model_max_tokens: -1
model_token_count_estimate_factor: 0.3
patch_extension_skip_types: ['.md', '.txt']
allow_dynamic_context: True
max_extra_lines_before_dynamic_context: 10
patch_extra_lines_before: 5
patch_extra_lines_after: 1
cli_mode: False
output_relevant_configurations: True
large_patch_policy: clip
duplicate_prompt_examples: False
seed: -1
temperature: 0.2
ignore_pr_title: ['^\\[Auto\\]', '^Auto']
ignore_pr_target_branches: []
ignore_pr_source_branches: []
ignore_pr_labels: []
ignore_pr_authors: []
ignore_repositories: []
ignore_language_framework: []
is_auto_command: True
reasoning_effort: medium
enable_claude_extended_thinking: False
extended_thinking_budget_tokens: 2048
extended_thinking_max_output_tokens: 4096
extract_issue_from_branch: True
branch_issue_regex: 
enable_custom_labels: False

[pr_reviewer]

require_score_review: False
require_tests_review: True
require_estimate_effort_to_review: True
require_can_be_split_review: False
require_security_review: True
require_estimate_contribution_time_cost: False
require_todo_scan: False
require_ticket_analysis_review: True
publish_output_no_suggestions: True
persistent_comment: True
extra_instructions: 
num_max_findings: 3
final_update_message: True
enable_review_labels_security: True
enable_review_labels_effort: True
require_all_thresholds_for_incremental_review: False
minimal_commits_for_incremental_review: 0
minimal_minutes_for_incremental_review: 0
enable_intro_text: True
enable_help_text: False

@github-actions

Copy link
Copy Markdown
Contributor

PR Code Suggestions ✨

No code suggestions found for the PR.

@mcowger mcowger merged commit 0266780 into main Jun 10, 2026
2 checks passed
@mcowger mcowger deleted the better-suggestions branch June 10, 2026 06:28
harrisony pushed a commit to harrisony/plexus that referenced this pull request Jun 10, 2026
### **User description**
Disable output of relevant configurations and suppress the semantic
files walkthrough. Update code suggestion behavior by increasing
suggestions per chunk, lowering the score threshold, and enabling
committable code suggestions.


___

### **PR Type**
Enhancement


___

### **Description**
- Tune PR-Agent output settings

- Disable semantic file walkthrough

- Increase suggestion volume and usability


___

### Diagram Walkthrough


```mermaid
flowchart LR
  config["PR-Agent configuration"] --> output["Reduced output noise"]
  config --> suggestions["More actionable code suggestions"]
```



<details> <summary><h3> File Walkthrough</h3></summary>

<table><thead><tr><th></th><th align="left">Relevant
files</th></tr></thead><tbody><tr><td><strong>Configuration
changes</strong></td><td><table>
<tr>
  <td>
    <details>
<summary><strong>.pr_agent.toml</strong><dd><code>Adjust PR-Agent output
and suggestions</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; </dd></summary>
<hr>

.pr_agent.toml

<ul><li>Disables <code>output_relevant_configurations</code>.<br> <li>
Adds <code>pr_description.enable_semantic_files_types =
false</code>.<br> <li> Replaces <code>num_code_suggestions</code> with
<code>num_code_suggestions_per_chunk = 5</code>.<br> <li> Lowers
suggestion threshold and enables committable suggestions.</ul>


</details>


  </td>
<td><a
href="https://github.com/mcowger/plexus/pull/577/files#diff-356a4c0b1558da9e4be849aa64f19af78488ec6819f379e21ae93c53e750fbe7">+8/-3</a>&nbsp;
&nbsp; &nbsp; </td>

</tr>
</table></td></tr></tr></tbody></table>

</details>

___


<hr>
<details> <summary><strong>🛠️ Relevant
configurations:</strong></summary>

<br>These are the relevant
[configurations](https://github.com/Codium-ai/pr-agent/blob/main/pr_agent/settings/configuration.toml)
for this tool:

**[config**]
```yaml

model: gpt-5.5
fallback_models: []
git_provider: github
publish_output: True
publish_output_progress: True
progress_gif_url: 
progress_gif_width: 48
verbosity_level: 0
use_extra_bad_extensions: False
log_level: DEBUG
use_wiki_settings_file: True
use_repo_settings_file: True
use_global_settings_file: True
disable_auto_feedback: False
ai_timeout: 300
custom_reasoning_model: False
response_language: en-US
max_description_tokens: 500
max_commits_tokens: 500
max_model_tokens: 32000
custom_model_max_tokens: -1
model_token_count_estimate_factor: 0.3
patch_extension_skip_types: ['.md', '.txt']
allow_dynamic_context: True
max_extra_lines_before_dynamic_context: 10
patch_extra_lines_before: 5
patch_extra_lines_after: 1
cli_mode: False
output_relevant_configurations: True
large_patch_policy: clip
duplicate_prompt_examples: False
seed: -1
temperature: 0.2
ignore_pr_title: ['^\\[Auto\\]', '^Auto']
ignore_pr_target_branches: []
ignore_pr_source_branches: []
ignore_pr_labels: []
ignore_pr_authors: []
ignore_repositories: []
ignore_language_framework: []
is_auto_command: True
enable_ai_metadata: False
reasoning_effort: medium
enable_claude_extended_thinking: False
extended_thinking_budget_tokens: 2048
extended_thinking_max_output_tokens: 4096
extract_issue_from_branch: True
branch_issue_regex: 
enable_custom_labels: False

```

**[pr_description]**
```yaml

publish_labels: False
add_original_user_description: True
generate_ai_title: False
use_bullet_points: True
extra_instructions: 
enable_pr_type: True
final_update_message: False
enable_help_text: False
enable_help_comment: False
enable_pr_diagram: True
publish_description_as_comment: False
publish_description_as_comment_persistent: True
enable_semantic_files_types: True
collapsible_file_list: adaptive
collapsible_file_list_threshold: 6
inline_file_summary: False
use_description_markers: False
enable_large_pr_handling: True
include_generated_by_header: True
max_ai_calls: 4
async_ai_calls: True

```
</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant