# Send Synology Surveillance to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "synology-surveillance-skill",
    "name": "Synology Surveillance",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/photonixlaser-ux/synology-surveillance-skill",
    "canonicalUrl": "https://clawhub.ai/photonixlaser-ux/synology-surveillance-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/synology-surveillance-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=synology-surveillance-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/api.md",
      "scripts/syno-surveillance.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "synology-surveillance-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T15:16:07.224Z",
      "expiresAt": "2026-05-16T15:16:07.224Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=synology-surveillance-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=synology-surveillance-skill",
        "contentDisposition": "attachment; filename=\"synology-surveillance-skill-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "synology-surveillance-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/synology-surveillance-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/synology-surveillance-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/synology-surveillance-skill",
    "agentUrl": "https://openagent3.xyz/skills/synology-surveillance-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/synology-surveillance-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/synology-surveillance-skill/agent.md"
  }
}
```
## Documentation

### Synology Surveillance Station Skill

Steuere deine Überwachungskameras über die Synology Surveillance Station API.

### Voraussetzungen

Synology NAS mit installierter Surveillance Station
Benutzer mit Surveillance Station-Rechten
2FA deaktiviert für den API-Benutzer
jq installiert (apt install jq)

### 1. Konfiguration in TOOLS.md

Füge die Verbindungsdaten zu TOOLS.md hinzu:

### Synology Surveillance
- **Host:** 192.168.1.100 (deine NAS IP)
- **Port:** 5000 (HTTP) oder 5001 (HTTPS)
- **User:** surveillance_user
- **Pass:** dein_passwort
- **HTTPS:** false (true falls HTTPS aktiviert)

### 2. Login testen

./scripts/syno-surveillance.sh login

### 3. Kameras anzeigen

./scripts/syno-surveillance.sh cameras

Output:

ID: 1, Name: Eingang, Status: 1
ID: 2, Name: Garten, Status: 1
ID: 3, Name: Garage, Status: 0

### 4. Snapshot erstellen

./scripts/syno-surveillance.sh snapshot 1

Speichert: syno_snapshot_1_1738972800.jpg

### 5. Ereignisse anzeigen

# Letzte 10 Ereignisse
./scripts/syno-surveillance.sh events

# Letzte 50 Ereignisse
./scripts/syno-surveillance.sh events 50

### Verfügbare Befehle

BefehlBeschreibungloginSession erstellen (wird automatisch bei anderen Befehlen ausgeführt)logoutSession beendencamerasAlle Kameras mit ID und Status auflistensnapshot <id>Snapshot einer Kamera erstellenrecord <id> start|stopAufnahme starten/stoppenevents [limit]Ereignis-Log anzeigenstream <id>Live-Stream URL generierenptz <id> <direction>PTZ-Kamera bewegen (left/right/up/down/zoomin/zoomout)preset <id> <num>PTZ-Voreinstellung anfahren

### Umgebungsvariablen

VariableStandardBeschreibungSYNOLOGY_HOST192.168.1.100NAS IP/HostnameSYNOLOGY_PORT5000NAS PortSYNOLOGY_USERadminUsernameSYNOLOGY_PASS(leer)PasswortSYNOLOGY_HTTPSfalseHTTPS verwenden

### Direkte API-Calls

Falls das Script nicht passt, direkt mit curl:

# Login
curl -c cookies.txt "http://192.168.1.100:5000/webapi/auth.cgi?api=SYNO.API.Auth&method=login&version=3&account=USER&passwd=PASS&session=SurveillanceStation&format=cookie"

# Snapshot
curl -b cookies.txt "http://192.168.1.100:5000/webapi/entry.cgi?api=SYNO.SurveillanceStation.Camera&method=GetSnapshot&version=1&cameraId=1" -o snapshot.jpg

### API Details

Für komplexere Operationen: references/api.md

### Home Assistant Integration

Für Home Assistant Nutzer: Der Skill kann auch für HA Automatisierungen genutzt werden:

shell_command:
  syno_snapshot: "/pfad/zu/syno-surveillance.sh snapshot {{ camera_id }}"

### Troubleshooting

Login failed: Passwort prüfen, 2FA deaktivieren
Permission denied: Benutzer braucht Surveillance Station-Rechte
Camera not found: Kamera-ID prüfen mit cameras Befehl
Empty snapshot: Kamera offline oder keine Lizenz verfügbar

### Lizenz-Hinweis

Surveillance Station benötigt pro Kamera eine Lizenz (2 kostenlose inklusive bei den meisten NAS-Modellen).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: photonixlaser-ux
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-09T15:16:07.224Z
- Expires at: 2026-05-16T15:16:07.224Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/synology-surveillance-skill)
- [Send to Agent page](https://openagent3.xyz/skills/synology-surveillance-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/synology-surveillance-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/synology-surveillance-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/synology-surveillance-skill)