Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By labring
Deploy any GitHub project to Sealos Cloud with one command, managing cloud databases, S3 storage, and Docker artifacts while assessing cloud-native readiness and building Sealos Desktop apps.
npx claudepluginhub labring/sealos-skills --plugin sealosAssess whether a project is ready for cloud-native deployment. Evaluates statelessness, config, scalability, and produces a readiness score (0-12). Use when user asks about containerization readiness, Docker/Kubernetes compatibility, deployment feasibility, whether their app can run in containers or the cloud, or wants a pre-deployment assessment. Also triggers on "/cloud-native-readiness".
Convert Docker Compose files or installation docs into production-grade Sealos templates. Use when user has a docker-compose.yml and wants a Sealos or Kubernetes template, wants to migrate from Docker Compose to Sealos, needs to convert container orchestration configs to Sealos format, or mentions compose-to-template conversion. Also triggers on "/docker-to-sealos".
Generate production-ready Dockerfile for any GitHub project. Supports monorepo, multi-stage builds, workspace detection, and iterative build-fix cycles. Use when user asks to create, generate, write, fix, or improve a Dockerfile, wants to containerize an application, mentions Docker build issues, needs a .dockerignore, or wants to package their app as a Docker image. Also triggers on "/dockerfile".
Build, adapt, and document apps that run inside Sealos Desktop using the Sealos app SDK. Use when creating a new Sealos app, integrating an existing web app into Sealos Desktop, wiring Sealos session data into business features, preparing local iframe-based debugging, or producing beginner-friendly Sealos app tutorials and starter implementations. Also triggers on "/sealos-app-builder".
Run a local read-only HTML topology UI for a project already deployed by Sealos Skills and return a localhost URL. Use when the user asks to view, inspect, visualize, render, open, or run a local canvas for deployed Sealos resources, mentions ".sealos", Sealos deployment state, Kubernetes resources, topology, resource graph, localhost UI, or invokes "/sealos-canvas".
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.
Deployment automation with Dockerfile generation, CI/CD pipelines, and infrastructure as code
Use this agent when setting up CI/CD pipelines, configuring Docker containers, deploying applications to cloud platforms, setting up Kubernetes clusters, implementing infrastructure as code, or automating deployment workflows. Examples: <example>Context: User is setting up a new project and needs deployment automation. user: "I've built a FastAPI application and need to deploy it to production with proper CI/CD" assistant: "I'll use the deployment-engineer agent to set up a complete deployment pipeline with Docker, GitHub Actions, and production-ready configurations."</example> <example>Context: User mentions containerization or deployment issues. user: "Our deployment process is manual and error-prone. We need to automate it." assistant: "Let me use the deployment-engineer agent to design an automated CI/CD pipeline that eliminates manual steps and ensures reliable deployments."</example>
Claude Code skill pack for Fly.io (18 skills)
DigitalOcean cloud deployment plugin for App Platform, Droplets, Kubernetes, Functions, Managed Databases, Spaces storage, and infrastructure management with official MCP server integration
Editorial "DevOps & Cloud" bundle for Claude Code from Antigravity Awesome Skills.
Container development and deployment - Docker, registry, Skaffold
Deploy projects to Sealos Cloud from your AI agent.
Sealos Skills is a plugin-first skill pack centered on Sealos Cloud development and deployment. It helps an AI agent inspect a project, prepare missing deployment artifacts, connect Sealos Cloud databases and object storage for development, build or reuse a container image, ship the app to Sealos Cloud, and view deployed resources in a local read-only canvas.
The recommended way to use it is as an agent plugin installed with npx plugins. The same root skills/ directory also remains compatible with skills.sh and context-only extension hosts such as Gemini CLI and Qwen Code.
Install the Sealos plugin into Codex:
npx plugins add https://github.com/labring/sealos-skills --target codex
Install the Sealos plugin into Claude Code:
npx plugins add https://github.com/labring/sealos-skills --target claude-code
If you only use one detected agent tool on the machine, you can let plugins choose the target:
npx plugins add https://github.com/labring/sealos-skills
After installation, use the plugin from your agent:
$sealos/sealos
Plugin examples:
$sealos deploy this repo to Sealos Cloud
$sealos deploy /path/to/project
$sealos deploy https://github.com/labring-sigs/kite
$sealos create a cloud Postgres database for this repo and wire DATABASE_URL
$sealos create private S3 object storage for uploads and wire env vars
For Claude Code, use the same requests with /sealos:
/sealos deploy this repo to Sealos Cloud
/sealos deploy /path/to/project
/sealos deploy https://github.com/labring-sigs/kite
/sealos create a cloud Postgres database for this repo and wire DATABASE_URL
/sealos create private S3 object storage for uploads and wire env vars
In Codex App, select Sealos from Plugins, then describe what you want to deploy.
| Tool | Install | Usage |
|---|---|---|
| Codex CLI / Codex App | npx plugins add https://github.com/labring/sealos-skills --target codex | $sealos in Codex CLI, or + → Plugins → Sealos in Codex App |
| Claude Code | npx plugins add https://github.com/labring/sealos-skills --target claude-code | /sealos |
| Claude Code marketplace flow | /plugin marketplace add labring/sealos-skills | /sealos |
| OpenClaw / ClawHub | clawhub install labring/sealos-skills | Host command exposure depends on the ClawHub runtime |
| CodeBuddy | /plugin marketplace add labring/sealos-skills | Host command exposure depends on the CodeBuddy runtime |
| Gemini CLI | gemini extensions install https://github.com/labring/sealos-skills | Context-only extension; ask Gemini to use Sealos Skills |
| Qwen Code | qwen extensions install https://github.com/labring/sealos-skills | Context-only extension; ask Qwen to use Sealos Skills |
| Amp / Kimi / generic repo importers | Import https://github.com/labring/sealos-skills.git | Host-dependent |
Gemini CLI and Qwen Code manifests provide repository context through CLAUDE.md; they do not claim slash-command support.
skills.sh skill packIf your agent uses skills.sh directly, install the same skills pack with:
npx skills add labring/sealos-skills
Then run the deploy skill directly:
/sealos-deploy
/sealos-deploy /path/to/project
/sealos-deploy https://github.com/labring-sigs/kite
/sealos-database create a cloud Postgres database for this repo and wire DATABASE_URL
/sealos-s3 create private object storage for uploads and wire env vars
After a project has been deployed, run a local Sealos resource canvas UI:
/sealos-canvas
/sealos-deploy, /sealos-database, and /sealos-s3 are direct skills.sh skill entries. Plugin usage should go through $sealos in Codex or /sealos in Claude Code.
Prefer the plugin install for Codex and Claude Code because it:
The Codex integration follows OpenAI's Codex plugin build guide: