Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

tapo-camera塔波相机

Agent Skill

tapo-camera 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,635

周安装

285

GitHub Stars

公开资料未说明

下载量

2,326
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:tapo-camera(塔波相机)
来源仓库:https://github.com/ivangdavila/tapo-camera
安装命令:
openclaw skills install tapo-camera
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install tapo-camera

简介

连接到 Tapo 摄像机、验证本地访问、捕获快照并使用本地优先 RTSP 工作流程和安全后备检查帧。

SKILL.md

name
Tapo Camera
slug
tapo-camera
version
1.0.0
homepage
https://clawic.com/skills/tapo-camera
description
Connect to Tapo cameras, verify local access, capture snapshots, and inspect frames with local-first RTSP workflows and safe fallbacks.
changelog
Initial release with local discovery, RTSP snapshot capture, device-boundary guardrails, and API fallback guidance for unsupported cases.
metadata
{"clawdbot":{"emoji":"📷","requires":{"bins":["python3","ffmpeg","kasa"],"pip":["python-kasa"],"config":["~/tapo-camera/"],"env.optional":["TAPO_CAMERA_USERNAME","TAPO_CAMERA_PASSWORD","KASA_CREDENTIALS_HASH"]},"install":[{"id":"pip-python-kasa","kind":"pip","package":"python-kasa","bins":["kasa"],"label":"Install python-kasa and the kasa CLI (pip)"},{"id":"brew-ffmpeg","kind":"brew","formula":"ffmpeg","bins":["ffmpeg"],"label":"Install ffmpeg (Homebrew)"}],"os":["darwin","linux","win32"],"configPaths":["~/tapo-camera/"]}}

When to Use

Use this skill when the user wants an agent to connect to their own Tapo cameras on a trusted local network, verify camera reachability, take still captures, and inspect the resulting frames without defaulting to cloud workflows.

This skill is for local camera operations, not general surveillance design. Keep it scoped to user-owned cameras, explicit capture requests, and reversible local workflows.

Architecture

Memory lives in ~/tapo-camera/. If ~/tapo-camera/ does not exist, run setup.md. See memory-template.md for structure.

~/tapo-camera/
├── memory.md               # activation boundaries, preferred capture defaults, and trust limits
├── cameras.md              # hostnames, labels, model notes, and stream capabilities
├── sessions/
│   └── YYYY-MM-DD.md       # capture attempts, failures, and what worked
├── captures/
│   └── ...                 # user-approved local stills only
└── incidents.md            # auth, network, RTSP, and model-specific failure notes

Only create cameras.md, sessions/, captures/, or incidents.md if the user wants persistent local state.

Quick Reference

TopicFile
Setup and activation behaviorsetup.md
Memory schema and status valuesmemory-template.md
Camera inventory templatecameras.md
Incident log templateincidents.md
Discovery, auth, and capability checksdiscovery-and-auth.md
Local still-capture and review flowssnapshot-workflows.md
Unofficial API fallback boundaryapi-fallback.md
Failure diagnosis and recovery ordertroubleshooting.md
Local capture helpertapo-capture.py

Requirements

  • python3
  • python-kasa and its kasa CLI for local discovery, device state, and camera module access
  • ffmpeg for one-frame JPEG capture from RTSP
  • A Tapo camera account with RTSP and ONVIF enabled in the Tapo app when the model supports third-party compatibility
  • Camera host or IP on the same trusted local network as the agent
  • Optional environment variables for the helper: TAPO_CAMERA_USERNAME, TAPO_CAMERA_PASSWORD, or KASA_CREDENTIALS_HASH
  • Optional unofficial fallback: a local API library only when RTSP or ONVIF is unavailable and the user approves that narrower path

Treat Tapo credentials and KASA_CREDENTIALS_HASH as secrets. Never paste them into chat, commit them to files, or print them back to the user.

Data Storage

Use local notes only when they improve repeatability:

  • the memory file for activation boundaries, privacy limits, and preferred output paths
  • cameras.md for camera labels, hosts, model quirks, and stream capability notes
  • dated session notes for capture attempts and the exact path that worked
  • incidents.md for recurring auth, RTSP, ONVIF, or firmware regressions
  • the captures/ folder for user-approved still images only

Core Rules

1. Prove scope and ownership before touching a camera

  • Confirm the camera belongs to the user and the agent is on the same trusted network segment.
  • Start with hostname, model, and whether the camera is a direct device or a hub child.
  • Do not scan arbitrary ranges or attempt blind discovery outside the explicit device scope.

2. Prefer maintained local tooling first

  • Use python-kasa and the kasa CLI for discovery, auth validation, and camera capability checks.
  • Use RTSP and ONVIF on the local camera only after confirming third-party compatibility is enabled.
  • Reach for unofficial APIs only when the maintained local path cannot produce the required capture flow.

3. Separate discovery from capture

  • First prove the device answers and the camera module is present.
  • Then derive stream capability and capture a single still to an explicit output path.
  • Do not mix auth debugging, network probing, and repeated frame capture in one opaque step.

4. Keep secrets out of chat, disk, and process output

  • Inject camera credentials from a secret manager or ephemeral environment variables.
  • Do not store raw passwords, reversible credential blobs, or full authenticated RTSP URLs in local notes.
  • The helper may use a live RTSP URL internally for ffmpeg, but it should not print that URL unless the user explicitly asks.

5. Capture the smallest useful artifact

  • Default to one still image, not continuous recording.
  • Write captures only to a user-approved local path under ~/tapo-camera/captures/ or another explicit destination.
  • Name captures with camera label and timestamp so later inspection stays deterministic.

6. Keep the trust boundary local by default

  • Local Tapo device traffic is allowed only to the camera host on the user's LAN.
  • Do not upload frames to cloud vision services, shared drives, or chat surfaces unless the user explicitly requests it.
  • If the user wants remote or cloud workflows, stop and restate what data would leave the machine first.

7. Fall back deterministically

  • If kasa cannot expose a camera module or RTSP URL, check model support, privacy mode, and third-party compatibility before changing approach.
  • If the camera is a hub child, battery device, or a model with broken RTSP support, use the API fallback playbook and keep that path local-first.
  • Record the final working path so the next capture does not repeat the same trial-and-error.

Capture Traps

TrapWhy It FailsBetter Move
Treating every Tapo device like a direct RTSP cameraHub children and some battery devices do not expose the same local stream surfaceIdentify device class first, then choose RTSP, ONVIF, or API fallback
Printing the full RTSP URL into logsThat leaks camera credentials into history and shared outputKeep URLs redacted by default and only reveal them on explicit request
Using cloud login assumptions for local captureLocal device auth and camera account setup are separate in practiceVerify the camera account and third-party compatibility state first
Jumping straight to repeated frame pullsHarder to debug and easier to cross privacy boundariesProve one still capture before any loop or batch job
Storing captures and credentials togetherRaises the blast radius if the local folder is copied or syncedKeep images and secrets separate, and never persist secrets in ~/tapo-camera/

External Endpoints

EndpointData SentPurpose
https://{camera-host}local camera authentication and feature querieslocal device connection through python-kasa
rtsp://{camera-host}:554/stream1 or stream2local camera credentials and stream requeststill capture via ffmpeg from the LAN stream
http://{camera-host}:2020/onvif/device_servicelocal device-service requestsONVIF capability checks when enabled on the camera

No third-party endpoint is part of the default workflow.

Security & Privacy

Data that may leave your machine:

  • Nothing to third parties by default
  • Local-LAN requests to the user's camera host for auth, capability checks, and frame capture

Data that stays local:

  • User-approved notes under ~/tapo-camera/
  • Captured stills in a local folder chosen by the user
  • Troubleshooting logs and device capability notes

This skill does NOT:

  • store camera passwords, tokens, or reversible credential blobs in plain text
  • capture or upload images without explicit user intent
  • run undeclared cloud vision or cloud relay workflows
  • modify camera firmware, privacy settings, or motor position by default
  • access files outside the working directory or ~/tapo-camera/ for memory

Scope

This skill ONLY:

  • connects to user-owned Tapo cameras on a trusted local network
  • validates local access with maintained tools
  • captures still images to explicit local paths
  • documents the minimum fallback needed when RTSP or ONVIF is unavailable

This skill NEVER:

  • brute-force camera credentials or scan arbitrary networks
  • enable silent background monitoring
  • upload frames to external services by default
  • treat hub children, battery devices, and direct cameras as interchangeable
  • rewrite the installed skill files

Related Skills

Install with clawhub install <slug> if user confirms:

  • cameras - broader camera capture and review workflows outside the Tapo-specific lane
  • ffmpeg - deeper frame extraction, transcoding, and media inspection once capture works
  • smart-home - ecosystem-level device coordination and automation planning
  • iot - local-device debugging and network-aware connector reasoning
  • photos - organize and inspect saved captures after acquisition

Feedback

  • If useful: clawhub star tapo-camera
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.6%
按下载量换算1,712

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills