# Send Dokploy to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dokploy",
    "name": "Dokploy",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/JoshuaRileyDev/dokploy",
    "canonicalUrl": "https://clawhub.ai/JoshuaRileyDev/dokploy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/dokploy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dokploy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      ".clawdhub/package.json",
      "scripts/dokploy-project.sh",
      "scripts/dokploy-domain.sh",
      "scripts/dokploy-config.sh",
      "scripts/dokploy.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "dokploy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T15:41:42.779Z",
      "expiresAt": "2026-05-09T15:41:42.779Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dokploy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dokploy",
        "contentDisposition": "attachment; filename=\"dokploy-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dokploy"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/dokploy"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dokploy",
    "downloadUrl": "https://openagent3.xyz/downloads/dokploy",
    "agentUrl": "https://openagent3.xyz/skills/dokploy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dokploy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dokploy/agent.md"
  }
}
```
## Documentation

### 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_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"

### List all projects

dokploy-project list

### Get project details

dokploy-project get <project-id>

### Create a new project

dokploy-project create --name "My Project" --description "Description here"

### Update a project

dokploy-project update <project-id> --name "New Name" --description "Updated"

### Delete a project

dokploy-project delete <project-id>

### List applications in a project

dokploy-app list --project <project-id>

### Get application details

dokploy-app get <application-id>

### Create an application

dokploy-app create \\
  --project <project-id> \\
  --name "my-app" \\
  --type "docker" \\
  --image "nginx:latest"

Application types: docker, git, compose

### Trigger deployment

dokploy-app deploy <application-id>

### Get deployment logs

dokploy-app logs <application-id> --deployment <deployment-id>

### List deployments

dokploy-app deployments <application-id>

### Update application

dokploy-app update <application-id> --name "new-name" --env "KEY=VALUE"

### Delete an application

dokploy-app delete <application-id>

### List domains for an application

dokploy-domain list --application <application-id>

### Get domain details

dokploy-domain get <domain-id>

### Add a domain to an application

dokploy-domain create \\
  --application <application-id> \\
  --domain "app.example.com" \\
  --path "/" \\
  --port 80

### Update a domain

dokploy-domain update <domain-id> --domain "new.example.com"

### Delete a domain

dokploy-domain delete <domain-id>

### List environment variables for an application

dokploy-app env list <application-id>

### Set environment variable

dokploy-app env set <application-id> --key "DATABASE_URL" --value "postgres://..."

### Delete environment variable

dokploy-app env delete <application-id> --key "DATABASE_URL"

### Check API connection

dokploy-status

### View current config

dokploy-config show

### API Reference

Base URL: $DOKPLOY_API_URL/api

EndpointMethodDescription/project.allGETList all projects/project.createPOSTCreate project/project.byIdGETGet project by ID/project.updatePATCHUpdate project/project.deleteDELETEDelete project/application.allGETList applications/application.createPOSTCreate application/application.byIdGETGet application by ID/application.updatePATCHUpdate application/application.deleteDELETEDelete application/application.deployPOSTTrigger deployment/deployment.allGETList deployments/deployment.byIdGETGet deployment by ID/deployment.logsGETGet deployment logs/domain.allGETList domains/domain.createPOSTCreate domain/domain.updatePATCHUpdate domain/domain.deleteDELETEDelete 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JoshuaRileyDev
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T15:41:42.779Z
- Expires at: 2026-05-09T15:41:42.779Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/dokploy)
- [Send to Agent page](https://openagent3.xyz/skills/dokploy/agent)
- [JSON manifest](https://openagent3.xyz/skills/dokploy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/dokploy/agent.md)
- [Download page](https://openagent3.xyz/downloads/dokploy)