feat(skills): add kimi-cli-help built-in skill#595
Conversation
Add a skill to help users with Kimi CLI usage, configuration, and troubleshooting questions by consulting official documentation and source code when appropriate.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ab9838382e
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| | Installation, first run | `/en/guides/getting-started.md` | | ||
| | Config files | `/en/configuration/config-files.md` | | ||
| | Providers, models | `/en/configuration/providers.md` | | ||
| | Environment variables | `/en/configuration/env-vars.md` | | ||
| | Slash commands | `/en/reference/slash-commands.md` | |
There was a problem hiding this comment.
Point topic map to real doc URLs
The topic mapping hardcodes .md paths (e.g., /en/guides/getting-started.md), but the docs site is built with VitePress and links to extensionless or .html routes (see docs/.vitepress/config.ts and README.md links). If the skill uses this table instead of llms.txt, these .md URLs will 404 and the help flow will fail to load docs. Consider switching the mapping to the published routes (e.g., /en/guides/getting-started or .html).
Useful? React with 👍 / 👎.
There was a problem hiding this comment.
Pull request overview
This PR adds a new built-in skill kimi-cli-help that provides the agent with structured guidance for answering user questions about Kimi CLI. The skill defines a three-tier strategy: prefer official documentation, read local source when in the project, and clone/explore source for complex internals (with user confirmation).
Key Changes
- New skill with comprehensive documentation index and topic mapping table
- Strategy for when to consult docs vs. source code
- Support for both English and Chinese documentation paths
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Summary
Add a new built-in skill
kimi-cli-helpto help users with Kimi CLI usage, configuration, and troubleshooting questions.Strategy
The skill guides the agent to:
Includes