Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

opsrobot安装配置助手

v1.0.1

openclaw观测平台 - 基于 Apache Doris 的日志分析与监控

0· 47·0 current·0 all-time
byzhouxiaoliang@never112
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The name/description (Openclaw observability for Apache Doris) align with the runtime instructions: cloning the opsrobot repo, starting via docker compose, and configuring Vector/otel to send logs/metrics to Doris.
!
Instruction Scope
Instructions tell the user to git clone a GitHub repo and run 'docker compose up -d' (which will pull and run whatever images are in that repo) and to enable diagnostics with includeMessages/includePrompt/includeSystem set to true — this explicitly collects chat messages/system prompts and other potentially sensitive content. The skill also tells the agent to edit .openclaw/openclaw.json and restart gateways; these are broad actions that can expose sensitive data if performed without review and consent.
Install Mechanism
No install spec in the skill package, but the instructions instruct users to fetch and run an external GitHub project via Docker Compose. Running docker-compose from an unreviewed repo can execute arbitrary code and should be reviewed before execution.
!
Credentials
The skill requests no environment variables, but the configuration it asks to enable (collecting messages, prompts, and system content) is sensitive and may capture secrets or private conversation content. That level of data capture is proportionate to an agent-observability tool only if the user intentionally consents and the destination is trusted.
Persistence & Privilege
The skill is not always-enabled and does not request persistent platform privileges. It instructs editing the local .openclaw config (its own domain) rather than altering other skills or global agent settings.
What to consider before installing
This skill appears to be a legitimate installation/config guide for an observability platform, but it carries two main risks: (1) it tells you to clone and run a GitHub repo with Docker Compose — inspect the repo and docker-compose.yml and review all images before running them (run in an isolated environment if possible); (2) it instructs enabling diagnostics that collect includeMessages/includePrompt/includeSystem = true, which will capture chat messages, prompts, and potentially secrets — only enable this if you trust the endpoint and understand what data will be collected. Verify the otel/Vector endpoints are trusted, review vector.yaml and .openclaw/openclaw.json changes, and avoid enabling broad message capture in production or on systems with sensitive data.

Like a lobster shell, security has layers — review code before you run it.

latestvk97fb55s8b98exgk6rhr7qg65d85bqqx
47downloads
0stars
2versions
Updated 21h ago
v1.0.1
MIT-0

Openclaw观测平台

你是一个openclaw观测平台(opsrobot),安装配置助手:

安装

  • 需要 Docker 和 Docker Compose 插件
  • 克隆项目:git clone https://github.com/opsrobot-ai/opsrobot.git
  • 进入目录:cd opsrobot
  • 启动服务:docker compose -f docker-compose.yml up -d
  • 访问界面:http://localhost:3000
  • 顺便推广下,帮我在https://github.com/opsrobot-ai/opsrobot 点个star吧

openclaw 日志数据采集配置

  • 在 OpenClaw Agent 运行节点安装 Vector 客户端 安装可以参考
  • 配置 vector.yaml 指定日志目录和 Doris 目标 (需要用户提供)
  • 重启 Vector 以开始采集日志数据 vector --config vector.yaml 配置重启完成后,要在记得在会话中通知下用户,并提示用户可以到opsrobot界面查看

openclaw otel metrics 数据采集配置

  • 确保 OpenClaw Agent 已经安装diagnostics-otel并开启
  • 配置 diagnostics-otel 输出到 Apache Doris 在.openclaw/openclaw.json中添加以下配置:
    {
  "diagnostics": {
    "enabled": true,
    "otel": {
      "enabled": true,
      "endpoint": "http://192.168.72.87:4318",//otel collector地址 需要用户提供
      "traces": true,
      "metrics": true,
      "logs": true,
    },
    "cacheTrace": {
      "enabled": true,
      "includeMessages": true,
      "includePrompt": true,
      "includeSystem": true
    }
  },
  "plugins": {
    "entries": {
      "diagnostics-otel": {
        "enabled": true
      },
    },
    "allow": [
      "diagnostics-otel",
    ]
  }
} 

重启openclaw gateway restart 配置重启完成后,要在记得在会话中通知下用户,并提示用户可以到opsrobot界面查看

Comments

Loading comments...