From 0989247d421ef9fc610fbe4033bdbb9c5154d242 Mon Sep 17 00:00:00 2001 From: mrT23 Date: Tue, 2 Sep 2025 16:16:26 +0300 Subject: [PATCH] docs: clarify repository metadata detection process in documentation --- docs/docs/usage-guide/additional_configurations.md | 6 +++--- pr_agent/settings/configuration.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/usage-guide/additional_configurations.md b/docs/docs/usage-guide/additional_configurations.md index 3971da92..5396a161 100644 --- a/docs/docs/usage-guide/additional_configurations.md +++ b/docs/docs/usage-guide/additional_configurations.md @@ -133,7 +133,7 @@ LANGSMITH_BASE_URL= ## Bringing additional repository metadata to Qodo Merge 💎 -To provide Qodo Merge with additional context about your project, you can enable automatic repository metadata detection. +To provide Qodo Merge tools with additional context about your project, you can enable automatic repository metadata detection. If you set @@ -142,8 +142,8 @@ If you set add_repo_metadata = true ``` -Qodo Merge will attempt to fetch repository metadata from the root directory of your PR's head branch, looking for common metadata files such as: -[AGENTS.MD](https://agents.md/), [QODO.MD](https://docs.qodo.ai/qodo-documentation/qodo-command/getting-started/setup-and-quickstart), [CLAUDE.MD](https://www.anthropic.com/engineering/claude-code-best-practices), etc. +Qodo Merge automatically searches for repository metadata files in your PR's head branch root directory. By default, it looks for: +[AGENTS.MD](https://agents.md/), [QODO.MD](https://docs.qodo.ai/qodo-documentation/qodo-command/getting-started/setup-and-quickstart), [CLAUDE.MD](https://www.anthropic.com/engineering/claude-code-best-practices). You can also specify custom filenames to search for: diff --git a/pr_agent/settings/configuration.toml b/pr_agent/settings/configuration.toml index 3799d416..a30ab89d 100644 --- a/pr_agent/settings/configuration.toml +++ b/pr_agent/settings/configuration.toml @@ -50,7 +50,7 @@ duplicate_prompt_examples = false seed=-1 # set positive value to fix the seed (and ensure temperature=0) temperature=0.2 # bring repo metadata 💎 -add_repo_metadata=false # if true, will try to add metadata from files like 'AGENTS.MD', 'CLAUDE.MD', 'QODO.MD' etc. +add_repo_metadata=false # if true, will try to add metadata from files like 'AGENTS.MD', 'CLAUDE.MD', 'QODO.MD' add_repo_metadata_file_list =["AGENTS.MD", "CLAUDE.MD", "QODO.MD"] # ignore logic ignore_pr_title = ["^\\[Auto\\]", "^Auto"] # a list of regular expressions to match against the PR title to ignore the PR agent