• About Us
  • Disclaimer
  • Contact Us
  • Privacy Policy
Wednesday, July 22, 2026
mGrowTech
No Result
View All Result
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions
No Result
View All Result
mGrowTech
No Result
View All Result
Home Al, Analytics and Automation

Moonshot AI Releases Kimi Code CLI: A Terminal AI Coding Agent Built in TypeScript for Next-Gen Agents

Josh by Josh
June 6, 2026
in Al, Analytics and Automation
0
Moonshot AI Releases Kimi Code CLI: A Terminal AI Coding Agent Built in TypeScript for Next-Gen Agents


Moonshot AI has released Kimi Code CLI, an open-source coding agent that runs in the terminal. The tool reads and edits code, runs shell commands, searches files, and fetches web pages. It then chooses its next step based on the feedback it receives. The project is MIT-licensed and lives on GitHub..

Kimi Code CLI is the successor to the older kimi-cli. The new agent is written in TypeScript and distributed via npm. It works out of the box with Moonshot AI’s Kimi models. It can also be configured to use other compatible providers.

What is Kimi Code CLI

Kimi Code CLI is an AI agent for software development and terminal operations. It can implement new features, fix bugs, and complete refactors. It can also explore an unfamiliar codebase and answer architecture questions. Batch file processing, builds, and chained test runs are supported too.

The execution model is feedback-driven. The agent plans steps, modifies code, runs tests, and reports its actions. Read-only operations run automatically by default. For file edits or shell commands, the agent asks for confirmation first. This approval flow keeps risky actions under developer control.

The CLI itself is free and MIT-licensed. Model access requires Kimi Code OAuth or a Moonshot AI Open Platform API key.

https://github.com/MoonshotAI/kimi-code

Key Features

Moonshot lists several features aimed at long, focused agent sessions:

  • Single-binary distribution. One command installs it, with no Node.js setup required.
  • Fast startup. Moonshot says the TUI is ready in milliseconds.
  • Purpose-built TUI. The interface is tuned for extended agent sessions.
  • Video input. Drop a screen recording or demo clip into the chat.
  • AI-native MCP configuration. Add and authenticate Model Context Protocol servers via /mcp-config.
  • Subagents for parallel work. Dispatch built-in coder, explore, and plan subagents in isolated contexts.
  • Lifecycle hooks. Run local commands to gate tool calls, audit decisions, or trigger notifications.

Installation and First Run

Two installation paths exist. The official script needs no pre-installed Node.js.

On macOS or Linux, run the install script:

curl -fsSL https://code.kimi.com/kimi-code/install.sh | bash

On Windows, use PowerShell:

irm https://code.kimi.com/kimi-code/install.ps1 | iex

The global npm install requires Node.js 24.15.0 or later:

npm install -g @moonshot-ai/kimi-code

Verify the binary, then open a project and start the interactive UI:

kimi --version
cd your-project
kimi

On first launch, type /login inside the UI. You can choose Kimi Code OAuth or a Moonshot AI Open Platform API key. To run one instruction without the UI, use kimi -p "your task". To resume the previous session, add -C.

Use Cases

  • Understanding a project: Ask for an architecture overview and a module dependency diagram.
  • Implementing a feature: Describe the signature, options, and acceptance criteria up front.
  • Fixing a bug: Give the symptom, reproduction steps, and expected behavior together.
  • Writing tests and refactoring: Extract repeated patterns, then run tests to confirm behavior.
  • One-off automation: Analyze logs and output call counts with p50 and p99 latencies.
  • Scheduled tasks: Ask the agent to set reminders or recurring checks via cron.

Plan mode is available through Shift-Tab or kimi --plan. It outputs a research plan before touching files. For safe batch work, --yolo or /yolo skips approval prompts. The /fork command creates an experimental branch you can abandon. The /compact command compresses context to free up tokens. For large investigations, the main agent can dispatch subagents in parallel.

How Kimi Code CLI Compares

Kimi Code CLI joins several established terminal coding agents. The table below compares it with three of them. Competitor details reflect mid-2026 and can change quickly.

Attribute Kimi Code CLI Claude Code OpenAI Codex CLI Gemini CLI
Developer Moonshot AI Anthropic OpenAI Google
Backing model Kimi models Claude models GPT-5.3-Codex Gemini 2.5 Pro
Language / runtime TypeScript Node.js Rust TypeScript
Install Script or npm (Node.js ≥ 24.15.0) Native installer or npm npm / native npm single binary
MCP support Yes (/mcp-config) Yes Yes Yes
Subagents Yes (coder, explore, plan) Yes Yes No (sequential)
Plan mode Yes (Shift-Tab) Yes Yes Yes
IDE integration ACP (Zed, JetBrains) VS Code, JetBrains VS Code, IDEs VS Code (Code Assist)
License MIT Proprietary Open source Apache 2.0

All four agents support the Model Context Protocol. They differ on backing model, language, license, and orchestration. Kimi Code CLI and Codex CLI both ship native subagents. Gemini CLI runs tasks sequentially without subagent support.

Key Takeaways

  • Kimi Code CLI is an MIT-licensed terminal coding agent from Moonshot AI.
  • It is written in TypeScript and installs via script or npm.
  • Built-in coder, explore, and plan subagents run in isolated contexts.
  • MCP servers are configured conversationally through /mcp-config, not raw JSON.
  • It succeeds kimi-cli and migrates existing configuration and sessions.

Marktechpost’s Visual Explainer


Kimi Code CLI · Guide
01 / 09

Overview

Kimi Code CLI

Moonshot AI’s open-source terminal coding agent that reads code, runs commands, and plans its next step.

  • Runs in your terminal as an AI coding agent
  • MIT-licensed · written in TypeScript · distributed via npm
  • Works with Kimi models or other compatible providers

Slide 02

What Is Kimi Code CLI?

  • Reads and edits code, runs shell commands, searches files
  • Fetches web pages and chooses the next step from feedback
  • Read-only actions run automatically by default
  • File edits and shell commands ask for confirmation first

Slide 03

Key Features

  • Single-binary distribution — no Node.js setup required
  • Built-in coder, explore, and plan subagents
  • AI-native MCP configuration via /mcp-config
  • Lifecycle hooks and video input support

Slide 04

Install

macOS / Linux

curl -fsSL https://code.kimi.com/kimi-code/install.sh | bash

Windows (PowerShell)

irm https://code.kimi.com/kimi-code/install.ps1 | iex

npm (Node.js 24.15.0+)

npm install -g @moonshot-ai/kimi-code

Slide 05

First Run

kimi --version
cd your-project
kimi
  • Type /login → Kimi Code OAuth or Moonshot API key
  • kimi -p "your task" runs one instruction without the UI
  • kimi -C resumes the previous session

Slide 06

Use Cases

  • Understand a project: architecture overview and dependency map
  • Implement features with clear signatures and acceptance criteria
  • Fix bugs from symptom, reproduction steps, and expected behavior
  • Write tests, refactor, and automate log analysis or batch edits

Slide 07

Modes & Commands

  • Plan mode: Shift-Tab or kimi --plan
  • --yolo or /yolo skips approvals for safe batch work
  • /fork creates an experimental branch you can abandon
  • /compact compresses context to free up tokens

Slide 08

How It Compares

Attribute Kimi Code CLI Claude Code Codex CLI Gemini CLI
Model Kimi models Claude models GPT-5.3-Codex Gemini 2.5 Pro
Language TypeScript Node.js Rust TypeScript
Subagents Yes Yes Yes No
License MIT Proprietary Open source Apache 2.0

Slide 09

Key Takeaways

  • MIT-licensed terminal coding agent from Moonshot AI
  • Written in TypeScript; installs via script or npm
  • coder, explore, plan subagents in isolated contexts
  • MCP configured conversationally, not raw JSON
  • Succeeds kimi-cli; migrates config and sessions


Check out the GitHub Repo here. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us


Michal Sutter is a data science professional with a Master of Science in Data Science from the University of Padova. With a solid foundation in statistical analysis, machine learning, and data engineering, Michal excels at transforming complex datasets into actionable insights.



Source_link

READ ALSO

Poolside Releases Laguna S 2.1, an Open-Weight Agentic Coding Model Punching Above Its Weight Class on SWE-Bench Multilingual

Meta Open-Sources Astryx: An Agent-Ready React Design System With 150+ Accessible Components, Seven Themes, and a CLI

Related Posts

Poolside Releases Laguna S 2.1, an Open-Weight Agentic Coding Model Punching Above Its Weight Class on SWE-Bench Multilingual
Al, Analytics and Automation

Poolside Releases Laguna S 2.1, an Open-Weight Agentic Coding Model Punching Above Its Weight Class on SWE-Bench Multilingual

July 22, 2026
Meta Open-Sources Astryx: An Agent-Ready React Design System With 150+ Accessible Components, Seven Themes, and a CLI
Al, Analytics and Automation

Meta Open-Sources Astryx: An Agent-Ready React Design System With 150+ Accessible Components, Seven Themes, and a CLI

July 21, 2026
Alibaba’s Tongyi Lab Releases Qwen-Audio-3.0-TTS, a Hosted Text-to-Speech Model in Flash and Plus Tiers Across 16 Languages
Al, Analytics and Automation

Alibaba’s Tongyi Lab Releases Qwen-Audio-3.0-TTS, a Hosted Text-to-Speech Model in Flash and Plus Tiers Across 16 Languages

July 21, 2026
Best Local LLMs You Can Run on a Single 24GB GPU in 2026: Qwen, Gemma, Mistral, DeepSeek Compared
Al, Analytics and Automation

Best Local LLMs You Can Run on a Single 24GB GPU in 2026: Qwen, Gemma, Mistral, DeepSeek Compared

July 20, 2026
Someone Fine-Tuned OpenBMB’s MiniCPM5-1B on Claude Fable 5 Traces to Ship a 657MB Local Thinking Model
Al, Analytics and Automation

Someone Fine-Tuned OpenBMB’s MiniCPM5-1B on Claude Fable 5 Traces to Ship a 657MB Local Thinking Model

July 20, 2026
Perplexity AI Releases WANDR: An Open Benchmark Evaluating Research Agents That Must Search Wide And Deep
Al, Analytics and Automation

Perplexity AI Releases WANDR: An Open Benchmark Evaluating Research Agents That Must Search Wide And Deep

July 19, 2026
Next Post
The Trump administration might take an equity stake in OpenAI

The Trump administration might take an equity stake in OpenAI

POPULAR NEWS

Trump ends trade talks with Canada over a digital services tax

Trump ends trade talks with Canada over a digital services tax

June 28, 2025
15 Trending Songs on TikTok in 2025 (+ How to Use Them)

15 Trending Songs on TikTok in 2025 (+ How to Use Them)

June 18, 2025
Communication Effectiveness Skills For Business Leaders

Communication Effectiveness Skills For Business Leaders

June 10, 2025
App Development Cost in Singapore: Pricing Breakdown & Insights

App Development Cost in Singapore: Pricing Breakdown & Insights

June 22, 2025
Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025

Comparing the Top 7 Large Language Models LLMs/Systems for Coding in 2025

November 4, 2025

EDITOR'S PICK

The crucial human component in computing and AI | MIT News

The crucial human component in computing and AI | MIT News

June 6, 2026
We’re Open for Christmas! – Direct Mail Solutions

We’re Open for Christmas! – Direct Mail Solutions

December 8, 2025
NotebookLM for Business: Unlocking Valuable Insights

NotebookLM for Business: Unlocking Valuable Insights

May 30, 2025
AI Agentic Use Cases for ABM

AI Agentic Use Cases for ABM

December 4, 2025

About

We bring you the best Premium WordPress Themes that perfect for news, magazine, personal blog, etc. Check our landing page for details.

Follow us

Categories

  • Account Based Marketing
  • Ad Management
  • Al, Analytics and Automation
  • Brand Management
  • Channel Marketing
  • Digital Marketing
  • Direct Marketing
  • Event Management
  • Google Marketing
  • Marketing Attribution and Consulting
  • Marketing Automation
  • Mobile Marketing
  • PR Solutions
  • Social Media Management
  • Technology And Software
  • Uncategorized

Recent Posts

  • How Visit Philadelphia turned 3,000 voicemails into 2 million impressions
  • LinkedIn Wend Answer Today for July 21, 2026 (Puzzle #43)
  • France Will Ban Social Media For Children Under 15
  • Poolside Releases Laguna S 2.1, an Open-Weight Agentic Coding Model Punching Above Its Weight Class on SWE-Bench Multilingual
  • About Us
  • Disclaimer
  • Contact Us
  • Privacy Policy
No Result
View All Result
  • Technology And Software
    • Account Based Marketing
    • Channel Marketing
    • Marketing Automation
      • Al, Analytics and Automation
      • Ad Management
  • Digital Marketing
    • Social Media Management
    • Google Marketing
  • Direct Marketing
    • Brand Management
    • Marketing Attribution and Consulting
  • Mobile Marketing
  • Event Management
  • PR Solutions