diff --git a/README.md b/README.md
index 5cc8aca435..e9a0f1e4ad 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,267 @@
-# ๐ AI Code Review with Qodo
+
+
+
+
+
+
+
+
+# ๐ The first AI Code Reviewer
+
+PR-Agent is an open-source, AI-powered code review agent. It is a legacy project of Qodo that is now maintained by the community.
+
+> NOTE: It is not related to the main product offering of Qodo's code review product.
Qodo now offers a [free tier for AI code review](https://www.qodo.ai/get-started/) to easily integrate with GitHub, GitLab, Bitbucket, and Azure DevOps, with feature-rich capabilities for high-quality context-aware code reviews.
-Note: this PR Agent repository was originally created by Qodo as a code review bot and now contributed to the open-source community. It is superseded by Qodo's hosted solution with a free tier available to all developers, which we highly recommend converting to for a better UX, feature-rich, and high-quality code review experience.
+## Table of Contents
+
+- [Getting Started](#getting-started)
+- [Why Use PR-Agent?](#why-use-pr-agent)
+- [Features](#features)
+- [See It in Action](#see-it-in-action)
+- [Try It Now](#try-it-now)
+- [How It Works](#how-it-works)
+- [Data Privacy](#data-privacy)
+- [Contributing](#contributing)
+
+## Getting Started
+
+### ๐ Quick Start for PR-Agent
+
+#### 1. Try it Instantly (No Setup)
+Test PR-Agent on any public GitHub repository by commenting `@CodiumAI-Agent /improve`
+
+#### 2. GitHub Action (Recommended)
+Add automated PR reviews to your repository with a simple workflow file:
+```yaml
+# .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: Codium-ai/pr-agent@main
+ env:
+ OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+```
+[Full GitHub Action setup guide](https://qodo-merge-docs.qodo.ai/installation/github/#run-as-a-github-action)
+
+#### 3. CLI Usage (Local Development)
+Run PR-Agent locally on your repository:
+```bash
+pip install pr-agent
+export OPENAI_KEY=your_key_here
+pr-agent --pr_url https://github.com/owner/repo/pull/123 review
+```
+[Complete CLI setup guide](https://qodo-merge-docs.qodo.ai/usage-guide/automations_and_usage/#local-repo-cli)
+
+#### 4. Other Platforms
+- [GitLab webhook setup](https://qodo-merge-docs.qodo.ai/installation/gitlab/)
+- [BitBucket app installation](https://qodo-merge-docs.qodo.ai/installation/bitbucket/)
+- [Azure DevOps setup](https://qodo-merge-docs.qodo.ai/installation/azure/)
+
+[//]: # (## News and Updates)
+
+[//]: # ()
+[//]: # (## Aug 8, 2025)
+
+[//]: # ()
+[//]: # (Added full support for GPT-5 models. View the [benchmark results](https://qodo-merge-docs.qodo.ai/pr_benchmark/#pr-benchmark-results) for details on the performance of GPT-5 models in PR-Agent.)
+
+[//]: # ()
+[//]: # ()
+[//]: # (## Jul 17, 2025)
+
+[//]: # ()
+[//]: # (Introducing `/compliance`, a new Qodo Merge ๐ tool that runs comprehensive checks for security, ticket requirements, codebase duplication, and custom organizational rules. )
+
+[//]: # ()
+[//]: # (
)
+
+[//]: # ()
+[//]: # (Read more about it [here](https://qodo-merge-docs.qodo.ai/tools/compliance/))
+
+[//]: # ()
+[//]: # ()
+[//]: # (## Jul 1, 2025)
+
+[//]: # (You can now receive automatic feedback from Qodo Merge in your local IDE after each commit. Read more about it [here](https://github.com/qodo-ai/agents/tree/main/agents/qodo-merge-post-commit).)
+
+[//]: # ()
+[//]: # ()
+[//]: # (## Jun 21, 2025)
+
+[//]: # ()
+[//]: # (v0.30 was [released](https://github.com/qodo-ai/pr-agent/releases))
+
+[//]: # ()
+[//]: # ()
+[//]: # (## Jun 3, 2025)
+
+[//]: # ()
+[//]: # (Qodo Merge now offers a simplified free tier ๐.)
+
+[//]: # (Organizations can use Qodo Merge at no cost, with a [monthly limit](https://qodo-merge-docs.qodo.ai/installation/qodo_merge/#cloud-users) of 75 PR reviews per organization.)
+
+[//]: # ()
+[//]: # ()
+[//]: # (## Apr 30, 2025)
+
+[//]: # ()
+[//]: # (A new feature is now available in the `/improve` tool for Qodo Merge ๐ - Chat on code suggestions.)
+
+[//]: # ()
+[//]: # (
)
+
+[//]: # ()
+[//]: # (Read more about it [here](https://qodo-merge-docs.qodo.ai/tools/improve/#chat-on-code-suggestions).)
+
+[//]: # ()
+[//]: # ()
+[//]: # (## Apr 16, 2025)
+
+[//]: # ()
+[//]: # (New tool for Qodo Merge ๐ - `/scan_repo_discussions`.)
+
+[//]: # ()
+[//]: # (
)
+
+[//]: # ()
+[//]: # (Read more about it [here](https://qodo-merge-docs.qodo.ai/tools/scan_repo_discussions/).)
+
+## Why Use PR-Agent?
+
+### ๐ฏ Built for Real Development Teams
+
+**Fast & Affordable**: Each tool (`/review`, `/improve`, `/ask`) uses a single LLM call (~30 seconds, low cost)
+
+**Handles Any PR Size**: Our [PR Compression strategy](https://qodo-merge-docs.qodo.ai/core-abilities/#pr-compression-strategy) effectively processes both small and large PRs
+
+**Highly Customizable**: JSON-based prompting allows easy customization of review categories and behavior via [configuration files](pr_agent/settings/configuration.toml)
+
+**Platform Agnostic**:
+- **Git Providers**: GitHub, GitLab, BitBucket, Azure DevOps, Gitea
+- **Deployment**: CLI, GitHub Actions, Docker, self-hosted, webhooks
+- **AI Models**: OpenAI GPT, Claude, Deepseek, and more
+
+**Open Source Benefits**:
+- Full control over your data and infrastructure
+- Customize prompts and behavior for your team's needs
+- No vendor lock-in
+- Community-driven development
+
+## Features
+
+
+
+
+
+
+
+
+
+
+
+