一键导入
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