For the complete documentation index, see llms.txt. This page is also available as Markdown.
BetaDeveloper

AI remediation

Send eligible SonarQube issues to the AI remediation agent and apply suggested fixes from your terminal.

Note: AI remediation in the SonarQube CLI is in Beta and subject to change.

sonar remediate asks SonarQube Cloud's remediation agent to propose a fix for issues it considers eligible. You pick which issues to remediate (interactively or by passing their keys), and the CLI returns the agent's suggested change.

Note: SonarQube Cloud only. Remediation is currently available on SonarQube Cloud, against organizations entitled to the Remediation Agent. It is not yet supported on self-hosted SonarQube Server.

When to use it

  • You're triaging issues in an existing project and want an AI-generated starting point for a fix.

  • You're running an automation pass over a known set of issue keys (for example, the BLOCKERs reported by sonar list issues).

  • You're working inside Claude Code, Copilot, or Codex, where the agent can chain sonar remediate after sonar analyze to suggest fixes for new findings.

sonar remediate is best used for clearly-scoped, well-defined issues (specific rule violations on a single function, for example). For sweeping refactors, treat the agent's output as a suggestion and review it carefully before applying.

Prerequisites

  • Your organization is entitled to the SonarQube Remediation Agent.

  • You know your project key, or run from a directory where the CLI can auto-detect it from sonar-project.properties, SonarQube for IDE connected mode, or the git origin remote when the repository is bound on SonarQube.

Interactive remediation

Run inside the project directory to pick issues from a list:

The CLI fetches the project's eligible issues from the server and prompts you to select which ones to remediate. The server decides eligibility; only issues the remediation agent can fix are shown.

Non-interactive remediation

For scripts and CI/CD, pass the issue keys directly:

You can pass up to 20 issue keys per invocation. Get keys from sonar list issues:

Note: When sonar remediate runs without a terminal attached (in CI/CD, an SSH session without a TTY, or a CI runner), --issues is required. The command will fail fast otherwise rather than wait for input.

What you get back

The remediation agent returns a proposed change. You review it, apply it, edit it, or discard it. The CLI does not push any changes to your repository on its own; you stay in control of what lands.

Override the project

If auto-detection picks the wrong project (for example, when your repo is mapped to several SonarQube projects), pass --project explicitly:

Use it from an AI agent

After you install the Claude Code or GitHub Copilot integration, the agent can call sonar remediate itself. Example prompt:

"List the BLOCKER issues in my-org_my-app, pick the top three, and run sonar remediate on them."

Last updated

Was this helpful?