docs(agents): convert install shell snippets to markdown refs

This commit is contained in:
Ryan Yin
2026-03-21 22:20:50 +08:00
parent df3805c0d4
commit 3283e990b2
5 changed files with 129 additions and 123 deletions

33
agents/install-cli.md Normal file
View File

@@ -0,0 +1,33 @@
# Agent CLI Commands
Reference commands for installing and updating agent CLIs. Run only the commands you need.
## Install CLIs
```bash
# codex
npm i -g @openai/codex
# opencode
npm install -g opencode-ai
# kimi-cli
uv tool install --python 3.13 kimi-cli
uv tool upgrade kimi-cli --no-cache
# gemini-cli
npm install -g @google/gemini-cli
```
## Optional tooling
```bash
# context7: up-to-date docs and code examples for LLMs and agents
npx ctx7 setup
```
## Update npm-installed agent tools
```bash
npm update -g
```