mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
docs: clarify repository metadata detection process in documentation
This commit is contained in:
parent
5de82e379a
commit
0989247d42
2 changed files with 4 additions and 4 deletions
|
|
@ -133,7 +133,7 @@ LANGSMITH_BASE_URL=<url>
|
||||||
|
|
||||||
## Bringing additional repository metadata to Qodo Merge 💎
|
## 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
|
If you set
|
||||||
|
|
||||||
|
|
@ -142,8 +142,8 @@ If you set
|
||||||
add_repo_metadata = true
|
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:
|
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), etc.
|
[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:
|
You can also specify custom filenames to search for:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ duplicate_prompt_examples = false
|
||||||
seed=-1 # set positive value to fix the seed (and ensure temperature=0)
|
seed=-1 # set positive value to fix the seed (and ensure temperature=0)
|
||||||
temperature=0.2
|
temperature=0.2
|
||||||
# bring repo metadata 💎
|
# 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"]
|
add_repo_metadata_file_list =["AGENTS.MD", "CLAUDE.MD", "QODO.MD"]
|
||||||
# ignore logic
|
# ignore logic
|
||||||
ignore_pr_title = ["^\\[Auto\\]", "^Auto"] # a list of regular expressions to match against the PR title to ignore the PR agent
|
ignore_pr_title = ["^\\[Auto\\]", "^Auto"] # a list of regular expressions to match against the PR title to ignore the PR agent
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue