feat: Add Qoder platform support#470
Open
GabeChain wants to merge 1 commit into
Open
Conversation
Collaborator
|
Can you provide the link to the document of Qoder? |
- Add .qoder-plugin/plugin.json for auto-discovery (matching .cursor-plugin format) - Add qoder platform to install.sh and install.ps1 with symlink support - Add Qoder auto-discovery tip in both install scripts - Add .qoder-plugin/** to eslint.config.mjs ignores - Add qoder-plugin keyword to package.json - Update CLAUDE.md versioning section to include .qoder-plugin/plugin.json (six manifests) - Update PR template to reference six manifests instead of five - Fix missing Trae platform entries in all 7 translated READMEs (pre-existing inconsistency) - Update README.md and all 7 translations (zh-CN, zh-TW, ja-JP, ko-KR, es-ES, ru-RU, tr-TR) with: - Qoder section in Multi-Platform Installation - Qoder badge and one-line install heading - Qoder row in Platform Compatibility table
9e01aec to
09bb5d3
Compare
Author
my pleasure.Here's the doc of Qoder: https://docs.qoder.com/zh/extensions/plugins. |
Collaborator
|
Seems it only accept the plugin from their official marketplace. We use the install.sh is fine, check here: https://docs.qoder.com/zh/extensions/skills#3-%E6%89%8B%E5%8A%A8%E5%88%9B%E5%BB%BA |
Author
I know it's all about skill.So I added an option for |
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
This PR adds full Qoder platform support to Understand-Anything, following the same pattern used for Cursor (
.cursor-plugin/plugin.json) and VS Code Copilot (.copilot-plugin/plugin.json).Motivation
Qoder is a growing AI-powered IDE that supports plugin auto-discovery via the
.qoder-plugin/directory convention. Adding support is straightforward and ensures Understand-Anything is available to Qoder users out of the box — both through auto-discovery (when the repo is opened directly) and through the one-line installer for personal/global skills.Changes
New Files
.qoder-plugin/plugin.json— Plugin manifest for Qoder auto-discovery, mirroring the.cursor-plugin/plugin.jsonformat withskillsandagentspaths pointing tounderstand-anything-plugin/.Install Scripts
install.sh— Addedqoderto the platform table (~/.qoder/skills, per-skill style) and a Qoder-specific auto-discovery tip after installation.install.ps1— Addedqoderto the$Platformshashtable and a matching auto-discovery tip for Windows users.Configuration
eslint.config.mjs— Added**/.qoder-plugin/**to the ignores list to prevent lint from scanning the plugin manifest directory.package.json— Addedqoder-pluginkeyword alongside the existingclaude-pluginkeyword for discoverability.Documentation (README.md + 7 translations)
Updated all language versions of the README:
README.md(English)READMEs/README.zh-CN.md(简体中文)READMEs/README.zh-TW.md(繁體中文)READMEs/README.ja-JP.md(日本語)READMEs/README.ko-KR.md(한국어)READMEs/README.es-ES.md(Español)READMEs/README.ru-RU.md(Русский)READMEs/README.tr-TR.md(Türkçe)Each README now includes:
qoderappended to the supported<platform>values listinstall.sh qodercommandTesting
install.shplatform table includesqoderand resolves correctly.qoder-plugin/plugin.jsonfollows the same schema as.cursor-plugin/plugin.jsonFiles Changed (13 files)
Thank you for reviewing! Happy to make any adjustments if needed. 🙏