Asi kimi-cli-help
Answer Kimi Code CLI usage, configuration, and troubleshooting questions. Use when user asks about Kimi Code CLI installation, setup, configuration, slash commands, keyboard shortcuts, MCP integration, providers, environment variables, how something works internally, or any questions about Kimi Code CLI itself.
install
source · Clone the upstream repo
git clone https://github.com/plurigrid/asi
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/plurigrid/asi "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/kimi-cli-help" ~/.claude/skills/plurigrid-asi-kimi-cli-help && rm -rf "$T"
manifest:
skills/kimi-cli-help/SKILL.mdsource content
Kimi Code CLI Help
Help users with Kimi Code CLI questions by consulting documentation and source code.
Strategy
- Prefer official documentation for most questions
- Read local source when in kimi-cli project itself, or when user is developing with kimi-cli as a library (e.g., importing from
in their code)kimi_cli - Clone and explore source for complex internals not covered in docs - ask user for confirmation first
Documentation
Base URL:
https://moonshotai.github.io/kimi-cli/
Fetch documentation index to find relevant pages:
https://moonshotai.github.io/kimi-cli/llms.txt
Page URL Pattern
- English:
https://moonshotai.github.io/kimi-cli/en/... - Chinese:
https://moonshotai.github.io/kimi-cli/zh/...
Topic Mapping
| Topic | Page |
|---|---|
| Installation, first run | |
| Config files | |
| Providers, models | |
| Environment variables | |
| Slash commands | |
| CLI flags | |
| Keyboard shortcuts | |
| MCP | |
| Agents | |
| Skills | |
| FAQ | |
Source Code
Repository:
https://github.com/MoonshotAI/kimi-cli
When to read source:
- In kimi-cli project directory (check
forpyproject.toml
)name = "kimi-cli" - User is importing
as a library in their projectkimi_cli - Question about internals not covered in docs (ask user before cloning)