feat: add Kimi Code plugin manifest#109
Merged
Merged
Conversation
Melkeydev
requested changes
Jul 5, 2026
Melkeydev
left a comment
Collaborator
There was a problem hiding this comment.
Let's uptick the version for all the deps and then LGTM
Melkeydev
approved these changes
Jul 6, 2026
19bdf8d to
7ca516e
Compare
Contributor
Author
|
Rebased and signed — approval went stale, could you re-approve to merge? |
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
Add
.kimi-plugin/plugin.json, a plugin manifest for Kimi Code, so the Vercel plugin can be installed and used in Kimi Code alongside the existing Claude Code (.claude-plugin/), Cursor (.cursor-plugin/), and open-plugin (.plugin/) manifests.What it includes
skills:./skills— all 29 Vercel skills, available on-demandcommands:./commands— the 5 slash commands (/vercel-plugin:deploy, etc.)mcpServers: thevercelHTTP MCP server (https://mcp.vercel.com)name,version,description,keywords,homepage,license,author,interface)What it intentionally omits
hooks: the existinghooks/hooks.jsonhandlers are Claude-Code-specific (they reference${CLAUDE_PLUGIN_ROOT}and write toCLAUDE.md, which Kimi Code does not read). Porting them needs a Kimi-compatible handler, which can be a follow-up.agents: Kimi Code does not yet support plugin-provided sub-agents. This can be added once it does.Verification
bun run validate --coverage skippasses (the validate script checks.plugin/plugin.jsononly and is unaffected by the new.kimi-plugin/plugin.json).