Boost Your Ai banner
aheritier aheritier

Boost Your Ai

AI community

Description

Claude Code skill marketplace for AI-assisted development

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Boost Your AI

A Claude Code skill marketplace for boosting AI-assisted development workflows.

Installation

Add this marketplace to Claude Code:

/plugin marketplace add aheritier/boost-your-ai

Then restart Claude Code to load the skills.

Available Skills

jj-lsp (`jj-lsp`)

Lightweight Java language server powered by [jj-language-server](https://github.com/jdubois/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](./plugins/jj-lsp/README.md)

Usage

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

Contributing

Adding a New Plugin

  1. Create a new directory under plugins/
  2. Add .claude-plugin/plugin.json manifest:
    {
      "name": "your-plugin",
      "description": "Brief description of your plugin",
      "version": "1.0.0"
    }
  3. Add skills under skills//SKILL.md
  4. Submit a pull request

Plugin Structure

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

License

Apache 2.0 - See [LICENSE](./LICENSE)

Author

[Arnaud Héritier](https://github.com/aheritier)