{
  "schemaVersion": "1.0",
  "item": {
    "slug": "cameras",
    "name": "Cameras",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/ivangdavila/cameras",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/cameras",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/cameras",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cameras",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "capture.md",
      "photography-control.md",
      "processing.md",
      "security-integration.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/cameras"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/cameras",
    "agentPageUrl": "https://openagent3.xyz/skills/cameras/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cameras/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cameras/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Scope",
        "body": "This skill:\n\n✅ Generates camera capture commands\n✅ Guides integration with security systems\n✅ Provides troubleshooting for camera issues\n\nUser-driven model:\n\nUser provides camera credentials (RTSP URLs, passwords)\nUser runs capture commands\nUser installs required tools\n\nThis skill does NOT:\n\n❌ Store camera credentials\n❌ Run captures automatically without user request\n❌ Access cameras without user-provided access info"
      },
      {
        "title": "Requirements",
        "body": "Required:\n\nffmpeg — for capture and recording\n\nOptional (user installs if needed):\n\ngphoto2 — for DSLR/mirrorless control\nv4l2-ctl — for USB cameras on Linux"
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileSecurity camera integrationsecurity-integration.mdUSB/webcam capturecapture.mdDSLR controlphotography-control.mdVideo processingprocessing.md"
      },
      {
        "title": "1. User Provides Camera Access",
        "body": "When user requests capture:\n\nUser: \"Snapshot from my front door camera\"\nAgent: \"I need the RTSP URL. Format: rtsp://user:pass@ip/stream\n        Provide it or set CAMERA_FRONT_URL in env.\"\nUser: \"rtsp://admin:pass@192.168.1.50/stream1\"\n→ Agent generates: ffmpeg -i \"URL\" -frames:v 1 snapshot.jpg"
      },
      {
        "title": "2. Common Commands",
        "body": "# Snapshot from RTSP (user provides URL)\nffmpeg -i \"$RTSP_URL\" -frames:v 1 snapshot.jpg\n\n# Record 10s clip\nffmpeg -i \"$RTSP_URL\" -t 10 -c copy clip.mp4\n\n# Webcam snapshot (macOS)\nffmpeg -f avfoundation -i \"0\" -frames:v 1 webcam.jpg\n\n# Webcam snapshot (Linux)\nffmpeg -f v4l2 -i /dev/video0 -frames:v 1 webcam.jpg"
      },
      {
        "title": "3. Protocol Reference",
        "body": "ProtocolUse CaseURL FormatRTSPIP camerasrtsp://user:pass@ip:554/streamHTTPSimple camshttp://ip/snapshot.jpgV4L2USB cameras/dev/video0"
      },
      {
        "title": "4. Integration Patterns",
        "body": "With Home Assistant:\n\nGET /api/camera_proxy/camera.front_door\n\nUser provides HA URL and token.\n\nWith Frigate:\n\nMQTT: frigate/events for alerts\nHTTP: /api/events/{id}/snapshot.jpg"
      },
      {
        "title": "5. Security",
        "body": "Never log camera URLs with credentials\nRecommend user stores URLs in env vars\nRTSP streams may be unencrypted — warn about LAN security"
      }
    ],
    "body": "Scope\n\nThis skill:\n\n✅ Generates camera capture commands\n✅ Guides integration with security systems\n✅ Provides troubleshooting for camera issues\n\nUser-driven model:\n\nUser provides camera credentials (RTSP URLs, passwords)\nUser runs capture commands\nUser installs required tools\n\nThis skill does NOT:\n\n❌ Store camera credentials\n❌ Run captures automatically without user request\n❌ Access cameras without user-provided access info\nRequirements\n\nRequired:\n\nffmpeg — for capture and recording\n\nOptional (user installs if needed):\n\ngphoto2 — for DSLR/mirrorless control\nv4l2-ctl — for USB cameras on Linux\nQuick Reference\nTopic\tFile\nSecurity camera integration\tsecurity-integration.md\nUSB/webcam capture\tcapture.md\nDSLR control\tphotography-control.md\nVideo processing\tprocessing.md\nCore Rules\n1. User Provides Camera Access\n\nWhen user requests capture:\n\nUser: \"Snapshot from my front door camera\"\nAgent: \"I need the RTSP URL. Format: rtsp://user:pass@ip/stream\n        Provide it or set CAMERA_FRONT_URL in env.\"\nUser: \"rtsp://admin:pass@192.168.1.50/stream1\"\n→ Agent generates: ffmpeg -i \"URL\" -frames:v 1 snapshot.jpg\n\n2. Common Commands\n# Snapshot from RTSP (user provides URL)\nffmpeg -i \"$RTSP_URL\" -frames:v 1 snapshot.jpg\n\n# Record 10s clip\nffmpeg -i \"$RTSP_URL\" -t 10 -c copy clip.mp4\n\n# Webcam snapshot (macOS)\nffmpeg -f avfoundation -i \"0\" -frames:v 1 webcam.jpg\n\n# Webcam snapshot (Linux)\nffmpeg -f v4l2 -i /dev/video0 -frames:v 1 webcam.jpg\n\n3. Protocol Reference\nProtocol\tUse Case\tURL Format\nRTSP\tIP cameras\trtsp://user:pass@ip:554/stream\nHTTP\tSimple cams\thttp://ip/snapshot.jpg\nV4L2\tUSB cameras\t/dev/video0\n4. Integration Patterns\n\nWith Home Assistant:\n\nGET /api/camera_proxy/camera.front_door\n\n\nUser provides HA URL and token.\n\nWith Frigate:\n\nMQTT: frigate/events for alerts\nHTTP: /api/events/{id}/snapshot.jpg\n5. Security\nNever log camera URLs with credentials\nRecommend user stores URLs in env vars\nRTSP streams may be unencrypted — warn about LAN security"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/cameras",
    "publisherUrl": "https://clawhub.ai/ivangdavila/cameras",
    "owner": "ivangdavila",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/cameras",
    "downloadUrl": "https://openagent3.xyz/downloads/cameras",
    "agentUrl": "https://openagent3.xyz/skills/cameras/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cameras/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cameras/agent.md"
  }
}