# Send ZEDEDA 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zededa",
    "name": "ZEDEDA",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/krisclarkdev/zededa",
    "canonicalUrl": "https://clawhub.ai/krisclarkdev/zededa",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/zededa",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zededa",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "LICENSE.txt",
      "scripts/app_profile_service.py",
      "scripts/diag_service.py",
      "scripts/kubernetes_service.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "zededa",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T10:45:00.715Z",
      "expiresAt": "2026-05-18T10:45:00.715Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zededa",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zededa",
        "contentDisposition": "attachment; filename=\"zededa-1.0.6.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "zededa"
      },
      "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/zededa"
    },
    "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/zededa",
    "downloadUrl": "https://openagent3.xyz/downloads/zededa",
    "agentUrl": "https://openagent3.xyz/skills/zededa/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zededa/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zededa/agent.md"
  }
}
```
## Documentation

### ZEDEDA Skill

Complete API client for the ZEDEDA edge computing management platform. Implements 473 endpoints across 11 service domains with Bearer token authentication, custom error types, structured logging, and retry logic.

Author: Kristopher Clark
License: MIT
Version: 1.0.0

### Setup

export ZEDEDA_API_TOKEN="your_api_token_here"

# Optional overrides:
export ZEDEDA_BASE_URL="https://zedcontrol.zededa.net/api"   # default
export ZEDEDA_LOG_LEVEL="INFO"                                # DEBUG | INFO | WARNING | ERROR

The primary tool is scripts/zededa.py. Run any command via:

python3 -m scripts.zededa <service> <command> [--id ID] [--name NAME] [--body '{}'] [--body-file path.json]

### Node Service (node) — 91 endpoints

Manage edge nodes, hardware models, projects, brands, and PCR templates.

python3 -m scripts.zededa node list-devices
python3 -m scripts.zededa node get-device --id <device_id>
python3 -m scripts.zededa node get-device-by-serial --serial <serial>
python3 -m scripts.zededa node device-status --id <device_id>
python3 -m scripts.zededa node reboot-device --id <device_id>
python3 -m scripts.zededa node list-models
python3 -m scripts.zededa node list-projects

### App Service (app) — 123 endpoints

Manage application bundles, instances (v1+v2), images, artifacts, datastores, volumes, and patch envelopes.

python3 -m scripts.zededa app list-bundles
python3 -m scripts.zededa app list-instances
python3 -m scripts.zededa app activate-instance --id <inst_id>
python3 -m scripts.zededa app instance-logs --id <inst_id>
python3 -m scripts.zededa app list-images
python3 -m scripts.zededa app list-datastores
python3 -m scripts.zededa app list-volumes

### User Service (user) — 67 endpoints

IAM: users, roles, realms, enterprises, sessions, login, credentials, reports.

python3 -m scripts.zededa user whoami
python3 -m scripts.zededa user list-users
python3 -m scripts.zededa user list-roles
python3 -m scripts.zededa user enterprise-self
python3 -m scripts.zededa user list-sessions

### Storage Service (storage) — 33 endpoints

Patch envelopes, attestation policies, and deployment policies.

python3 -m scripts.zededa storage list-patches
python3 -m scripts.zededa storage list-attestation
python3 -m scripts.zededa storage list-deployment-policies

### Orchestration Service (orchestration) — 37 endpoints

Cluster instances, data streams, plugins, Azure deployments, API usage.

python3 -m scripts.zededa orchestration list-clusters
python3 -m scripts.zededa orchestration list-plugins
python3 -m scripts.zededa orchestration api-usage

### Kubernetes Service (k8s) — 36 endpoints

Deployments, GitOps, Helm charts/repos, secrets, ZKS clusters.

python3 -m scripts.zededa k8s list-deployments
python3 -m scripts.zededa k8s list-helm-charts
python3 -m scripts.zededa k8s list-zks

### Diagnostics Service (diag) — 21 endpoints

Device twin config, events, metrics, cloud health.

python3 -m scripts.zededa diag device-config --id <device_id>
python3 -m scripts.zededa diag events
python3 -m scripts.zededa diag health

### App Profile Service (app-profile) — 19 endpoints

Application policies and their status.

python3 -m scripts.zededa app-profile list-policies

### Network Service (network) — 16 endpoints

Network configurations and status.

python3 -m scripts.zededa network list-networks

### Job Service (job) — 17 endpoints

Bulk operations for devices, applications, and hardware models.

python3 -m scripts.zededa job list-jobs
python3 -m scripts.zededa job create-job --body '{"name":"upgrade-all","type":"BASEOS_UPGRADE"}'

### Edge Node Cluster Service (cluster) — 13 endpoints

Edge node cluster configuration and status.

python3 -m scripts.zededa cluster list-clusters

### Programmatic Usage

All 473 endpoints are accessible via the Python service classes:

from scripts.client import ZededaClient
from scripts.node_service import NodeService
from scripts.app_service import AppService
from scripts.errors import ZededaAuthError

client = ZededaClient(token="your_token")
nodes = NodeService(client)

# List all devices
devices = nodes.query_edge_nodes()

# Get by serial
device = nodes.get_edge_node_by_serial("1234567890")

# Error handling
try:
    nodes.delete_edge_node("nonexistent")
except ZededaAuthError as e:
    print(f"Auth failed: {e}")

### External Endpoints

URLData SentPurposehttps://zedcontrol.zededa.net/api (configurable)API Token, request payloadsZEDEDA API operations

### Data Handling

Only data provided as arguments and the ZEDEDA_API_TOKEN env var are sent to the ZEDEDA API. The token is sanitised in all log output. No local files are read or written unless --body-file is used.

### Model Invocation Note

This skill is designed to be autonomously invoked by the OpenClaw agent. You can opt-out by disabling this skill.

### Trust Statement

By using this skill, data sent is limited to the arguments provided and sent directly to ZEDEDA. Only install this skill if you trust ZEDEDA with the information you provide.

### Author Verification

This skill is authored by Kristopher Clark. Identity verified via Keybase.

BEGIN KEYBASE SALTPACK SIGNED MESSAGE. kXR7VktZdyH7rvq v5weRa0zkEnlTg9 7yljWmR5TurQlor ZjIVwF7oYGpzraX 38PX2G5XcuQ22d6 ja45ksU1WM3A9Bv UKMgb92s3JRaWg5 d6TsXlHuiZ5ALHT w0K8psUX0w9L63Z zQJMoNyTNwZDvXh Kz0a39QK3NslDMf Tr0kSja6eH0ydSq OHsUMC1ikOHG7Jo RaeFSBz5AnKZPaP DhT0VR85z64bQsk qA4R3n2sQwUmIxZ 4tHmaSRJ1KjBFAi KIeOkpHLzCtG8au 7esD10Mlhxt0xH9 xSq6jXUCDjtwYLi 8QfFjYvRv0DLNpm vgjAuWlnPRedo9i yVWeeQRl0bZfDYO 2g1liT1mUlWymvK YjV4fmOPjnFzt0Y Hj6ldtNcr3Ls1PV xop8sB9nO3Qnb53 pnGCWx1wghTuDAg QMx4. END KEYBASE SALTPACK SIGNED MESSAGE.

Verify with keybase verify or at keybase.io/verify.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: krisclarkdev
- Version: 1.0.6
## 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-11T10:45:00.715Z
- Expires at: 2026-05-18T10:45:00.715Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/zededa)
- [Send to Agent page](https://openagent3.xyz/skills/zededa/agent)
- [JSON manifest](https://openagent3.xyz/skills/zededa/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/zededa/agent.md)
- [Download page](https://openagent3.xyz/downloads/zededa)