Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

openclaw-maintainOpenClaw maintain 搜索

Agent Skill

openclaw-maintain 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

485

周安装

20

GitHub Stars

3

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/anthemflynn/ccmp --skill openclaw-maintain

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 支持基于任务场景或来源线索的信息聚合与过滤。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件读写。
  • openclaw-maintain 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

!openclaw daemon status 2>&1 | head -10!openclaw cron status 2>&1 | head -10

OpenClaw Maintain — Keep It Running

You are an OpenClaw maintenance operator. Handle daemon lifecycle, updates, log management, cron scheduling, session cleanup, memory indexing, and sandbox management.

Scope

This skill covers operational maintenance — keeping the system running day-to-day:

  • Daemon (gateway service) lifecycle
  • CLI and gateway updates
  • Log rotation and cleanup
  • Cron job management
  • Session cleanup
  • Memory index maintenance
  • Sandbox container management

For configuration changes, use openclaw-admin. For diagnostics, use openclaw-doctor. For adding new capabilities, use openclaw-extend.


Daemon Management

Status Check

openclaw daemon status        # service status + gateway probe
openclaw gateway status       # gateway-level status
openclaw gateway probe        # full reachability check

Lifecycle Commands

openclaw daemon start         # start the service
openclaw daemon stop          # stop the service
openclaw daemon restart       # restart the service
openclaw daemon install       # install as system service
openclaw daemon uninstall     # remove system service

Troubleshooting

Gateway won't start:

openclaw daemon status        # check if already running
openclaw gateway status       # check port conflicts
openclaw gateway --force      # kill existing listener, then start

Gateway crashes on start:

openclaw logs --limit 50      # check recent logs for errors
openclaw doctor               # run health check

Platform-specific details: See references/daemon-reference.md.


Updates

Check for Updates

openclaw update status        # current vs latest, channel info

Apply Update

openclaw update               # update (git checkout or npm)
openclaw update --yes         # non-interactive
openclaw update --no-restart  # update without restarting service

Channel Management

openclaw update --channel stable   # switch to stable
openclaw update --channel beta     # switch to beta
openclaw update --channel dev      # switch to dev
openclaw update --tag <version>    # one-off version

Post-Update Verification

openclaw daemon status        # service running?
openclaw status --all         # full health check
openclaw channels status --probe  # channels reconnected?

Log Management

View Logs

openclaw logs                 # recent gateway logs
openclaw logs --follow        # live tail
openclaw logs --limit 100     # last 100 lines
openclaw channels logs        # channel-specific logs

Log Rotation / Cleanup

du -sh ~/.openclaw/logs/      # check log size
ls -lah ~/.openclaw/logs/     # list log files

If error log > 10MB:

# Rotate the error log
mv ~/.openclaw/logs/error.log ~/.openclaw/logs/error.log.$(date +%Y%m%d)
openclaw daemon restart       # restart to create fresh log

Clean old rotated logs:

ls -t ~/.openclaw/logs/error.log.* 2>/dev/null | tail -n +4  # keep 3 most recent

Cron Job Management

View Jobs

openclaw cron list            # all jobs
openclaw cron status          # scheduler status
openclaw cron runs            # run history

Manage Jobs

openclaw cron add             # add a job (interactive)
openclaw cron edit <name>     # edit a job
openclaw cron enable <name>   # enable a job
openclaw cron disable <name>  # disable a job
openclaw cron rm <name>       # remove a job
openclaw cron run <name>      # run immediately (debug)

Cron expression syntax and job schema: See references/cron-reference.md.


Session Management

View Sessions

openclaw sessions             # all sessions
openclaw sessions --active 120  # active in last 2 hours
openclaw sessions --json      # machine-readable

Session Cleanup

Old sessions consume disk. Clean periodically:

openclaw sessions             # review what exists
openclaw sessions --active 120  # see what's recent

Memory Index Maintenance

Check Index Health

openclaw memory status --deep   # full index status

Healthy index: Not dirty, chunk count > 0, file count > 0, agent name matches.

Reindex

openclaw memory index           # rebuild index
openclaw memory status --deep   # verify after reindex

When to reindex:

  • After manually adding/removing files from ~/.openclaw/workspace/memory/
  • When memory status --deep shows dirty flag
  • When search returns stale or missing results
  • After agent name change

Sandbox Management

View Containers

openclaw sandbox list           # all containers
openclaw sandbox list --browser # browser containers only
openclaw sandbox explain        # effective sandbox policy

Recreate Containers

openclaw sandbox recreate --all           # recreate all
openclaw sandbox recreate --session main  # specific session
openclaw sandbox recreate --agent <name>  # agent containers

When to recreate:

  • After changing sandbox config
  • Container in error state
  • After Docker image update

Disk Usage

Check Sizes

du -sh ~/.openclaw/           # total
du -sh ~/.openclaw/logs/      # logs
du -sh ~/.openclaw/workspace/ # workspace
du -sh ~/.openclaw/state/     # state

Cleanup Targets

PathSafe to CleanHow
~/.openclaw/logs/error.log.*Yes (rotated logs)rm old rotated logs
~/.openclaw/openclaw.json.bak*Yes (config backups)Keep latest, remove rest
~/.openclaw/state/Mostly (old state files)Review before removing

Maintenance Schedules

Daily (automated via cron):

  • Heartbeat fires (if configured)
  • Sessions auto-expire

Weekly:

openclaw doctor               # health check
openclaw status --all         # overview
openclaw update status        # check for updates

Monthly:

openclaw memory status --deep # index health
openclaw memory index         # reindex if dirty
du -sh ~/.openclaw/logs/      # log size check
openclaw update               # apply updates

As needed:

openclaw sessions --active 120  # session cleanup
openclaw daemon restart         # if issues arise
openclaw sandbox recreate --all # if containers stale

Full playbooks: See references/maintenance-playbooks.md.

References

  • references/daemon-reference.md — Service paths, platform differences, ports
  • references/cron-reference.md — Job schema, expression syntax, common schedules
  • references/maintenance-playbooks.md — Step-by-step runbooks

Related Skills

  • openclaw-doctor — Run a health audit to identify maintenance needs
  • openclaw-admin — Apply config changes with verify-apply-verify discipline
  • openclaw-extend — Add plugins, channels, nodes, webhooks

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.78%
按下载量换算57

Claude

28.82%
按下载量换算46

Cursor

19.11%
按下载量换算30

Gemini CLI

8.5%
按下载量换算13

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills