{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ipcam",
    "name": "Ipcam",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/ltpop/ipcam",
    "canonicalUrl": "https://clawhub.ai/ltpop/ipcam",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ipcam",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ipcam",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "install.sh",
      "scripts/camera.sh",
      "scripts/ptz.py"
    ],
    "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. 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."
        },
        {
          "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "ipcam",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T08:56:53.577Z",
      "expiresAt": "2026-05-07T08:56:53.577Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ipcam",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ipcam",
        "contentDisposition": "attachment; filename=\"ipcam-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ipcam"
      },
      "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/ipcam"
    },
    "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/ipcam",
    "agentPageUrl": "https://openagent3.xyz/skills/ipcam/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ipcam/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ipcam/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. 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."
      },
      {
        "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "IP Camera Skill",
        "body": "Control IP cameras via RTSP (snapshots, recording) and ONVIF (PTZ, presets, discovery).\n\nTested with TP-Link Tapo/Vigi. Works with Hikvision, Dahua, Reolink, Amcrest, Axis, and other ONVIF Profile S/T cameras."
      },
      {
        "title": "Setup",
        "body": "bash skills/ipcam/install.sh\n\nThen either discover cameras automatically or configure manually:\n\n# Auto-discover and add\nptz.py discover --add\n\n# Or edit config\nnano ~/.config/ipcam/config.json"
      },
      {
        "title": "Config Format",
        "body": "{\n  \"default\": \"front-door\",\n  \"cameras\": {\n    \"front-door\": {\n      \"ip\": \"192.168.1.100\",\n      \"username\": \"admin\",\n      \"password\": \"secret\",\n      \"rtsp_port\": 554,\n      \"onvif_port\": 2020,\n      \"rtsp_main_path\": \"stream1\",\n      \"rtsp_sub_path\": \"stream2\"\n    }\n  }\n}\n\nonvif_port: 2020 (TP-Link), 80 (Hikvision/Dahua), 8000, 8080\nrtsp_main_path / rtsp_sub_path: auto-detect with ptz.py stream-uri --save\nEnv overrides: CAM_IP, CAM_USER, CAM_PASS, CAM_RTSP_PORT, CAM_ONVIF_PORT"
      },
      {
        "title": "RTSP (camera.sh)",
        "body": "camera.sh snapshot                         # capture frame\ncamera.sh --cam cam2 snapshot /tmp/cam.jpg # specific camera\ncamera.sh record 15                        # record 15s clip\ncamera.sh stream-url sub                   # print sub-stream URL\ncamera.sh info                             # test connectivity\ncamera.sh list-cameras                     # list configured cameras"
      },
      {
        "title": "PTZ (ptz.py)",
        "body": "ptz.py status                     # current position\nptz.py move left                  # pan left (speed 0.5, 0.5s)\nptz.py move zoomin 0.8 1.0        # zoom in, speed 0.8, 1s\nptz.py goto 0.5 -0.2 0.0          # absolute pan/tilt/zoom\nptz.py home                       # home position\nptz.py stop                       # stop movement\nptz.py preset list                # list presets\nptz.py preset goto 1              # go to preset 1\nptz.py preset set 2 \"Door\"        # save current pos as preset"
      },
      {
        "title": "Discovery & Stream URI",
        "body": "ptz.py discover                   # scan network for ONVIF cameras\nptz.py discover --add             # scan and add to config\nptz.py stream-uri                 # query RTSP paths from ONVIF\nptz.py stream-uri --save          # save paths to config\n\nMulti-camera: use --cam <name> with any command."
      },
      {
        "title": "Directions",
        "body": "left, right, up, down, zoomin, zoomout, upleft, upright, downleft, downright"
      },
      {
        "title": "Troubleshooting",
        "body": "RTSP fails: Check IP/port/firewall. Use ptz.py stream-uri to verify paths. Camera may limit concurrent RTSP connections (try closing other viewers).\nONVIF fails: Verify ONVIF port and that ONVIF is enabled in camera web UI. Try common ports: 2020, 80, 8000, 8080.\nNo cameras found: Ensure same subnet, ONVIF enabled, UDP multicast not blocked.\nPTZ not working: Not all cameras support PTZ. Check ONVIF Profile S support.\nAuth error: Check username/password. Special characters are URL-encoded automatically."
      }
    ],
    "body": "IP Camera Skill\n\nControl IP cameras via RTSP (snapshots, recording) and ONVIF (PTZ, presets, discovery).\n\nTested with TP-Link Tapo/Vigi. Works with Hikvision, Dahua, Reolink, Amcrest, Axis, and other ONVIF Profile S/T cameras.\n\nSetup\nbash skills/ipcam/install.sh\n\n\nThen either discover cameras automatically or configure manually:\n\n# Auto-discover and add\nptz.py discover --add\n\n# Or edit config\nnano ~/.config/ipcam/config.json\n\nConfig Format\n{\n  \"default\": \"front-door\",\n  \"cameras\": {\n    \"front-door\": {\n      \"ip\": \"192.168.1.100\",\n      \"username\": \"admin\",\n      \"password\": \"secret\",\n      \"rtsp_port\": 554,\n      \"onvif_port\": 2020,\n      \"rtsp_main_path\": \"stream1\",\n      \"rtsp_sub_path\": \"stream2\"\n    }\n  }\n}\n\nonvif_port: 2020 (TP-Link), 80 (Hikvision/Dahua), 8000, 8080\nrtsp_main_path / rtsp_sub_path: auto-detect with ptz.py stream-uri --save\nEnv overrides: CAM_IP, CAM_USER, CAM_PASS, CAM_RTSP_PORT, CAM_ONVIF_PORT\nUsage\nRTSP (camera.sh)\ncamera.sh snapshot                         # capture frame\ncamera.sh --cam cam2 snapshot /tmp/cam.jpg # specific camera\ncamera.sh record 15                        # record 15s clip\ncamera.sh stream-url sub                   # print sub-stream URL\ncamera.sh info                             # test connectivity\ncamera.sh list-cameras                     # list configured cameras\n\nPTZ (ptz.py)\nptz.py status                     # current position\nptz.py move left                  # pan left (speed 0.5, 0.5s)\nptz.py move zoomin 0.8 1.0        # zoom in, speed 0.8, 1s\nptz.py goto 0.5 -0.2 0.0          # absolute pan/tilt/zoom\nptz.py home                       # home position\nptz.py stop                       # stop movement\nptz.py preset list                # list presets\nptz.py preset goto 1              # go to preset 1\nptz.py preset set 2 \"Door\"        # save current pos as preset\n\nDiscovery & Stream URI\nptz.py discover                   # scan network for ONVIF cameras\nptz.py discover --add             # scan and add to config\nptz.py stream-uri                 # query RTSP paths from ONVIF\nptz.py stream-uri --save          # save paths to config\n\n\nMulti-camera: use --cam <name> with any command.\n\nDirections\n\nleft, right, up, down, zoomin, zoomout, upleft, upright, downleft, downright\n\nTroubleshooting\nRTSP fails: Check IP/port/firewall. Use ptz.py stream-uri to verify paths. Camera may limit concurrent RTSP connections (try closing other viewers).\nONVIF fails: Verify ONVIF port and that ONVIF is enabled in camera web UI. Try common ports: 2020, 80, 8000, 8080.\nNo cameras found: Ensure same subnet, ONVIF enabled, UDP multicast not blocked.\nPTZ not working: Not all cameras support PTZ. Check ONVIF Profile S support.\nAuth error: Check username/password. Special characters are URL-encoded automatically."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ltpop/ipcam",
    "publisherUrl": "https://clawhub.ai/ltpop/ipcam",
    "owner": "ltpop",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ipcam",
    "downloadUrl": "https://openagent3.xyz/downloads/ipcam",
    "agentUrl": "https://openagent3.xyz/skills/ipcam/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ipcam/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ipcam/agent.md"
  }
}