Install
openclaw skills install ezviz-open-restaurant-inspectionEzviz restaurant inspection skill. Captures device images and sends to Ezviz AI for food safety analysis.
openclaw skills install ezviz-open-restaurant-inspectionCaptures images from Ezviz cameras and sends to Ezviz AI for restaurant safety inspection.
Running this skill means you accept these remote actions:
Data flow: Device -> open.ys7.com -> aidialoggw.ys7.com -> Local output
Privacy:
export EZVIZ_APP_KEY="your_key"
export EZVIZ_APP_SECRET="your_secret"
export EZVIZ_DEVICE_SERIAL="dev1,dev2"
python3 scripts/restaurant_inspection.py
Add to ~/.openclaw/channels.json:
{
"channels": {
"ezviz": {
"appId": "your_app_id",
"appSecret": "your_app_secret",
"devices": ["BF6985110"]
}
}
}
Then run:
python3 scripts/restaurant_inspection.py
export EZVIZ_TOKEN_CACHE=0
python3 scripts/restaurant_inspection.py
Run these before first use:
# 1. Check for hidden characters
python3 -c "
import sys
for f in ['SKILL.md', 'scripts/restaurant_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)
| Domain | Purpose |
|---|---|
| open.ys7.com | Token, Capture, Agent Management |
| aidialoggw.ys7.com | AI Analysis |
Note: open.ys7.com is the official Ezviz Open API domain (openai = Open API, not AI).
Before running:
Before autonomous use:
| Date | Version | Changes |
|---|---|---|
| 2026-03-19 | 1.0.8 | Security hardened: unified domains, user confirmation, clean UTF-8 |
| 2026-03-19 | 1.0.7 | Global token cache support |
| 2026-03-19 | 1.0.6 | Config file support |
Author: EzvizOpenTeam License: MIT-0