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

ezviz-open-safety-production-inspectionezviz 开展安全生产大检查

Agent Skill

ezviz-open-safety-production-inspection 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,611

周安装

227

GitHub Stars

公开资料未说明

下载量

1,762
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ezviz-open-safety-production-inspection

简介

萤石安全生产检查技能。捕获设备图像并发送至 Ezviz AI 以进行工作场所安全分析。

SKILL.md

name
ezviz-open-safety-production-inspection
description
Ezviz safety production inspection skill. Captures device images and sends to Ezviz AI for workplace safety analysis.
metadata
openclaw
emoji
⚠️
requires
env
["EZVIZ_APP_KEY", "EZVIZ_APP_SECRET", "EZVIZ_DEVICE_SERIAL"]
pip
["requests"]
primaryEnv
EZVIZ_APP_KEY
warnings
sideEffects
security
utf8Validated
true
apiDomains
["open.ys7.com", "aidialoggw.ys7.com"]
tokenCachePerms
0600

Ezviz Safety Production Inspection Skill

Captures images from Ezviz cameras and sends to Ezviz AI for workplace safety production inspection.

Template: 安全生产行业通用智能体 (e15f061c13f349b1b2a3)

Detection Items:

  • Safety helmet detection (安全帽佩戴)
  • Fall detection (人员跌倒)
  • Cleanliness analysis (整洁度)
  • Fire/smoke detection (烟火检测)
⚠️ Important: This skill uses the 安全生产行业通用智能体 template. - Template ID: e15f061c13f349b1b2a3 - The skill will prioritize existing agents with '安全生产' in the name - If no matching agent exists, a new one will be created from the safety production template - Created agents will automatically have '安全生产' in the name

User Confirmation Required

Running this skill means you accept these remote actions:

  1. Query Ezviz agent list (open.ys7.com)
  2. Create agent from template if needed (open.ys7.com)
  3. Capture device images (open.ys7.com)
  4. Send images for AI analysis (aidialoggw.ys7.com)

Data flow: Device -> open.ys7.com -> aidialoggw.ys7.com -> Local output

Privacy:

  • Images stored on Ezviz (2 hours)
  • Token cached in /tmp/ezviz_global_token_cache/ (perms 600)

Security Requirements

  1. Use dedicated Ezviz app credentials (not main account)
  2. Minimal permissions: capture + agent APIs only
  3. Prefer environment variables over config files
  4. Test with non-production devices first
  5. Agent name must contain '安全生产' (compliance requirement)

Quick Start

Environment Variables (Recommended)

export EZVIZ_APP_KEY="your_key"
export EZVIZ_APP_SECRET="your_secret"
export EZVIZ_DEVICE_SERIAL="dev1,dev2"
# Template ID is optional (default: e15f061c13f349b1b2a3)
export EZVIZ_SAFETY_TEMPLATE_ID="e15f061c13f349b1b2a3"
python3 scripts/safety_production_inspection.py

Config File (Alternative)

Add to ~/.openclaw/channels.json:

{
  "channels": {
    "ezviz": {
      "appId": "your_app_id",
      "appSecret": "your_app_secret",
      "devices": ["BF6985110"],
      "safetyTemplateId": "e15f061c13f349b1b2a3"  # 安全生产行业通用智能体模板 ID
    }
  }
}

Then run:

python3 scripts/safety_production_inspection.py

Disable Token Cache (High Security)

export EZVIZ_TOKEN_CACHE=0
python3 scripts/safety_production_inspection.py

Pre-Run Verification

Run these before first use:

# 1. Check for hidden characters
python3 -c "
import sys
for f in ['SKILL.md', 'scripts/safety_production_inspection.py', 'lib/token_manager.py']:
    with open(f, 'rb') as file:
        text = file.read().decode('utf-8')
        for i, c in enumerate(text):
            code = ord(c)
            if code < 32 and code not in [9, 10, 13]:
                print(f'{f}: Control char at {i}')
                sys.exit(1)
print('All files clean')
"

# 2. Verify API domains (should use open.ys7.com only)
grep -r "open.ys7.com" scripts/ lib/  # Should show endpoints

# 3. Verify domain connectivity
curl -I https://open.ys7.com/api/lapp/token/get  # Should return 200 OK

# 4. Check token cache permissions
ls -la /tmp/ezviz_global_token_cache/global_token_cache.json
# Should show: -rw------- (600)

API Endpoints

DomainPurpose
open.ys7.comToken, Capture, Agent Management
aidialoggw.ys7.comAI Analysis

Note: open.ys7.com is the official Ezviz Open API domain (openai = Open API, not AI).


Safety Production Inspection Items

The AI agent will analyze images for:

  1. Personal Protective Equipment (PPE) - Safety helmets, safety vests, goggles
  2. Fire Safety - Fire extinguishers, emergency exits, no smoking signs
  3. Electrical Safety - Proper wiring, no exposed wires, grounded equipment
  4. Workplace Organization - Clear walkways, proper storage, no clutter
  5. Machinery Safety - Guard rails, warning signs, proper operation
  6. Hazardous Materials - Proper storage, labeling, containment

Security Checklist

Before running:

  • [ ] Reviewed scripts/safety_production_inspection.py
  • [ ] Reviewed lib/token_manager.py
  • [ ] Verified API domains (open.ys7.com, aidialoggw.ys7.com)
  • [ ] Created dedicated Ezviz app (minimal permissions)
  • [ ] Tested with non-production device
  • [ ] Configured 安全生产 template ID

Before autonomous use:

  • [ ] Accept remote side effects (agent creation, image capture, AI analysis)
  • [ ] Understand data flow and privacy implications
  • [ ] Configured token cache appropriately for your environment

Update Log

DateVersionChanges
2026-03-192.0.1Updated template ID to e15f061c13f349b1b2a3 (安全生产行业通用智能体)
2026-03-192.0.0Renamed from restaurant-inspection to safety-production-inspection
2026-03-191.0.9Agent name must contain '安全生产' (compliance requirement)
2026-03-191.0.8Security hardened: unified domains, user confirmation, clean UTF-8
2026-03-191.0.7Global token cache support
2026-03-191.0.6Config file support

Author: EzvizOpenTeam License: MIT-0

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.53%
按下载量换算1,437

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills