Claude code plugin#1
Open
rushabh-qrstuff wants to merge 2 commits into
Open
Conversation
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.
Jira ticket link
https://qrcg.atlassian.net/browse/T26-841
Describe your changes
Problem:
Previously, the
claude-code-pluginsrepository contained only the barebones configuration for the Claude Code plugin. It was missing key instruction files (the skills contract) that tell Claude Code how/when to use the QRStuff tools and how to handle customprefab-uirendering layouts. Additionally, it lacked support/configuration files to pack the server as a Claude Desktop Extension using the new.mcpbbundle specification.Solution & Implementation:
We have fully implemented the required files and structured the repository to support both Claude Code and Claude Desktop:
Claude Code Skills Integration:
plugins/qrstuff-mcp-server/skills/CLAUDE.md: Provides detailed rules instructing Claude Code on how to use the 21 tools (QR code management, project filtering, and scan analytics) and how to parse/render theprefab-uilayouts (DataTable,BarChart,Column,Row, etc.) into markdown.plugins/qrstuff-mcp-server/.claude-plugin/plugin.json: Linked the new./skills/directory to the plugin manifest.Claude Desktop Extension Support:
plugins/qrstuff-mcp-server/desktop/manifest.json: Added a bundle configuration manifest matching the official.mcpb(MCP Bundle) schema, enabling one-click extension packaging and installation inside the Claude Desktop UI.Documentation and Formatting:
README.md: Added complete step-by-step guides and commands for both Claude Code (via/pluginslash commands) and Claude Desktop (via.mcpbbundle packages or manualclaude_desktop_config.jsonentries).npx prettierto ensure code consistency.