Available for VS Code

Finally know exactly
what your AI just did

AI tools move fast and change a lot. changAIs shows you a side-by-side diff of every change your AI made, with its own notes pinned to the exact lines it touched โ€” so you know what changed, why, and what to watch out for before you commit.

src/auth/login.ts โš  1 warning ๐Ÿ’ก 2 suggestions โœ“ 1 checked
before
-function login(u, p) {
-  const r = await db.find(u)
-  if (r && r.pass == p)
-    return token(r)
-  return null
-}
after
+async function login(user, pass) {
+   const found = await db.findOne({user}) ๐Ÿ’ก โœ“
+   if (!found) throw new AuthError() ๐Ÿ’ก
+  const ok = await bcrypt.compare(pass, found.hash)
+   return ok ? createToken(found) : null โš 
+}
โš  warning ยท line 5 generated by Claude Code

Returning null on failed auth leaks timing information โ€” attackers can distinguish "user not found" from "wrong password". Throw a uniform AuthError in both branches.

2 of 3 reviewed

Stop blindly trusting your AI. Start reviewing what it actually did.

All features work in VSCode and VS Code-compatible editors including VSCodium.

๐Ÿ”

See Exactly What Changed

Side-by-side diff of every file your AI touched. Know what was added, removed, and why โ€” before you commit anything.

๐Ÿ“Œ

Notes Pinned to the Right Lines

AI-generated notes are anchored to the exact lines they refer to. No more cross-referencing a wall of text with your code.

๐Ÿงญ

Report-Driven Review

Load reports from changAIs-compatible workflows and inspect the files, notes, and review state they describe.

๐Ÿ’ฌ

Reply & Track Progress

Agree, disagree, or mark as "will fix" on each note. The status bar shows how much of the AI's work you've reviewed.

โœ…

Checked & Resolved State

Track which notes you have reviewed and which ones still need follow-up before you commit.

๐Ÿ“ค

Export Reports

Export review records to Markdown and JSON so you can keep a local trail of what changed and what you decided.

changAIs review surface showing changed files, a code diff, and AI notes pinned to changed lines
Changed files, diff context, and AI notes in one review surface.
01

See Exactly What Changed

Changed files, diff context, and AI notes in one review surface.

02

Reply & Track Progress

Reply to notes while reviewing.

03

Checked & Resolved State

Track checked and resolved state.

Review from report to decision

Load the AI report, answer notes in context, and keep track of what is already checked or resolved.

changAIs loaded report view showing changed files, review progress, and notes for the selected file
01

Load the report

Start from the changed files, note counts, and review progress generated for the current workspace.

AI note reply controls with reply categories, text input, and send reply button
02

Reply in context

Capture agree, disagree, or will-fix decisions while the relevant code stays visible.

changAIs review progress showing a checked note and updated reviewed counters
03

Finish with state

Checked and resolved notes make it clear what has already been reviewed.

Supported AI tools

Built around the AI coding workflows developers already use.

changAIs includes setup commands for eight AI coding tools today, so each tool can write review notes to the same local report workflow.

Supported now

Claude Code

Ready

CLAUDE.md, CLAUDE.local.md, or slash command

GitHub Copilot

Ready

.github/copilot-instructions.md

Cursor

Ready

.cursor/rules/changais.mdc

Windsurf

Ready

.windsurfrules

Aider

Ready

.aider/changais-review.md

Gemini CLI

Ready

GEMINI.md

OpenCode

Ready

AGENTS.md

Qwen Code

Ready

QWEN.md

Roadmap integrations

  • Codex Planned
  • More AI coding assistants Planned
  • Direct report generation for more tools Planned
  • Richer feedback handoff between changAIs and AI tools Planned

Compare plans

Free covers the core review workflow. Pro adds history, exports, custom paths, and AI-assisted commit support.

Feature Free Pro
Side-by-side diff view โœ… โœ…
AI note markers & hover cards โœ… โœ…
Mark as checked / hide notes โœ… โœ…
Filter & search notes โœ… โœ…
Replies (agree/disagree/will-fix) โœ… โœ…
Export to Markdown & JSON โœ… โœ…
Marketplace or VSIX installation โœ… โœ…
Multiple report files โŒ โœ…
Report history & archiving โŒ โœ…
Export HTML / CSV โŒ โœ…
Advanced feedback prompts โŒ โœ…
Custom note types โŒ โœ…
AI-Assisted Commit โŒ โœ…
Configurable report path โŒ โœ…

Choose your plan

Start free, then upgrade when you need history, advanced exports, and AI-assisted commits.

Free

$0 /forever

Core local review workflow for AI-generated code changes.

  • โœ“ Side-by-side diff view
  • โœ“ AI note markers & hover cards
  • โœ“ Mark as checked / hide notes
  • โœ“ Filter & search notes
  • โœ“ Replies (agree / disagree / will-fix)
  • โœ“ Export to Markdown & JSON
  • โœ“ Marketplace or VSIX install
Install Free
$50/year or $150 lifetime

Pro

$7 /month

Advanced review tools for individual developers.

  • โœ“ Everything in Free
  • โœ“ Multiple report files
  • โœ“ Report history & archiving
  • โœ“ Export HTML / CSV
  • โœ“ Advanced feedback prompts
  • โœ“ Custom note types
  • โœ“ AI-Assisted Commit
  • โœ“ Configurable report path

Pro will be available soon

We are still configuring the license service. Pro purchases will open here as soon as checkout is ready.

Frequently asked questions

How do I install changAIs? โ–พ

Use the install guide for marketplace installation or manual VSIX installation, depending on the package available for your editor.

Do I need a paid license? โ–พ

No. The Free plan includes the core local review workflow. Pro is for advanced individual features such as history, multiple reports, advanced exports, custom paths, and AI-assisted commits.

Which editors are supported? โ–พ

changAIs supports VS Code and compatible VS Code-based editors that can install extensions from a marketplace or from a VSIX package.

Which AI coding tools are supported? โ–พ

changAIs currently supports setup workflows for Claude Code, GitHub Copilot, Cursor, Windsurf, Aider, Gemini CLI, OpenCode, and Qwen Code. Codex and more AI coding assistants are planned on the roadmap.

Where do report files come from? โ–พ

Reports come from changAIs-compatible workflows or local report files supported by the installed extension build. Open the same project folder used to create the report before reviewing it.

How do I report a problem? โ–พ

Use the support page issue template and include your changAIs version, editor version, operating system, install method, reproduction steps, and safe screenshots or logs.

Do I need to trust what my AI tool writes? โ–พ

No โ€” that's the point. changAIs exists specifically so you don't have to. Every change the AI made is shown in a diff, with the AI's own notes explaining its reasoning. You decide what to keep, what to fix, and what to push back on.