fix(plugin): restructure to .claude-plugin for Claude Code compatibility#600
Merged
JasonXuDeveloper merged 1 commit intomasterfrom Jan 29, 2026
Merged
Conversation
- Rename claude-plugin/ to .claude-plugin/ (required by Claude Code) - Rename claude.json to plugin.json (expected filename) - Fix plugin.json schema (author as object, skills as directory paths) - Update all references in READMEs and CI workflow Claude Code expects .claude-plugin/plugin.json at repo root for marketplace-based plugins. Signed-off-by: JasonXuDeveloper - 傑 <jason@xgamedev.net>
There was a problem hiding this comment.
Pull request overview
This PR restructures the Claude Code plugin to comply with Claude Code's marketplace requirements by renaming the directory from claude-plugin/ to .claude-plugin/ and the configuration file from claude.json to plugin.json. The schema has been updated to match Claude Code's expected format.
Changes:
- Renamed plugin directory to hidden directory
.claude-plugin/for Claude Code marketplace compatibility - Renamed
claude.jsontoplugin.jsonwith updated schema (author as object, skills as directory paths instead of glob patterns) - Added new plugin files:
CLAUDE.mdand four skill documentation files (jaction, jobjectpool, messagebox, editor-ui) - Updated all references in README files, CI workflow, and maintenance documentation
Reviewed changes
Copilot reviewed 8 out of 13 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
claude-plugin/claude.json |
Deleted old configuration file |
.claude-plugin/plugin.json |
New configuration with updated schema matching Claude Code requirements |
.claude-plugin/CLAUDE.md |
Added main framework documentation with key patterns |
.claude-plugin/skills/jaction/SKILL.md |
Added JAction API documentation with usage patterns |
.claude-plugin/skills/jobjectpool/SKILL.md |
Added JObjectPool API documentation |
.claude-plugin/skills/messagebox/SKILL.md |
Added MessageBox API documentation |
.claude-plugin/skills/editor-ui/SKILL.md |
Added comprehensive Editor UI components documentation |
.claude-plugin/README.md |
Updated installation instructions for new directory structure |
.claude-plugin/marketplace.json |
Updated path reference to .claude-plugin |
README.md |
Updated link to point to .claude-plugin/ directory |
README_zh_cn.md |
Updated link to point to .claude-plugin/ directory |
.github/workflows/release-plugin.yml |
Updated all path references and file operations for new structure |
.claude/rules/plugin-maintenance.md |
Updated all documentation references to use .claude-plugin/ paths |
💡 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
claude-plugin/to.claude-plugin/(required by Claude Code)claude.jsontoplugin.json(expected filename)plugin.jsonschema (author as object, skills as directory paths)Context
Claude Code expects
.claude-plugin/plugin.jsonat repo root for marketplace-based plugin discovery. The previous structure was not recognized.Test Plan
claude plugin marketplace add JasonXuDeveloper/JEngineclaude plugin install jengine@jengine-marketplaceclaude plugin list🤖 Generated with Claude Code