Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .pr_agent.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[github_app]
# Commands run automatically when a PR is opened.
pr_commands = [
"/agentic_describe",
"/agentic_review",
]

# Re-run commands when new commits are pushed to the PR.
handle_push_trigger = true

# Commands run automatically on push (requires handle_push_trigger = true).
push_commands = [
"/agentic_review",
]

[config]
# Skip automated reviews on bot-authored PRs (e.g. dependency bumps or CI bots).
# Qodo auto-detects most bots; these are listed explicitly to be safe.
ignore_pr_authors = [
"dependabot[bot]",
"renovate[bot]",
"teambit-ci",
]

# Optional: also skip reviews on chore/ci PRs by title (regex list).
# Left commented so maintainers can opt in. Note that bot dependency bumps
# are already covered by ignore_pr_authors above.
# ignore_pr_title = ["^chore", "^ci"]

[review_agent]
# Extra instructions for the Issues Agent (bug, security, performance detection).
# issues_user_guidelines = ""

# Extra instructions for the Compliance Agent (rule checking).
# compliance_user_guidelines = ""