ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

openclaw-manager

Deploy, harden, and operate OpenClaw across local and hosted environments (Fly.io, Render, Railway, Hetzner, GCP) with secure defaults, channel setup guidance, integration onboarding, and troubleshooting workflows grounded in official OpenClaw documentation. Use when users need install/deploy help, migration support, runtime hardening, memory/agent operations tuning, or incident response.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/hollaugo/openclaw-manager
Or

OpenClaw Manager

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:

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

Workflow

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

Metadata

Author@hollaugo
Stars2387
Views1
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-hollaugo-openclaw-manager": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.