# Send Openclaw Manager 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": "openclaw-manager",
    "name": "Openclaw Manager",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hollaugo/openclaw-manager",
    "canonicalUrl": "https://clawhub.ai/hollaugo/openclaw-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml",
      "references/openclaw-doc-map.md",
      "references/openclaw-integrations-playbook.md",
      "references/openclaw-mode-matrix.md",
      "references/openclaw-ops-ledger-schema.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-manager",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T15:06:23.655Z",
      "expiresAt": "2026-05-13T15:06:23.655Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-manager",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-manager",
        "contentDisposition": "attachment; filename=\"openclaw-manager-0.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-manager"
      },
      "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/openclaw-manager"
    },
    "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/openclaw-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-manager",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-manager/agent.md"
  }
}
```
## Documentation

### Overview

Build and operate OpenClaw with production-safe defaults across both local and hosted environments. This skill is optimized for operators with limited platform expertise and enforces hard security gates before rollout completion.

Primary references:

Docs map: references/openclaw-doc-map.md
Security gates checklist: references/openclaw-security-checklist.md
Mode matrix: references/openclaw-mode-matrix.md
OS matrix: references/openclaw-os-matrix.md
Integrations playbook: references/openclaw-integrations-playbook.md
Ops ledger schema: references/openclaw-ops-ledger-schema.md

Automation helpers:

scripts/plan_openclaw_rollout.py
scripts/validate_openclaw_env.py
scripts/update_openclaw_ops_ledger.py

Default ops ledger path:

./openclaw-manager-operations-ledger.md (or operator specified)

### Hard-Stop Rules (Never Bypass)

Stop and block deployment/install progression if any condition is true:

Required secrets profile fails validation.
Security checklist mandatory gates are not all passing.
Rollback path is not documented and owned.
Ops ledger was not updated for the current phase.
Public exposure requested without auth boundary and token controls.

### 1) Intake and Scope Lock

Collect and confirm:

mode: local or hosted
provider: local, fly, render, railway, hetzner, gcp
os: macos, linux, windows-wsl2
channels: subset of telegram, discord, slack
integrations: subset of email, calendar
environment: dev, staging, prod
exposure: private or public

Before proceeding, write a scope_lock ledger entry:

python3 scripts/update_openclaw_ops_ledger.py \\
  --ledger-file ./openclaw-manager-operations-ledger.md \\
  --event scope_lock \\
  --operator codex \\
  --mode hosted \\
  --provider fly \\
  --os linux \\
  --environment prod \\
  --secrets-profile hosted-fly \\
  --channels telegram,slack \\
  --integrations email,calendar \\
  --security-status pending \\
  --rollback-tested no \\
  --blocking-issues "none" \\
  --next-owner operator \\
  --next-action-date 2026-02-20

### 2) Generate a Decision-Complete Plan

Always generate a plan first:

python3 scripts/plan_openclaw_rollout.py \\
  --mode hosted \\
  --provider fly \\
  --os linux \\
  --channels telegram,slack \\
  --integrations email,calendar \\
  --environment prod \\
  --exposure public \\
  --ledger-file ./openclaw-manager-operations-ledger.md \\
  --output /tmp/openclaw-rollout.md

The plan output is the execution contract. Do not skip sections.

### 3) Validate Secrets and Config Profile Before Any Infra Change

Validate environment using profile-aware gates:

python3 scripts/validate_openclaw_env.py \\
  --env-file .env \\
  --profile hosted-fly \\
  --json

Validation enforces:

required keys by profile
required provider/model alternatives
malformed and duplicate env keys
placeholder values
weak gateway/setup tokens
legacy alias warnings

Write a predeploy_validation ledger entry immediately after validation.

### 4) Execute Mode Branch

Branch A: Local install (mode=local)

Use official install/onboarding docs for local setup.
Apply OS-specific commands from references/openclaw-os-matrix.md.
Validate startup, persistence path, and local auth boundaries.
If local public exposure is requested, apply gateway hardening gates from security checklist first.

Branch B: Hosted clone + deploy (mode=hosted)

Clone the selected OpenClaw source repo.
Follow provider playbook from references/openclaw-doc-map.md.
Configure persistent storage before production traffic.
Configure ingress/auth, secrets, and health checks.
Verify runtime logs for startup/auth errors and secret leakage.

Write a deploy_complete ledger entry once deployment/install is complete.

### 5) Configure Channels and Integrations Safely

For each selected channel/integration:

inject credentials via secret manager/env only
run a minimal smoke test
verify auth boundaries and error logging safety

Track each item as:

configured
pending_credentials
blocked

Use references/openclaw-integrations-playbook.md for email/calendar specifics.

### 6) Agent + Memory Baseline

Document and validate:

memory persistence strategy
retention expectations
restart and recovery behavior
agent behavior boundaries

Update ledger with operational baseline decisions.

### 7) Mandatory Security Gate

Run references/openclaw-security-checklist.md and produce pass/fail per gate.

No go-live if any mandatory gate fails.

Write a security_gate ledger entry with explicit blockers (if any).

### 8) Handover and Incident Readiness

Produce:

provider status summary
channel + integration matrix
security gate table
rollback and escalation ownership
follow-up actions by risk order

Write handover ledger entry. For incidents/troubleshooting, append incident entries as events happen.

### Output Contract

Always return:

Mode/provider/OS/environment status summary
Security gate results (hard pass/fail)
Channel + integration matrix
Agent + memory configuration summary
Ops ledger update confirmation (event names written)
Follow-up actions ordered by risk
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: hollaugo
- Version: 0.1.1
## 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-06T15:06:23.655Z
- Expires at: 2026-05-13T15:06:23.655Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-manager)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-manager)