AI-powered coding assistant
built for developers
Work with large language models directly in your terminal. Build, debug, and ship with an execution loop that keeps you in control. Describe what you need, and MiniCode handles the tools.
Multi-language roadmap: Rust and Python versions are now available.
- Inspecting code and repositories
- Writing, editing, and modifying files
- Running development commands
- Generating images (with MiniMax AI)
- Working with various file formats (PDF, DOCX, XLSX, PPTX)
- Following skill workflows (frontend-dev, fullstack-dev, flutter-dev, etc.)
Built with modern architectures
Meets you where you code
A minimalist design focusing on the core tool-calling execution loop, providing safety and high extensibility.
Core execution loop
MiniCode manages a full multi-step tool execution loop (model -> tool -> model) in a single turn, providing seamless context processing without leaving the terminal.
- Full-screen TUI with transcript scrolling
- Separation of progress and final answers
- Feedback injection upon rejection
You're in control
Safety shouldn't be an afterthought. MiniCode brings permission validation and code review straight into the primary execution pathway.
- Standard Unified Diff view before writing
- Path and command allowlist verification
- Interception of dangerous actions
Skills & MCP
Extend capabilities endlessly. MiniCode discovers local SKILL.md instructions and seamlessly mounts stdio Model Context Protocol (MCP) servers.
Built-in Toolchain
Local file system management, command execution, and MCP helpers are centralized through a standardized tool protocol, ready to be called by the model at any time.
Architecture
MiniCode is not a bloated platform. It's a precisely structured codebase centered around the main execution loop.
src/agent-loop.ts
The core multi-turn tool-calling loop that drives the entire asynchronous conversational logic.
src/permissions.ts
The security sentinel handling path allowlists, command reviews, and intercepting unauthorized writes.
src/mcp.ts
The external connector managing MCP client connections and wrapping remote tool functions for local execution.
src/background-tasks.ts
A minimal registry separating ephemeral foreground tools from persistent background shell tasks (like dev servers).