← Back to Skills Marketplace
joshuarileydev

Dokploy

by JoshuaRileyDev · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2913
Downloads
4
Stars
10
Active Installs
1
Versions
Install in OpenClaw
/install dokploy
Description
Manage Dokploy deployments, projects, applications, and domains via the Dokploy API.
README (SKILL.md)

Dokploy Skill

Interact with Dokploy's API to manage projects, applications, domains, and deployments.

Prerequisites

  1. Dokploy instance running with API access
  2. API Key generated from /settings/profile → "API/CLI Section"
  3. Set the DOKPLOY_API_URL environment 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-key header
  • Use jq for JSON parsing in scripts
  • Some operations require admin permissions
  • Deployment is asynchronous — use status endpoint to check progress
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install dokploy
  3. After installation, invoke the skill by name or use /dokploy
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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
Metadata
Slug dokploy
Version 1.0.0
License
All-time Installs 10
Active Installs 10
Total Versions 1
Frequently Asked Questions

What is Dokploy?

Manage Dokploy deployments, projects, applications, and domains via the Dokploy API. It is an AI Agent Skill for Claude Code / OpenClaw, with 2913 downloads so far.

How do I install Dokploy?

Run "/install dokploy" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Dokploy free?

Yes, Dokploy is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Dokploy support?

Dokploy is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Dokploy?

It is built and maintained by JoshuaRileyDev (@joshuarileydev); the current version is v1.0.0.

💬 Comments