원클릭으로
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