Install
openclaw skills install devopsellenceInstall the devopsellence CLI, initialize project config, deploy the current app, inspect status, and manage secrets or bring-your-own nodes from OpenClaw.
openclaw skills install devopsellenceUse this skill when the user wants to deploy an app with devopsellence, check deployment state, manage secrets, or bootstrap and assign their own nodes.
command -v devopsellence
If the command is missing, install the latest compatible CLI:
curl -fsSL https://www.devopsellence.com/lfg.sh | bash
devopsellence doctor
devopsellence init
If the user already knows the target workspace values, prefer explicit flags:
devopsellence init --org acme --project shop --env staging
devopsellence deploy
If the user wants to deploy an existing image digest instead of building locally:
devopsellence deploy --image docker.io/example/app@sha256:...
devopsellence status --json
Prefer stdin over literal secret values in prompts or shell history:
printf '%s' "$VALUE" | devopsellence secret set --service web --name NAME --stdin
devopsellence secret list
devopsellence secret delete --service web --name NAME
Use these when the user wants to run on their own machine or VM:
devopsellence node bootstrap
devopsellence node list --json
devopsellence node assign <id>
devopsellence node unassign <id>
devopsellence doctor before devopsellence deploy.devopsellence deploy --image ... when the user already has a pushed image digest.--stdin.