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.
179
180
181
182
183
184
185
186
187
pub async fn init_portal_services(&self) -> Result<(), PortalError> {
- let db_pool = self.pg_pool.clone(); self.start_webhook_listener(db_pool).await?;
Ok(())
}
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.
Bootstraps the local MPC workspace watcher and connects to the active port.
Executes files searches, analyzes code complexity, and routes the changes across agents.
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.