Package 8 Sealos Cloud skills for DeepSeek Harness, covering deployment, cloud databases, object storage, and local read-only topology views.
$ dsh plugin --profile web add github:labring/sealos-skillsRun the command above in your terminal to install this plugin via the dsh CLI. You can switch Profile in the top-right corner. New to dsh? Read the beginner tutorial
Pack 8 Agent Skills maintained by the Sealos Cloud team into DeepSeek Harness's web profile in one go, enabling AI agents to directly complete operations like project deployment, cloud databases, S3 object storage, and Sealos Desktop app development within conversations.
@deepseek-ai/cordis (peer, injected by host), yaml ^2.4.2 (for parsing SKILL.md YAML frontmatter)inject = ['skills'] to depend on host ctx.skills, calls ctx.skills.registerProvider() to register a provider named sealos with rank=600 (same level as host built-in provider). cordis.patch.yml appends sealos-skills node during bundle phase, depends on skill registry mounted by @deepseek-ai/dsh-base.People using DeepSeek Harness who want AI agents to directly handle Sealos Cloud tasks. If you only want the agent to write Dockerfiles, understand docker-compose.yml, or view local resource topology from already-deployed projects, this bundle can be used standalone—but the most valuable feature is running the full "code→deploy→view results" chain.
| Dependency | Minimum Version | Notes |
|---|---|---|
| DeepSeek Harness | Not declared | README example uses npx @deepseek-ai/dsh web, requires web profile to be installed and initialized |
| Node.js | Not declared | index.js uses node:fs/promises and top-level await; test.js uses node:test, recommends Node 18+ |
| pnpm | Not declared | README line 103 notes pnpm must be in PATH during bundle installation |
| Platform | Cross-platform | Pure JS implementation, no OS restrictions declared |
| Native modules | None | Only depends on yaml, no node-gyp / native extensions |
| Runtime external tools | As needed | sealos-deploy metadata.compatibility requires: Sealos account/workspace, docker, buildx, gh CLI (as needed), git (as needed), kubectl, Node 18+ (optional acceleration), Python 3.8+ and PyYAML (Phase 5), kompose/crane (for Compose conversion) |
dsh plugin --profile web add github:labring/sealos-skills
This plugin requires no additional configuration. The bundle automatically scans skills/*/SKILL.md in the repository at startup and registers all 8 skills to ctx.skills.
Q: How do I invoke it in DSH after installation?
A: DSH doesn't provide a /sealos slash command for this bundle. Simply tell the agent to "deploy to Sealos Cloud", "create a cloud database", "connect to S3", or ask to view resources from the last deployment—the agent will load the corresponding sealos-* skill via the skill tool and execute it.
Q: Must I install it to the web profile?
A: Yes. README line 103 explicitly states this repository is a web profile dsh bundle, and installing to other profiles won't take effect.
Q: What external tools should I prepare before using it?
A: To actually deploy projects to the cloud, you'll need docker, buildx, kubectl, gh CLI (as needed), and sealos-cli. Generating Dockerfiles or converting docker-compose to Sealos templates only requires Node.js and Python 3.8+. The full list is in sealos-deploy's metadata.compatibility field.
Q: Do I need a Sealos Cloud account to use it?
A: Not necessarily. Cloud databases, object storage, and actual deployments all require a Sealos account and workspace. Generating Dockerfiles, converting Compose templates, and viewing the canvas don't need a cloud account.
Q: Is DSH's default bash sandbox sufficient?
A: No. Logging into Sealos writes to ~/.sealos/kubeconfig, which the default sandbox blocks. You need to enable sandbox_permissions: danger-full-access in DSH configuration, otherwise the login step gets intercepted by the sandbox.
Q: How do I upgrade or uninstall?
A: Upgrade: Running dsh plugin --profile web add github:labring/sealos-skills again will overwrite and update skills/. Uninstall: Remove the bundle from the profile or directly delete the skills/ directory—DSH doesn't provide a dedicated uninstall command for it.
Q: How is priority determined for the 8 skills?
A: All use BUNDLED_SKILL_RANK=600 (index.js line 8), placing them at the same level as DSH's built-in skill providers, ordered by skill name in ascending order.
Beginner — the bundle itself requires no configuration; install it and trigger it with natural language in sessions. However, actually completing cloud deployments requires a Sealos account, container registry, sealos-cli, and kubectl, so there's significant external preparation before running through the full process for the first time.
~/.sealos/kubeconfig writes by default, requiring explicit danger-full-access enablement (README:118)English | 简体中文 | 繁體中文 | 日本語 | 한국어 | Español | Français | Deutsch | Português (Brasil) | Русский | العربية | हिन्दी | Bahasa Indonesia
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 Codex path is native Codex plugin installation. Cross-host plugin installs, skills.sh, and context-only extension hosts such as Gemini CLI and Qwen Code use the same root skills/** source.
Add this repository as a Codex marketplace, then install the Sealos plugin:
codex plugin marketplace add labring/sealos-skills
codex plugin add sealos@sealos
One Sealos plugin installs the deploy, database, S3, canvas, app-builder, and supporting cloud-native skills from root skills/**: sealos-deploy, sealos-database, sealos-s3, sealos-canvas, sealos-app-builder, cloud-native-readiness, dockerfile-skill, and docker-to-sealos.
For compatibility and local Codex testing, install the same plugin with:
npx plugins add https://github.com/labring/sealos-skills --target codex
After installation in Codex, use the plugin from Codex:
$sealos
Codex 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
Add this repository as a Claude Code marketplace, then install the Sealos plugin:
claude plugin marketplace add labring/sealos-skills
claude plugin install sealos@sealos
For compatibility with cross-host plugin installers, install the same plugin with:
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 in Claude Code, use /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
Build the Qoder plugin package from the repository root:
python3 scripts/package-qoder-plugin.py
Import dist/sealos-1.2.5.zip into Qoder. The package exposes the same eight root-level skills as the Codex plugin and provides /sealos as its command entry point.
Qoder examples:
/sealos deploy this repo to Sealos Cloud
/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
/sealos show the resources created by the last deployment
This repository is a dsh profile bundle over the same root skills/** source. After npx @deepseek-ai/dsh web works, install it into the same web profile (pnpm must be on PATH):
npx @deepseek-ai/dsh plugin --profile web add github:labring/sealos-skills
npx @deepseek-ai/dsh web
A local checkout:
npx @deepseek-ai/dsh plugin --profile web add /path/to/sealos-skills
The eight root skills appear in the session skill catalog. Ask the agent to deploy to Sealos Cloud; it loads sealos-deploy (and sibling skills as needed) through the skill tool, then runs kubectl / sealos-cli through bash.
The default bash sandbox blocks writes outside the workspace. Login writes ~/.sealos/kubeconfig, so those commands need sandbox_permissions: danger-full-access.
| Tool | Install | Usage |
|---|---|---|
| Codex CLI / Codex App | codex plugin marketplace add labring/sealos-skills then codex plugin add sealos@sealos | $sealos in Codex CLI, or + → Plugins → Sealos in Codex App |
| Claude Code | claude plugin marketplace add labring/sealos-skills then claude plugin install sealos@sealos | /sealos |
| Claude Code compatibility path | npx plugins add https://github.com/labring/sealos-skills --target claude-code | /sealos |
| Qoder | Build with python3 scripts/package-qoder-plugin.py, then import the ZIP | /sealos or automatic skill selection |
| DeepSeek Harness | npx @deepseek-ai/dsh plugin --profile web add github:labring/sealos-skills | Ask the agent to use Sealos skills; there is no /sealos slash command |
| 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 and .sealos/state.json contains verified last_deploy runtime evidence, use the sealos-canvas skill through your installed plugin entry point for a local read-only view. Canvas stays plugin-pack mediated because it consumes verified deployment state.
/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, Claude Code, and Qoder because it:
The Codex integration follows OpenAI's Codex plugin build guide:
.codex-plugin/plugin.json contains plugin identity, discovery metadata, interface copy, default prompts, brand metadata, and asset paths relative to the repository root..agents/plugins/marketplace.json registers this repo-local plugin for local Codex marketplace testing..claude-plugin/plugin.json and .claude-plugin/marketplace.json define the Claude Code-compatible plugin surface..qoder-plugin/plugin.json defines the Qoder plugin surface and explicitly exposes all eight Codex skills.qoder.md provides Qoder-level routing and safety instructions without copying skill implementations.distribution/platforms.json records platform support claims and evidence.marketplaces/README.md owns marketplace rules and prevents command-support overclaims.scripts/validate-codex-plugin.py validates the Codex manifest, Claude Code metadata, repo marketplaces, platform registry, and asset paths.scripts/package-qoder-plugin.py builds a Qoder-compatible ZIP with the plugin manifest at the archive root.skills/**/SKILL.md remains the only skill source; do not add a second packaged copy of the skills.package.json, cordis.patch.yml, and index.js register that same root skill tree as a DeepSeek Harness profile bundle.Validate plugin metadata before publishing or pushing manifest changes:
python3 scripts/validate-codex-plugin.py
python3 -m json.tool .codex-plugin/plugin.json >/dev/null
python3 -m json.tool plugin.json >/dev/null
python3 -m json.tool .agents/plugins/marketplace.json >/dev/null
python3 -m json.tool marketplace.json >/dev/null
python3 -m json.tool .claude-plugin/plugin.json >/dev/null
python3 -m json.tool .claude-plugin/marketplace.json >/dev/null
python3 -m json.tool .qoder-plugin/plugin.json >/dev/null
python3 -m json.tool distribution/platforms.json >/dev/null
You only need a plugin-compatible or skills.sh compatible AI agent and a project to deploy.
During the deploy, database, and object-storage flows, Sealos Skills will:
kubectl are availablesealos-cli for Sealos Cloud database creation, connection details, and database operationssealos-cli s3 for Sealos object storage buckets, credentials, quota checks, object operations, and presigned URLsFor an actual deployment, you will still need a Sealos Cloud account and access to a container registry, but these do not need to be fully set up before the skill starts. For database and object-storage work, you need a Sealos Cloud account and a workspace that can create the requested resources.
On a typical deploy, the agent will:
Later runs can switch to an in-place update flow when an existing deployment is detected.
For a local project or Devbox that needs a cloud database, the agent will:
DATABASE_URL, Prisma, Drizzle, MongoDB, MySQL, or Redissealos-cli database to list, create, inspect, and connect Sealos Cloud databasesFor a local project or Devbox that needs S3-compatible object storage, the agent will:
sealos-cli s3 from zjy365/sealos-cli#28 to list, create, inspect, and update object storage bucketsFor a repository already deployed by Sealos Deploy, the agent will:
.sealos/state.json to locate the deployed app.kubectl get commands.127.0.0.1 canvas UI.If the project has not been deployed yet, Sealos Canvas stops and directs the user to deploy the project first.
The plugin and skills.sh pack expose the same skill source:
sealos-deploy — deploy a local or GitHub project to Sealos Cloudsealos-database — create, connect, and operate Sealos Cloud databases for developmentsealos-s3 — create buckets, connect credentials, check quota, and operate Sealos S3-compatible object storagesealos-canvas — view deployed Sealos resources in a local read-only canvas UIsealos-app-builder — build Sealos Desktop apps with SDK integrationcloud-native-readiness — assess deployment readinessdockerfile-skill — generate production-ready Dockerfilesdocker-to-sealos — convert Docker Compose services into Sealos templatesskills/ is the single source of truth for Sealos deploy, Sealos canvas, and the supporting skills used during the deploy flow. The same root-level skills directory serves skills.sh installs and every plugin or extension manifest in this repository.
Important distribution files:
.codex-plugin/plugin.json — Codex plugin manifest.agents/plugins/marketplace.json — local Codex marketplace entry.claude-plugin/plugin.json — Claude Code-compatible plugin manifest.qoder-plugin/plugin.json — Qoder plugin manifestqoder.md — Qoder plugin routing and safety instructionsmarketplace.json and .claude-plugin/marketplace.json — Claude-compatible marketplace entries.codebuddy-plugin/marketplace.json — CodeBuddy marketplace entrygemini-extension.json — Gemini CLI context extensionqwen-extension.json — Qwen Code context extensionopenclaw.plugin.json — OpenClaw / ClawHub bundle pointerpackage.json, cordis.patch.yml, and index.js — DeepSeek Harness profile bundle; registers root skills/** on ctx.skillscommands/sealos.md — /sealos plugin command entry for compatible hostsdistribution/platforms.json — platform support registrymarketplaces/README.md — marketplace rules and support-claim ownershipscripts/validate-codex-plugin.py — Codex plugin validationscripts/package-qoder-plugin.py — Qoder ZIP packagerDo not add a second packaged copy of the skills. Root skills/** is the only skill source for all installation paths.
MIT