fix(install): point kimi platform to .kimi-code skills dir - #685
Merged
Merged
Conversation
The Kimi CLI renamed its config directory from ~/.kimi to ~/.kimi-code, but the installer still linked skills into the legacy ~/.kimi/skills path where the current binary never reads them. Update the platform table so kimi skills land in /home/lyd/.kimi-code/skills.
Collaborator
|
Thanks |
This was referenced Sep 11, 2026
Lum1104
pushed a commit
that referenced
this pull request
Sep 11, 2026
… dir #685 moved the kimi target in install.sh to ~/.kimi-code/skills because the Kimi CLI renamed its config directory and no longer reads the legacy ~/.kimi/skills path, but install.ps1 still linked skills into ~/.kimi/skills. Windows users installing for kimi therefore got links the current binary never reads, and the two installers disagreed. tests/install/platform-table-consistency.test.mjs already asserts that both scripts resolve to the same skills target, so this is also what leaves "Test skill" red on main since #685. Co-Authored-By: Claude Code <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Kimi CLI migrated its config directory from
~/.kimito~/.kimi-code, butinstall.shstill links skills into the legacy~/.kimi/skillspath, which the current binary never reads. Skills installed for thekimiplatform are therefore invisible to the CLI.Change
Update the platform table entry so
kimiskills are linked into$HOME/.kimi-code/skills:Verification
After the fix,
./install.sh kimicreates~/.kimi-code/skills/understand-anything → <plugin>/skills, alongside the user's existing skills, and the CLI picks it up.Notes
Found while troubleshooting on a machine where
~/.kimi-code/bin/kimiis the active binary yet the installer wrote the symlink to the unused~/.kimi/skills.