Look at what changed

3 minute read · Projects & Git

When the preview looks right, open the files and changes to understand how the agent got there. You can use Vortex through conversation and still review a particular change before keeping it.

Review a change without reading the entire repository

Open Files from the project and use quick-open to locate a filename. Select a text file to inspect or edit it; supported images and other formats use their own preview paths. File tabs and unsaved file drafts are separate from the message draft in the conversation.

After an agent finishes, open Changes. Begin with the file list: additions, deletions and unexpected files often reveal a scope problem faster than reading every line. Open a diff and choose unified or split presentation and wrapping to suit the file. Large diffs are virtualized, so use the file list to focus on the affected part rather than expanding everything.

For an article form, inspect the form component, validation and save handler together. Then try one valid submission, a missing title and a reload. A plausible diff alone does not prove that the user flow persists the record.

Deal with edits from outside Vortex

When you save an open file, Vortex checks its version so an externally modified file is not silently overwritten. If another editor or agent changed it, inspect the newer contents before saving again. Preserve your draft while resolving the difference. Reopening the entire project is not a substitute for comparing the changed file.

Binary and unusually large content may have limited preview support. Do not convert or overwrite such a file simply because the text editor cannot display it. Export or open it through a supported viewer when that is the intended task.

Send useful context to the agent

Select the relevant file or captured result and explain what needs attention. A saved vortex:// result link opens captured evidence; it does not rerun a command, query or request. Review that context for secrets before including it. When the change is ready, follow manual commits or the stricter automatic-commit workflow.

Use files and results as conversation context

Open Files in the project surface, browse or quick-open a file and inspect it in a tab. Send a selected file or captured result into the conversation with a specific question. A result link opens the captured SQL/API/mail output without repeating the original request; check whether you want that snapshot or a fresh read.

Use unified or split diffs and wrapping to inspect the intended change. Added, removed and untracked files need review too; a short assistant summary may not mention generated files or configuration edits. A large diff can be displayed progressively without needing to expand every line before discussing the result.

When saving a text file, Vortex checks for external changes. If another editor or agent changed it, compare the versions and preserve your draft before resolving the conflict. A chat draft and a file-edit draft are separate pieces of unfinished work. Finish with a reviewed commit when the snapshot is ready.

Related guides: a Git commit, the app’s checks.

Updated Sep 13, 2026 · Need a hand?