Claude Code Plugins

Community-maintained marketplace

Feedback

|

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name install
description Development tool installation dispatcher for bazzite-ai. Installs Claude Code, pixi, chunkhound, bcvk, linters, flatpaks, and more. Use when users need to install standalone developer tools (not services with lifecycle management).

Install - Development Tool Installer

Overview

The install command is a unified dispatcher for installing standalone development tools. For services with lifecycle management (start/stop/logs), use their dedicated commands.

Key Concept: This is for standalone tools only. Use ujust jupyter install, ujust runners install, or ujust jellyfin install for managed services.

Quick Reference

Development Tools

Program Command Description
Claude Code ujust install claude-code-npm Claude Code AI CLI (npm)
Pixi ujust install pixi Conda-compatible package manager
Chunkhound ujust install chunkhound Semantic code search MCP
Devcontainers CLI ujust install devcontainers-cli Dev Container CLI
TweakCC ujust install tweakcc Claude Code customization
ccstatusline ujust install ccstatusline Claude Code statusline widget
Chrome Extension Fix ujust install chrome-extension-fix Fix Claude extension
GitHub MCP ujust install github-mcp-server GitHub MCP server
Chrome DevTools MCP ujust install chrome-devtools-mcp Chrome DevTools MCP
Kind ujust install kind [VERSION] Kubernetes in Docker
Minikube ujust install minikube [VERSION] Local Kubernetes
bcvk ujust install bcvk bootc virtualization kit
Linters ujust install linters Code linting tools
Homebrew ujust install homebrew Homebrew package manager
AppImage Manager ujust install appimage-manager Gear Lever AppImage manager
Gemini CLI ujust install gemini-cli Google Gemini CLI
Firebase CLI ujust install firebase-cli Firebase project management
Wrangler ujust install wrangler Cloudflare Workers CLI

Meta-Installers

Program Command Description
Dev Tools ujust install dev-tools [COMPONENT] Install tool groups
Kubernetes ujust install kubernetes-tools Kind + Minikube

Flatpak Categories

Category Command Description
Dev ujust install flatpaks-dev Development flatpaks
Media ujust install flatpaks-media Media & graphics
Gaming ujust install flatpaks-gaming Gaming tools
Communication ujust install flatpaks-communication Chat apps
Productivity ujust install flatpaks-productivity Office tools
Utilities ujust install flatpaks-utilities Utility apps
Experimental ujust install flatpaks-experimental Experimental apps
Streaming ujust install flatpaks-streaming Streaming clients
All ujust install flatpaks-all All flatpaks

Common Installations

AI Development Setup

# Install Claude Code
ujust install claude-code-npm

# Install Chunkhound for code search
ujust install chunkhound

# Install GitHub MCP server
ujust install github-mcp-server

# Install Chrome DevTools MCP (for browser automation)
ujust install chrome-devtools-mcp

Python/ML Development

# Install Pixi (Conda-compatible, faster)
ujust install pixi

# Install development flatpaks
ujust install flatpaks-dev

Kubernetes Development

# Install both Kind and Minikube
ujust install kubernetes-tools

# Or individually
ujust install kind
ujust install minikube

VM Testing

# Install bcvk for bootc VM testing
ujust install bcvk

Dev Tools Meta-Installer

Install groups of tools at once:

# Quick essentials
ujust install dev-tools quick

# Core development tools
ujust install dev-tools core

# Claude Code ecosystem
ujust install dev-tools claude

# Code quality tools
ujust install dev-tools quality

# Extra utilities
ujust install dev-tools extras

# Google tools (Gemini, Firebase)
ujust install dev-tools google

# Full development environment
ujust install dev-tools environment

Component Groups

Component Includes
quick claude-code-npm, pixi
core quick + homebrew, linters
claude chunkhound, github-mcp, tweakcc, ccstatusline
quality linters, devcontainers-cli
extras bcvk, appimage-manager
google gemini-cli, firebase-cli, wrangler
environment All of the above

Services vs Install

For This Use This
JupyterLab ujust jupyter install
GitHub Runners ujust runners install
Jellyfin ujust jellyfin install
Ollama ujust ollama install
Standalone tools ujust install <tool>

Services have lifecycle commands (start/stop/logs). Standalone tools are just installed.

Flatpak Details

Development

ujust install flatpaks-dev
# Includes: VS Code, PyCharm, etc.

Media

ujust install flatpaks-media
# Includes: GIMP, Inkscape, Kdenlive, etc.

Gaming

ujust install flatpaks-gaming
# Includes: Lutris, Heroic, ProtonUp-Qt, etc.

All Flatpaks

ujust install flatpaks-all
# Installs all categories

Troubleshooting

Installation Failed

Check:

# For npm-based tools
npm --version

# For Homebrew tools
brew --version

# For Flatpaks
flatpak --version

Claude Code Not Found After Install

Cause: Shell not reloaded

Fix:

exec $SHELL
# Or
source ~/.bashrc

Pixi Not Found

Fix:

# Add to PATH
export PATH="$HOME/.pixi/bin:$PATH"

# Or reload shell
exec $SHELL

Flatpak Install Fails

Check:

# Verify Flathub remote
flatpak remote-list

Fix:

# Add Flathub if missing
flatpak remote-add --if-not-exists flathub [https://flathub.org/repo/flathub.flatpakrepo]([https://flathub.org/repo/flathub.flatpakrepo](https://flathub.org/repo/flathub.flatpakrepo))

Cross-References

  • Services: jupyter, runners, jellyfin, ollama (have lifecycle commands)

  • Configuration: configure (for enabling system services)

  • VM Tools: vm, bootc (after installing bcvk)

When to Use This Skill

Use when the user asks about:

  • "install claude code", "setup claude", "claude cli"

  • "install pixi", "conda alternative"

  • "install kubernetes", "setup kind", "minikube"

  • "install flatpaks", "flatpak applications"

  • "install development tools", "dev environment"

  • "install bcvk", "bootc tools"