https://github.com/blaugold/claude-code-plugins
https://github.com/blaugold/claude-code-plugins
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/blaugold/claude-code-plugins
- Owner: blaugold
- Created: 2026-02-06T10:49:10.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-06T10:51:09.000Z (4 months ago)
- Last Synced: 2026-02-06T18:29:10.026Z (4 months ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Claude Code Plugins
A collection of plugins for [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
## Available Plugins
| Plugin | Description |
| ------------------------------------------------ | -------------------------------------------------------------------------- |
| [code-quality](plugins/code-quality) | Auto-fixes (ESLint/Prettier) after edits and quality gates before stopping |
| [dart-lsp](plugins/dart-lsp) | LSP integration for Dart files using the Dart Analysis Server |
| [vue-typescript-lsp](plugins/vue-typescript-lsp) | TypeScript Language Server with Vue support |
## Setup
### Add the Marketplace
Run the following slash command in Claude Code:
```
/plugin marketplace add blaugold/claude-code-plugins
```
### Browse and Install Plugins
List available plugins:
```
/plugin marketplace list
```
Install a plugin:
```
/plugin install @local-plugins
```
### Alternative: Settings File
Add the marketplace to your Claude Code settings file (`~/.claude/settings.json`
or `.claude/settings.json` in your project):
```json
{
"extraKnownMarketplaces": {
"local-plugins": {
"source": {
"source": "github",
"repo": "blaugold/claude-code-plugins"
}
}
}
}
```