A Claude Code skill marketplace for boosting AI-assisted development workflows.
Add this marketplace to Claude Code:
/plugin marketplace add aheritier/boost-your-aiThen restart Claude Code to load the skills.
Lightweight Java language server powered by jj-language-server. No JVM required — runs on Node.js, starts ~9x faster and uses ~7.5x less memory than Eclipse JDT.LS.
Prerequisites: Node.js >= 20, install via npm install -g jj-language-server
Features:
- Go to definition, find references, auto-completion
- Diagnostics, code formatting, rename symbol
- Code actions, semantic tokens
- Maven, Gradle, Lombok, and Spring Boot support
View jj-lsp Plugin Documentation
Once installed, Claude will automatically use these skills when relevant. For example:
- "Find all implementations of this interface" → Uses jj-lsp for Java code intelligence
- "Go to definition of this class" → Triggers jj-language-server
- "Show me all references to this method" → Uses lightweight Java LSP
- Create a new directory under
plugins/ - Add
.claude-plugin/plugin.jsonmanifest:{ "name": "your-plugin", "description": "Brief description of your plugin", "version": "1.0.0" } - Add skills under
skills/<skill-name>/SKILL.md - Submit a pull request
plugins/your-plugin/
├── .claude-plugin/
│ └── plugin.json # Required: Plugin manifest
├── README.md # Recommended: Installation guide
└── skills/
└── your-skill/
├── SKILL.md # Required: Skill instructions
└── references/ # Optional: Detailed documentation
Apache 2.0 - See LICENSE