PR‑Agent (CodiumAI) - AI Code Assistants Tool

Overview

PR-Agent is an open-source, LLM-powered pull-request code-review agent originally developed by Qodo (previously CodiumAI) and now maintained by the community. It provides a suite of targeted commands (for example /review, /improve, /describe and /ask) that scan a PR diff, compress context into LLM-friendly prompts, and return review feedback, committable code suggestions, auto-generated PR descriptions, or free-text Q&A about the change. The project emphasizes fast, single-LLM-call tools (responses in ~30s) and JSON-based prompting so teams can configure review categories and behavior to match their policies. ([github.com](https://github.com/qodo-ai/pr-agent)) PR-Agent can be self-hosted (CLI, Docker, GitHub Action, webhooks) and integrates with multiple git providers (GitHub, GitLab, Bitbucket, Azure DevOps, Gitea). Qodo also offers a hosted commercial product, Qodo Merge, which layers extra enterprise features (zero-data-retention hosting, ticket compliance checks, tests/docs generation, priority support) and a free starter quota (75 PR feedbacks per organization per month); unlimited usage requires a paid subscription through Qodo. The open-source code is licensed under AGPL-3.0 and the project maintains public docs, a Discord community, and release notes. ([github.com](https://github.com/qodo-ai/pr-agent))

GitHub Statistics

  • Stars: 9,792
  • Forks: 1,236
  • Contributors: 186
  • License: AGPL-3.0
  • Primary Language: Python
  • Last Updated: 2026-01-08T10:10:26Z
  • Latest Release: v0.31

The repository shows broad adoption and sustained community activity: roughly 9.7–9.8k stars and ~1.2k forks, with many commits and contributors and an active issues/PR queue. The project includes a public changelog and release history (security fixes published in late 2024 and ongoing releases in 2025), and the maintainers have published a security policy and release notes. The codebase is actively instrumented for multiple deployment modalities (GitHub Action, Docker, CLI) and continues to receive community contributions. ([github.com](https://github.com/qodo-ai/pr-agent))

Installation

Install via pip:

pip install pr-agent
export OPENAI_KEY=your_openai_api_key_here
pr-agent --pr_url https://github.com/owner/repo/pull/123 review
# Example GitHub Action snippet (add to .github/workflows/pr-agent.yml):
name: PR Agent
on:
  pull_request:
    types: [opened, synchronize]
jobs:
  pr_agent_job:
    runs-on: ubuntu-latest
    steps:
      - name: PR Agent action step
        uses: qodo-ai/pr-agent@main
        env:
          OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Other deployment options: run via Docker, install as GitLab/Bitbucket webhook or Azure DevOps integration (see project docs).

Key Features

  • Automated PR review (/review) with configurable checks (security, TODOs, ticket compliance).
  • Committable code suggestions (/improve) that propose minimal, actionable patches.
  • Auto-generate PR descriptions (/describe) including title, summary, labels and walkthrough.
  • Free-text PR Q&A (/ask) for interactive explanations and context-aware answers.
  • Automated helpers: update CHANGELOG, generate labels, and find similar issues/code.
  • Multiple deployment modes (CLI, GitHub Action, Docker, webhooks) and multi-provider support.

Community

PR-Agent is widely used and community-driven: the GitHub repo has ~9.7–9.8k stars and ~1.2k forks, public changelog and active issues, a Discord community, and ongoing release activity and security fixes. Documentation and example workflows are maintained on Qodo’s docs site, and there are community forks and third-party wrappers (PyPI package available) for local and alternative model runtimes. For enterprise teams, Qodo offers Qodo Merge (hosted variant) with additional features and paid plans; Qodo’s product announcements (for example automated compliance checks) are published separately. For details and the latest release notes, consult the project README and Qodo documentation. ([github.com](https://github.com/qodo-ai/pr-agent))

Last Refreshed: 2026-01-09

Key Information

  • Category: Code Assistants
  • Type: AI Code Assistants Tool