ワンクリックで
kimi-code
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
AI agent skill that enforces minimal code output — 80-94% less code, prevents over-engineering
| name | kimi-code |
| description | Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["ai-agent","coding","cli","multimodal","mcp"],"related_skills":["claude-code","opencode"]}} |
A terminal-based AI coding agent from Moonshot AI with video input support, sub-agent orchestration, MCP tool integration, and ACP editor connections. Ships as a single binary.
# Install via npm
npm install -g @moonshotai/kimi-code
# Or download binary from GitHub releases
# https://github.com/MoonshotAI/kimi-code/releases
# Start interactive session
kimi-code
# Single-shot coding task
kimi-code "add error handling to the auth module"
# Use video input for visual context
kimi-code --video screenshot.png "fix this UI bug"
# Configure MCP servers
kimi-code --mcp-server filesystem --mcp-server github
# Use MCP tools in coding sessions
kimi-code "use the github tool to create a PR for these changes"
# Spawn sub-agents for parallel tasks
kimi-code "refactor the database layer and write tests in parallel"
# Connect to VS Code via ACP
kimi-code --acp-editor vscode
# Connect to Cursor via ACP
kimi-code --acp-editor cursor
# Verify installation
kimi-code --version
# Test basic functionality
echo "print('hello')" > test.py
kimi-code "add a docstring to this function" test.py
cat test.py