npx claudepluginhub flox/flox-agenticFlox 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.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
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"
}
}
}