Token导航 LogoToken导航TokenDH.com
运维敏感数据clawhub未标认证来源可访问clear审计提醒

sysclaw-ops系统爪操作

Agent Skill

sysclaw-ops 用于补充运维相关能力,适合在 OpenClaw 中需要让 Agent 承接运维相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,624

周安装

276

GitHub Stars

公开资料未说明

下载量

2,208
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sysclaw-ops

简介

处理 SysClaw 代理请求并协调跨代理通信系统运作。

  • 适用于大规模多 Agent 架构下的任务分发与状态同步场景。
  • 监听队列消息并根据优先级调度执行对应技能模块。sysclaw-ops 属于运维类 Skill,可作为该场景下的辅助能力补充。
  • 需配置 MQTT 或 HTTP 回调地址以实现内外系统对接互通。
  • 建议设置心跳检测防止僵尸进程阻塞整体工作流进度。

SKILL.md

name
sysclaw-ops
description
>

SysClaw Ops (Server)

Server-side operations for the cross-agent communication system. This skill covers how SysClaw processes incoming requests, manages notifications, and communicates with agents.

Required Credentials

CredentialPurposeMinimal Privileges
SYSCLAW_DB_HOSTPostgreSQL host (MB-ClawTool-01)Network access to port 5432
SYSCLAW_DB_PORTPostgreSQL port (5432)
SYSCLAW_DB_NAMEDatabase name (system_comm)CONNECT privilege
SYSCLAW_DB_USERDB role for SysClawSee privileges below
SYSCLAW_DB_PASSWORDDB password
Telegram bot tokenFor escalating urgent requests to the human operatorConfigured via OpenClaw

Minimal DB privileges required:

-- agent_requests table
GRANT SELECT, UPDATE (verdict, security_assessment, resolved_at, resolved_by, escalated, escalation_reason)
  ON agent_requests TO <sysclaw_role>;

-- issues table
GRANT SELECT, UPDATE (status, resolved_at, resolved_by) ON issues TO <sysclaw_role>;

-- notifications table
GRANT SELECT, INSERT, UPDATE (read) ON notifications TO <sysclaw_role>;

Installation

This skill is designed for the SysClaw operator (an OpenClaw agent running on the server that manages infrastructure). It is not a standalone daemon.

Components

  1. This SKILL.md — Instructions for the SysClaw agent on processing requests
  2. OpenClaw cron jobsysclaw-notification-check (see below)
  3. Telegram integration — Via OpenClaw's session delivery to the human operator

Cron Job Setup

The sysclaw-notification-check is an OpenClaw cron job, not a system binary. It runs as an isolated agent session within OpenClaw:

{
  "name": "sysclaw-notification-check",
  "schedule": { "kind": "cron", "expr": "*/15 * * * *", "tz": "Europe/Copenhagen" },
  "sessionTarget": "isolated",
  "payload": {
    "kind": "agentTurn",
    "message": "Check for new agent notifications and process requests. Use sysclaw-ops skill for workflow.",
    "timeoutSeconds": 120
  },
  "delivery": { "mode": "announce" }
}

Created via OpenClaw cron API. The agent session has access to SSH and DB tools — no separate binary needed.

Telegram Integration

Escalated requests are flagged in the database by the cron job. SysClaw checks for escalated requests during its normal session workflow and notifies the human operator on Telegram using OpenClaw's messaging. The cron job itself does not send Telegram messages.

Database Tables

agent_requests — Requests from agents

ColumnTypeNotes
idserialPK
requesting_agentvarchar(50)Agent name
request_typevarchar(30)access, software, resource, config, service, deployment, info
actionvarchar(30)install, remove, create, modify, restart, grant, check, deploy
targetvarchar(255)What this applies to
justificationtextWhy it's needed
payloadjsonbRequest-specific details
urgencyvarchar(20)low, normal, urgent
verdictvarchar(20)pending → approveddeniedescalated
security_assessmenttextSysClaw writes risk analysis
escalatedbooleanWhether the human operator was notified
created_attimestamp
resolved_attimestampSet by SysClaw
resolved_byvarchar(50)sysclaw or the human operator
source_hostvarchar(100)Originating machine

issues — Issues reported by agents

ColumnTypeNotes
idserialPK
sourcevarchar(50)Agent name
severityvarchar(20)info, warning, critical
categoryvarchar(50)disk, service, error, resource, network, config, other
titlevarchar(255)Short description
detailstextExtended context
statusvarchar(20)open → resolved
created_attimestamp
source_hostvarchar(100)Originating machine

notifications — Agent ↔ SysClaw communication

ColumnTypeNotes
idserialPK
recipientvarchar(50)Agent name or 'sysclaw'
sendervarchar(50)Who sent it
related_requestintegerFK → agent_requests(id)
messagetextNotification content
urgencyvarchar(20)low, normal, urgent
readbooleanWhether recipient has processed it
created_attimestamp

worklog — SysClaw action log

ColumnTypeNotes
idserialPK
request_idintegerFK → agent_requests(id)
actionvarchar(50)What was done
targetvarchar(255)Where it was done
executed_byvarchar(50)sysclaw or agent name
commandtextCommand or action taken
resulttextOutcome
statusvarchar(20)in_progress, completed, failed, verified
started_attimestamp
completed_attimestamp
Full schema reference: See references/db-schema.md for detailed column constraints, indexes, role permissions, and status flows.

Processing Workflow

Check for new notifications

SELECT * FROM notifications WHERE recipient = 'sysclaw' AND read = FALSE ORDER BY created_at ASC;

Process a pending request

Agents submit requests because they can't do it themselves. When SysClaw approves, SysClaw executes.

_Note: These queries show the pattern. Use parameterized queries or your agent's DB tooling — never interpolate values directly._
-- 1. Read the request
SELECT * FROM agent_requests WHERE id = <request_id>;

-- 2. Assess and update verdict
UPDATE agent_requests
SET verdict = 'approved',
    security_assessment = 'Low risk: standard package install on managed VM',
    resolved_at = NOW(),
    resolved_by = 'sysclaw'
WHERE id = <request_id>;

-- 3. Log to worklog
INSERT INTO worklog (request_id, action, target, command, status)
VALUES (<request_id>, '<action>', '<target>', '<what SysClaw will do>', 'in_progress');

-- 4. Execute the action (SSH to target, run command, verify)

-- 5. Update worklog with result
UPDATE worklog SET status = 'completed', result = '<outcome>', completed_at = NOW() WHERE id = <worklog_id>;

-- 6. Write response notification back to agent
INSERT INTO notifications (recipient, sender, related_request, message, urgency)
VALUES ('jobhunter', 'sysclaw', <request_id>, 'Request #5 DONE: cron installed and verified on MB-OpenClaw-01', 'normal');

-- 7. Mark sysclaw's notification as read
UPDATE notifications SET read = TRUE WHERE id = <notification_id>;

Execution by Request Type

Request typeAction
infoSSH to target, run check, write result to worklog + notification
softwareSSH to target, install package, verify service running
configSSH to target, apply config change, verify
serviceSSH to target, restart/stop/start service, verify status
resourceCreate DB/user/allocation if SysClaw has access; escalate infrastructure requests
deploymentSSH to target, deploy per request details, verify
accessEscalate to human operator — never auto-approved

Escalate to the human operator

For urgent requests or high-risk actions:

  1. Set verdict = 'escalated', escalated = TRUE, escalation_reason = '<reason>'
  2. The request is now flagged for human review
  3. SysClaw checks for escalated requests during its next session and notifies the human operator on Telegram
  4. The human operator reviews and decides
  5. SysClaw updates the verdict and notifies the requesting agent
Note: The cron job does NOT send Telegram messages directly. It flags requests as escalated. SysClaw handles Telegram notification during its normal session workflow.
  1. SysClaw updates verdict and notifies the requesting agent

Resolve an issue

UPDATE issues SET status = 'resolved', resolved_at = NOW(), resolved_by = 'sysclaw' WHERE id = <issue_id>;

Decision Guidelines

Auto-approve (low risk):

  • Software installs on managed VMs (standard packages)
  • Info/check requests (disk, service status)
  • Config changes to agent's own workspace

escalate to the human operator (high risk):

  • Access requests (SSH keys, DB credentials, new users)
  • Firewall or network changes
  • Production service restarts
  • Anything modifying shared infrastructure
  • Requests marked urgency = 'urgent'

The human operator and infrastructure owner. All high-risk decisions require the human operator's approval.

Deny:

  • Requests without clear justification
  • Dangerous operations (rm -rf, chmod 777)
  • Conflicts with security policy

Cron Job Behavior

The sysclaw-notification-check OpenClaw cron job runs every 15 minutes:

  1. Checks notifications WHERE recipient = 'sysclaw' AND read = FALSE
  2. For each notification, reads the related request
  3. Assesses risk per Decision Guidelines above
  4. Low risk → approves, executes the action, logs to worklog, notifies agent with result
  5. High risk → flags as verdict='escalated' for human review
  6. Marks processed notifications as read

This is not a system cron job or binary. It runs within the OpenClaw framework as an isolated agent session with access to SSH and DB tools.

SysClaw Escalation Handling

SysClaw checks for escalated requests during its heartbeat and regular sessions:

  1. Query: SELECT * FROM agent_requests WHERE verdict = 'escalated' AND resolved_at IS NULL
  2. For each escalated request, notify the human operator on Telegram with request details
  3. Wait for human operator's decision
  4. Update verdict, write security_assessment, set resolved_at/resolved_by
  5. Write response notification back to the requesting agent

This is configured in SysClaw's HEARTBEAT.md to run on every heartbeat cycle.

Useful Queries

-- Pending requests
SELECT id, requesting_agent, request_type, action, target, urgency, created_at
FROM agent_requests WHERE verdict = 'pending' ORDER BY created_at;

-- Recent activity
SELECT * FROM agent_requests ORDER BY created_at DESC LIMIT 10;

-- Open issues
SELECT id, source, severity, title, status FROM issues WHERE status = 'open';

-- Unread notifications by recipient
SELECT recipient, COUNT(*) FROM notifications WHERE read = FALSE GROUP BY recipient;

Security Considerations

  • Principle of least privilege: DB role should only have UPDATE on specific columns, not full table access
  • Audit trail: All verdict changes are logged via resolved_at, resolved_by, and security_assessment
  • Human oversight: High-risk requests always escalate to the human operator — SysClaw never auto-approposes access/infra changes
  • No secrets in skill: Credentials are provided via OpenClaw environment, not stored in this skill

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.48%
按下载量换算1,600

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills