Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.qodo.ai/llms.txt

Use this file to discover all available pages before exploring further.

You can customize how Qodo reviews your code by passing extra instructions to the Issues Agent or Compliance Agent. Instructions can be configured in the Qodo portal, in your .pr_agent.toml file, or included directly in a PR comment for a single review. The /agentic_review command supports two instruction parameters, one per agent:
  • issues_user_guidelines: extra instructions for the Issues Agent, which handles bug, security, and performance detection
  • compliance_user_guidelines: extra instructions for the Compliance Agent, which handles rule checking

Configure in the Qodo portal

You can set custom instructions for the Issues Agent and Compliance Agent in the Qodo portal. Portal settings apply organization-wide when no repository-level configuration is defined.

Configure in .pr_agent.toml

Add the following to your .pr_agent.toml:
[review_agent]
issues_user_guidelines = "Focus on security vulnerabilities and input validation"
compliance_user_guidelines = "Check for GDPR compliance requirements"

Use a PR comment

To apply instructions for a single review without changing your config file, include them as parameters when triggering /agentic_review in a PR comment:
/agentic_review --review_agent.issues_user_guidelines="Focus on security vulnerabilities" --review_agent.compliance_user_guidelines="Check for GDPR compliance"