Official Chainguard plugins for Claude Code - documentation access and secure code generation
npx claudepluginhub chainguard-demo/claude-pluginsAccess Chainguard documentation including container images, security guides, Wolfi, apko, melange, and SBOMs through an MCP server. Search docs, get image information, and learn about supply chain security.
Generate secure Dockerfiles, apko/melange configurations, and migrate existing projects to use Chainguard Containers. Includes tools for creating SBOMs, signing images, and implementing supply chain security best practices.
Official Chainguard plugins for Claude Code - bringing supply chain security and secure container images to your development workflow.
Access Chainguard's complete documentation library through a Model Context Protocol (MCP) server.
Features:
Perfect for:
Generate secure code and configurations using Chainguard Containers and tools.
Features:
Perfect for:
/plugin marketplace add github.com/chainguard-demo/claude-plugins
/plugin install chainguard-docs@chainguard-plugins
/plugin install chainguard-codegen@chainguard-plugins
Documentation only:
/plugin install chainguard-docs@chainguard-plugins
Code generation only:
/plugin install chainguard-codegen@chainguard-plugins
Once installed, try these example prompts:
"What Chainguard images are available for Python?"
"How does Chainguard handle CVE management?"
"Show me the nginx image documentation"
"Search Chainguard docs for SBOM generation"
"Generate a Dockerfile for a Python Flask app using Chainguard Containers"
"Migrate this Dockerfile to use Chainguard Containers"
"Create an apko config for a Node.js application"
"Generate a secure multi-stage Dockerfile for Go"
This plugin wraps Chainguard's MCP server (ghcr.io/chainguard-dev/ai-docs:latest) which provides:
This plugin includes specialized AI skills that help Claude Code:
Chainguard Containers are secure, minimal container images designed for production use:
:latest) and development (:latest-dev) variantsLearn more at images.chainguard.dev
You: What Chainguard images are available for Python development?
Claude Code: [Uses chainguard-docs MCP server]
Based on Chainguard documentation, here are the Python images:
- cgr.dev/chainguard/python:latest - Minimal production runtime
- cgr.dev/chainguard/python:latest-dev - Development variant with pip and build tools
...
You: Generate a secure Dockerfile for a Django application
Claude Code: [Uses chainguard-codegen skills]
I'll create a secure multi-stage Dockerfile using Chainguard's Python image:
FROM cgr.dev/chainguard/python:latest-dev AS builder
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt --user
FROM cgr.dev/chainguard/python:latest
WORKDIR /app
COPY --from=builder /home/nonroot/.local /home/nonroot/.local
COPY --chown=nonroot:nonroot . .
ENV PATH=/home/nonroot/.local/bin:$PATH
EXPOSE 8000
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]
You: Can you migrate this Dockerfile to use Chainguard Containers?
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Curated collection of 154 specialized Claude Code subagents organized into 10 focused categories