← 返回 Skills 市场
Dokploy
作者
JoshuaRileyDev
· GitHub ↗
· v1.0.0
2913
总下载
4
收藏
10
当前安装
1
版本数
在 OpenClaw 中安装
/install dokploy
功能描述
Manage Dokploy deployments, projects, applications, and domains via the Dokploy API.
使用说明 (SKILL.md)
Dokploy Skill
Interact with Dokploy's API to manage projects, applications, domains, and deployments.
Prerequisites
- Dokploy instance running with API access
- API Key generated from
/settings/profile→ "API/CLI Section" - Set the
DOKPLOY_API_URLenvironment variable (default:http://localhost:3000)
Configuration
Set these environment variables or use the config command:
# Dokploy instance URL
export DOKPLOY_API_URL="https://your-dokploy-instance.com"
# Your API token
export DOKPLOY_API_KEY="your-generated-api-key"
# Or run the config command
dokploy-config set --url "https://your-dokploy-instance.com" --key "your-api-key"
Projects
List all projects
dokploy-project list
Get project details
dokploy-project get \x3Cproject-id>
Create a new project
dokploy-project create --name "My Project" --description "Description here"
Update a project
dokploy-project update \x3Cproject-id> --name "New Name" --description "Updated"
Delete a project
dokploy-project delete \x3Cproject-id>
Applications
List applications in a project
dokploy-app list --project \x3Cproject-id>
Get application details
dokploy-app get \x3Capplication-id>
Create an application
dokploy-app create \
--project \x3Cproject-id> \
--name "my-app" \
--type "docker" \
--image "nginx:latest"
Application types: docker, git, compose
Trigger deployment
dokploy-app deploy \x3Capplication-id>
Get deployment logs
dokploy-app logs \x3Capplication-id> --deployment \x3Cdeployment-id>
List deployments
dokploy-app deployments \x3Capplication-id>
Update application
dokploy-app update \x3Capplication-id> --name "new-name" --env "KEY=VALUE"
Delete an application
dokploy-app delete \x3Capplication-id>
Domains
List domains for an application
dokploy-domain list --application \x3Capplication-id>
Get domain details
dokploy-domain get \x3Cdomain-id>
Add a domain to an application
dokploy-domain create \
--application \x3Capplication-id> \
--domain "app.example.com" \
--path "/" \
--port 80
Update a domain
dokploy-domain update \x3Cdomain-id> --domain "new.example.com"
Delete a domain
dokploy-domain delete \x3Cdomain-id>
Environment Variables
List environment variables for an application
dokploy-app env list \x3Capplication-id>
Set environment variable
dokploy-app env set \x3Capplication-id> --key "DATABASE_URL" --value "postgres://..."
Delete environment variable
dokploy-app env delete \x3Capplication-id> --key "DATABASE_URL"
Utility Commands
Check API connection
dokploy-status
View current config
dokploy-config show
API Reference
Base URL: $DOKPLOY_API_URL/api
| Endpoint | Method | Description |
|---|---|---|
/project.all |
GET | List all projects |
/project.create |
POST | Create project |
/project.byId |
GET | Get project by ID |
/project.update |
PATCH | Update project |
/project.delete |
DELETE | Delete project |
/application.all |
GET | List applications |
/application.create |
POST | Create application |
/application.byId |
GET | Get application by ID |
/application.update |
PATCH | Update application |
/application.delete |
DELETE | Delete application |
/application.deploy |
POST | Trigger deployment |
/deployment.all |
GET | List deployments |
/deployment.byId |
GET | Get deployment by ID |
/deployment.logs |
GET | Get deployment logs |
/domain.all |
GET | List domains |
/domain.create |
POST | Create domain |
/domain.update |
PATCH | Update domain |
/domain.delete |
DELETE | Delete domain |
Notes
- All API calls require the
x-api-keyheader - Use
jqfor JSON parsing in scripts - Some operations require admin permissions
- Deployment is asynchronous — use status endpoint to check progress
安全使用建议
This skill appears to be a straightforward CLI for a Dokploy API, but note two issues before installing: (1) the package/registry metadata failed to declare the required environment variables (DOKPLOY_API_URL and DOKPLOY_API_KEY) even though the scripts and SKILL.md require them — treat this as a packaging/integrity red flag and review the included scripts yourself; (2) the CLI will persist your API key in $HOME/.dokployrc (plain export lines), so only use an API key you trust to be stored on disk and restrict file permissions. Ensure you trust the Dokploy instance you point it at, have curl and jq installed, and inspect the scripts if you are in a sensitive or multi-tenant environment. If you need higher assurance, ask the publisher to correct the registry metadata and provide a signed/reviewed release.
功能分析
Type: OpenClaw Skill
Name: dokploy
Version: 1.0.0
The OpenClaw AgentSkills skill bundle for Dokploy is benign. It provides a command-line interface to interact with the Dokploy API, using `curl` for network requests and `jq` for JSON processing, both of which are declared dependencies. The skill handles API keys by reading them from environment variables or storing them in a user's home directory (`~/.dokployrc`), which is standard practice for CLI tools. All operations (project, application, domain management) are clearly aligned with the stated purpose of managing Dokploy deployments and lack any evidence of intentional malicious behavior such as unauthorized data exfiltration, malicious execution, or prompt injection against the agent.
能力评估
Purpose & Capability
Name, description, SKILL.md and the scripts all align: this is a CLI to call a Dokploy API (projects, apps, domains, deployments). However the registry metadata at the top of the report claims "Required env vars: none" and "Primary credential: none", while .clawdhub/package.json and SKILL.md/scripts clearly require DOKPLOY_API_URL and DOKPLOY_API_KEY. That metadata mismatch is suspicious (likely packaging oversight) but the requested env vars themselves are coherent with the stated purpose.
Instruction Scope
Runtime instructions and scripts only call the Dokploy API (base $DOKPLOY_API_URL/api) using curl and parse JSON with jq. The scripts do read and write a local config file ($HOME/.dokployrc) to persist DOKPLOY_API_URL and DOKPLOY_API_KEY; they also prompt for confirmations on destructive actions. No instructions try to read unrelated system data or call unexpected external endpoints.
Install Mechanism
There is no install spec — the skill is instruction + shell scripts only (no downloads or package installs). This is lower-risk from an installer/execution viewpoint.
Credentials
The scripts require an API key (DOKPLOY_API_KEY) and URL (DOKPLOY_API_URL), which is appropriate for an API client, but the registry metadata omitted these. The CLI persists the API key to $HOME/.dokployrc in clear text (export lines). Storing secrets on disk is expected for a CLI but is sensitive — users should be aware the key ends up in their home directory. No unrelated credentials are requested.
Persistence & Privilege
The skill does not set always:true and does not request elevated or platform-wide privileges. It only writes/reads its own config file in the user's home directory and does not modify other skills or global agent settings.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install dokploy - 安装完成后,直接呼叫该 Skill 的名称或使用
/dokploy触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of dokploy: manage Dokploy deployments, projects, applications, and domains via command-line and API.
- Provides CLI commands for project, application, deployment, and domain management
- Fully documented configuration, including API key and connection setup
- Supports listing, creating, updating, and deleting projects, applications, and domains
- Application deployment, logs, and environment variable management included
- Utility commands to check API status and view current config
- API endpoints and required tools (`curl`, `jq`) are listed in documentation
元数据
常见问题
Dokploy 是什么?
Manage Dokploy deployments, projects, applications, and domains via the Dokploy API. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2913 次。
如何安装 Dokploy?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install dokploy」即可一键安装,无需额外配置。
Dokploy 是免费的吗?
是的,Dokploy 完全免费(开源免费),可自由下载、安装和使用。
Dokploy 支持哪些平台?
Dokploy 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Dokploy?
由 JoshuaRileyDev(@joshuarileydev)开发并维护,当前版本 v1.0.0。
推荐 Skills