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¶
| Target | Command | Description |
|---|---|---|
| Aider | ujust install aider | AI pair programming tool |
| All | ujust install all | Install everything (dev tools + flatpaks) |
| bcvk | ujust install bcvk | Bootc virtualization kit |
| ccstatusline | ujust install ccstatusline | Claude Code statusline plugin |
| Chrome DevTools MCP | ujust install chrome-devtools-mcp | Chrome DevTools MCP server |
| Chrome Extension Fix | ujust install chrome-extension-fix | Fix Chrome extension permissions |
| Claude Code | ujust install claude-code | Claude Code AI assistant CLI |
| Devcontainers | ujust install devcontainers | Dev Container CLI |
| Devtools | ujust install devtools | Meta-installer for dev tools |
| Firebase | ujust install firebase | Firebase CLI |
| Flatpaks Communication | ujust install flatpaks-communication | Communication flatpaks |
| Flatpaks Dev | ujust install flatpaks-dev | Development flatpaks |
| Flatpaks Media | ujust install flatpaks-media | Media & graphics flatpaks |
| Gemini | ujust install gemini | Gemini CLI (Google AI) |
| GitHub MCP | ujust install github-mcp-server | GitHub MCP server for Claude |
| TweakCC | ujust install tweakcc | Claude Code customization tool |
| Wrangler | ujust install wrangler | Cloudflare Workers CLI |
Common Installations¶
AI Development Setup¶
# Install Claude Code
ujust install claude-code
# Install GitHub MCP server
ujust install github-mcp-server
# Install Chrome DevTools MCP (for browser automation)
ujust install chrome-devtools-mcp
# Install all dev tools at once
ujust install devtools
Flatpak Applications¶
# Install development flatpaks
ujust install flatpaks-dev
# Install media & graphics flatpaks
ujust install flatpaks-media
# Install communication flatpaks
ujust install flatpaks-communication
VM Testing¶
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¶
Media¶
Gaming¶
All Flatpaks¶
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:
Pixi Not Found¶
Fix:
Flatpak Install Fails¶
Check:
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 flatpaks", "flatpak applications"
-
"install development tools", "dev environment"
-
"install bcvk", "bootc tools"