Skip to content

Reviewing changes

Nothing leaves a session until you have reviewed it. The right pane of the dashboard — and the matching commands — is built for exactly this.

The files in the session, including ones the agent added:

Terminal window
chronos session files <id>

A per-file summary of what changed versus your base branch: the status (Added, Modified, Deleted) and how many lines were added or removed. Open a file to read the full diff.

Terminal window
chronos session changes <id> # +/− per file
chronos session diff <id> # the full diff vs base

Checks are your verification steps — the tests, linting, or quality gates your project defines. They are how you confirm a session is sound before it goes anywhere.

Terminal window
chronos session check <id> # run your checks now

In the dashboard:

  • The Checks tab shows the last result, so it opens instantly.
  • Run checks runs them again and shows each step’s outcome, plus the details of anything that failed.
  • An overall: green / red banner summarizes the run. Red blocks merge.

Because results are kept, you can revisit a session later and still see whether it was green.

A session is ready to ship when:

  1. The changes are what you intended.
  2. Checks are green.
  3. You are confident in the result.

Only then do the approval and merge actions unlock — see Pull requests, approvals, and merge.