Phase 3 Engine

Neuron Autocode™

The primary autonomous environment for software engineering. Forked directly from VS Code and backed by the **Autocode CLI**, Autocode coordinates multiple agents (Antigravity, Claude Code, Grok CLI) locally using the **Neuron Cortex** memory layer.

workspace.code-workspace — Neuron Autocode IDE
Cortex Bridge: Connected
Workspace Explorer
src/
main.rs
portal_api.rs
Cargo.toml
NEURON_CONTEXT.md
Agent Dispatch Matrix
Loop Guardian Limit: 3 Loops Max
Input Reduction: 73.4% Saved
portal_api.rs
main.rs
Rust Analyzer: Ready
178
179
180
181
182
183
184
185
186
187
// Initialize payments and database pools
pub async fn init_portal_services(&self) -> Result<(), PortalError> {
- let db_pool = self.pg_pool.clone();     self.start_webhook_listener(db_pool).await?;
    Ok(())
}
// Autocode Integrated Shell Daemon
$ autocode run "Add PostgreSQL database connection fallback to SQLite when pg_pool is None"
Active Task: IDLE

The Autocode CLI Engine

Autocode is built on a highly optimized Rust CLI daemon. It acts as the orchestration layer on your local machine, feeding context to your IDE window.

$ autocode start

Bootstraps the local MPC workspace watcher and connects to the active port.

$ autocode run <prompt>

Executes files searches, analyzes code complexity, and routes the changes across agents.

$ autocode status

Retrieves active loop guard tallies and total tokens optimized by the AST compiler.

The Autocode IDE Fork

Autocode compiles down to a custom standalone desktop code editor (based on the VS Code open-source core). This provides visual support for multi-agent workflows:

  • Built-in Terminal Connection: The IDE handles file inputs and executes shell tests directly.
  • Active Loop Protection: Integrates Loop Guardian directly in the lower status tray.
  • Interactive Diff Resolution: Review and resolve conflicting code modifications visually.
  • Extension Support: Fully compatible with the VS Code marketplace.