M0X Docs
M0X Docs

Get Started

Quickstart GuideCore ConceptsAI ModelsPricing Plans

Core Features

Feature OverviewThe CoderX AgentOperating ModesReviewTerminal IntegrationBrowserSecurity

Customization

Lifecycle HooksContext ManagementRules & InstructionsCommandsSkills & Custom ToolsSub-Agents & Parallel OrchestrationSemantic Search@ Mentions

MCP

Model Context Protocol (MCP)MCP FeaturesMCP Tab

Tools

Cloud FeaturesCLIInline Edit (Ctrl+K)BugbotShared TranscriptsSlack IntegrationLinear IntegrationGitHub IntegrationGit SupportGitLab IntegrationDeep Links

Settings

ConfigurationIgnore FilesExtensionsKeyboard ShortcutsShell Commands

Advanced

Parallel AgentsBring Your Own Key (BYOK)Language SupportMigrations

Account

Account ManagementBilling & SubscriptionsUpdate AccessTeamsEnterprise

Guides

CookbookAgent WorkflowsWeb DevelopmentData ScienceLarge Codebases & MonoreposMermaid DiagramsBugbot Rules

Support

TroubleshootingCommon IssuesRequest IDTroubleshooting GuideDownload
Documentation

Operating Modes

Toggle between interactive chat, autonomous agents, and code review modes.

CoderX operates in three distinct modes, letting you balance quick conversations, complete task automation, and pre-commit audits depending on your workflow.


The Three Operating Modes

Chat Mode (Ctrl+L)

Conversational assistant for querying code concepts, generating small snippets, and brainstorming architecture. Operates strictly in read-only mode.

Agent Mode (Autopilot)

Autonomous execution engine. Reads files, plans changes, executes write operations, and verifies output in the terminal.

Review Mode (Auditor)

Runs pre-commit reviews on your staged changes to detect bugs, logic errors, and security issues before you commit.


1. Chat Mode (Ctrl+L / Cmd+L)

Use Chat Mode for general Q&A and coding help. It has full read access to your active files, pinned files, and workspace symbols.

  • Interactive Context: Open chat alongside your file to explain functions or check typing definitions.
  • Symbol Navigation: Type @ to select files, folders, or specific AST definitions.
  • Ghost Code Suggestions: Code blocks generated in chat feature an Insert at Cursor button for quick insertion.

2. Agent Mode

Agent Mode runs the autonomous execution loop to solve complete tasks.

[!IMPORTANT] Agent Mode runs terminal commands and modifies workspace files. Make sure to review the implementation plan it generates before clicking Approve.

  • Task checklist: Tracks progress using task.md checkboxes.
  • Compile correction: Automatically fixes syntax errors by listening to terminal tracebacks.
  • Concurrently Spawning: Can spin up parallel sub-agents to handle auxiliary goals (like code coverage).

3. Review Mode

Review Mode acts as an automated pair programmer that audits your code before it reaches production.

How to Run a Review

  1. Stage your modifications using Git (git add).
  2. Open the Review Panel and click Start Review.
  3. The auditor parses the differences, highlights potential logic regressions or security leaks, and proposes changes.
  4. Optionally, type custom requests like "Review code structure for performance bottlenecks" to guide the audit focus.

The CoderX Agent

Power your development with an autonomous AI agent that writes, tests, and refactors code.

Review

AI-powered code review.

On this page

The Three Operating Modes1. Chat Mode (Ctrl+L / Cmd+L)2. Agent Mode3. Review ModeHow to Run a Review