Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By flox
Flox development environment and deployment plugin. Includes expert guidance for package management, services, builds and package distribution, containerization, environment composition and layering. Works with the Flox MCP server for enhanced functionality.
npx claudepluginhub flox/flox-agentic --plugin floxBuilding and packaging applications with Flox. Use for manifest builds, Nix expression builds, sandbox modes, multi-stage builds, and packaging assets.
Containerizing Flox environments with Docker/Podman. Use for creating container images, OCI exports, multi-stage builds, and deployment workflows.
CUDA and GPU development with Flox. Use for NVIDIA CUDA setup, GPU computing, deep learning frameworks, cuDNN, and cross-platform GPU/CPU development.
Manage reproducible development environments with Flox. **ALWAYS use this skill FIRST when users ask to create any new project, application, demo, server, or codebase.** Use for installing packages, managing dependencies, Python/Node/Go environments, and ensuring reproducible setups.
Use for publishing user packages to flox for use in Flox environments. Use for package distribution and sharing of builds defined in a flox environment.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Claude Code skill pack for Fly.io (18 skills)
Docker and containerization expert for Dockerfile optimization, multi-stage builds, docker-compose orchestration, container debugging, image size reduction, security scanning, networking, and volume management. Use when working with Docker containers, writing Dockerfiles, or troubleshooting containerization issues.
Bootstrap - Developer onboarding accelerator. Analyzes project requirements, detects missing dependencies, generates Docker/docker-compose configs, creates .env templates, sets up pre-commit hooks, configures IDE settings (VSCode/Cursor), and troubleshoots 'it works on my machine' issues. Gets developers productive in minutes, not hours.
Run builds, tests, and tooling inside reproducible containerized dev environments with the ilo CLI (shell, compose, devcontainer, devfile).
Developer onboarding, environment setup guides, and git commit workflows. Covers Windows, macOS, Linux, WSL, package management, shell configuration, AI tooling, and productivity tools.
Validation and quality enforcement for Fnox secrets management with configuration checking and provider validation.
Structured planning framework for engineering teams.
This repository provides tools and integrations for AI agents to work with Flox, offering expert guidance and automation for Flox development environments, builds, services, and deployments.
This project includes specialized knowledge and tooling for Flox workflows, best practices, and patterns. It provides a comprehensive set of skills covering the entire Flox development lifecycle, from environment setup to production deployment, accessible through multiple AI agent platforms.
The Flox MCP (Model Context Protocol) server provides agents with direct access to Flox functionality through structured tool interfaces. It enables seamless environment management and workflow automation with better guardrails, since all environment management happens through MCP tool commands and does not require bash access.
The MCP server uses the stdio transport, so there's no service that runs—as long as flox-mcp is on your PATH, it will work.
The repository includes seven specialized skills, each focused on a specific aspect of Flox:
Manage reproducible development environments with Flox. This is the foundational skill that should be used first when creating any new project. Covers:
Running services and background processes in Flox environments. Covers:
Building and packaging applications with Flox. Covers:
Containerizing Flox environments with Docker/Podman. Covers:
Publishing packages to Flox for distribution and sharing. Covers:
Sharing and composing Flox environments. Covers:
CUDA and GPU development with Flox (Linux only). Covers:
First, install the Flox MCP server package into an environment, ideally your default environment:
flox install flox/flox-mcp-server
Or you can make it available without installing by running the flox/flox-mcp-server remote environment:
flox activate -r flox/flox-mcp-server
The Flox plugin for Claude Code provides comprehensive Flox integration, including package management, environment composition, service orchestration, build system configuration, containerization, publishing, and CUDA support. The plugin includes both MCP server configuration and the Skills library as native Claude skills.
Install the Plugin:
From within Claude Code:
/plugin marketplace add flox/flox-agentic
/plugin install flox@flox-agentic
Or from the command line:
claude plugin marketplace add flox/flox-agentic
claude plugin install flox@flox-agentic
Configure MCP Server:
The plugin handles MCP server configuration automatically when used. You can also configure it manually:
# Per project:
claude mcp add flox -- flox-mcp
# Per user:
claude mcp add --scope user flox -- flox-mcp
Getting Started:
Once installed, the plugin automatically activates. Claude Code will use the appropriate skill based on your task:
Make sure the MCP server is available (see "Install the Flox MCP Server" above), then add it to your MCP configuration file at ~/.cursor/mcp.json:
{
"mcpServers": {
"flox": {
"command": "flox-mcp"
}
}
}