Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

openclaw-managerOpenClaw manager 部署

Agent Skill

openclaw-manager 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,264

周安装

501

GitHub Stars

公开资料未说明

下载量

3,968
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-manager(OpenClaw manager 部署)
来源仓库:https://github.com/hollaugo/openclaw-manager
安装命令:
openclaw skills install openclaw-manager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openclaw-manager

简介

openclaw-manager 用于指导 OpenClaw 的安全部署与运维管理。

  • 适合跨环境(本地、Fly.io、Render 等)部署和维护代理实例。
  • 提供默认安全配置、通道设置和操作强化建议。
  • 安装命令为 openclaw skills install openclaw-manager,需确认目标平台兼容性。
  • 注意生产环境中的密钥管理和访问控制,防止配置泄露。

SKILL.md

name
openclaw-manager
description
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.
runtime_metadata
deployment_modes
supported_providers
supported_operating_systems
supported_channels
supported_integrations
security_gates
privileged_operations
required_env_vars

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

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)

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

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

  1. Clone the selected OpenClaw source repo.
  2. Follow provider playbook from references/openclaw-doc-map.md.
  3. Configure persistent storage before production traffic.
  4. Configure ingress/auth, secrets, and health checks.
  5. 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:

  1. Mode/provider/OS/environment status summary
  2. Security gate results (hard pass/fail)
  3. Channel + integration matrix
  4. Agent + memory configuration summary
  5. Ops ledger update confirmation (event names written)
  6. Follow-up actions ordered by risk

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.4%
按下载量换算3,627

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills