feat(host): add the Compose Semantics Inspector to the official plugin catalog - #221
Merged
Merged
Conversation
The plugin was published to Maven Central but missing from OfficialPluginCatalog, so it could only be installed by pasting coordinates into the "Install from Maven" dialog. Listing it in the catalog makes it a one-click install under Settings -> Plugins -> Add Plugins -> Official Plugins, and lets an agent install it through `jetwhale.installOfficialPlugin`, which only accepts catalog entries. Docs updated to match.
Contributor
There was a problem hiding this comment.
Pull request overview
Adds the Compose Semantics Inspector host plugin to the host-side OfficialPluginCatalog, making it installable via the in-app “Official Plugins” flow (and available to the MCP “install official plugin” pathway), and updates the docs to match.
Changes:
- Add
com.kitakkun.jetwhale.semantics/jetwhale-compose-semantics-inspectortoOfficialPluginCatalog. - Update Host Settings docs to include Compose Semantics Inspector in the official catalog list.
- Update the Compose Semantics Inspector guide to describe one-click installation from the official catalog.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
jetwhale-host/core/model/src/main/kotlin/com/kitakkun/jetwhale/host/model/OfficialPluginCatalog.kt |
Adds the new official plugin entry (pluginId/artifactId/display metadata) so the host and MCP tool can install it by catalog entry. |
docs/guide/host-settings.md |
Updates the “Official Plugins” documentation to list Compose Semantics Inspector alongside the existing catalog entries. |
docs/guide/compose-semantics-inspector.md |
Switches installation instructions from manual Maven coordinates to the official catalog one-click install path. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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 Compose Semantics Inspector host plugin is published to Maven Central as
com.kitakkun.jetwhale:jetwhale-compose-semantics-inspector, but it was never listed inOfficialPluginCatalog— so the only way to install it was to paste coordinates into Install from Maven.This adds the catalog entry, which makes it installable from the app in one click.
Changes
OfficialPluginCatalog— newOfficialPluginentry (pluginId = com.kitakkun.jetwhale.semantics,artifactId = jetwhale-compose-semantics-inspector). It surfaces in two places at once, since both read the same catalog:jetwhale.installOfficialPluginMCP tool, which by design only accepts catalog entries.No publishing changes were needed: the module already configures
jetwhalePublish, andinstallCandidatesForfalls back to the matching-SNAPSHOTfor host versions whose plugin release is not out yet.Testing
./gradlew :jetwhale-host:core:model:test :jetwhale-host:core:mcp:test :jetwhale-host:feature:settings:compileKotlin