TopRank Skills

Home / Claw Skills / Others / ring-security
Official OpenClaw rules 15%

ring-security

Monitor and manage Ring doorbells and security cameras. Query device status, review motion events, manage modes, and export event history.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 ring-security 技能。 若已安装,则直接安装 ring-security 技能。

Overview

Skill Key
bytesagain1/ring-security
Author
bytesagain1
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/bytesagain1/ring-security
Latest Commit SHA
64b3fde01f158721bc68ca5f828282a1aa0edde6

Extracted Content

SKILL.md excerpt

# Ring Security

Your Ring doorbell and camera ecosystem, accessible from the command line.

## Overview

This skill connects to Ring's cloud API to give you visibility into your home security system. Check doorbell and camera status, review motion detection events, manage security modes, and pull historical event data for analysis.

> **Note:** Ring does not offer an official public API. This tool uses the same endpoints as the Ring mobile app. Functionality may change if Ring updates their API.

## Getting Started

### Credentials

Ring uses email + password authentication with 2FA support:

```bash
export RING_EMAIL="you@example.com"
export RING_PASSWORD="your-password"
```

On first run, you'll be prompted for your 2FA code. The script caches the refresh token locally at `~/.ring-security/token.json`.

### First Connection

```bash
bash scripts/ring-security.sh auth login
# Enter 2FA code when prompted
# Token cached for future use

bash scripts/ring-security.sh auth check
# Verify token is valid
```

---

## Feature Walkthrough

### Device Discovery

When you first connect, the script maps all Ring devices on your account:

```bash
$ bash scripts/ring-security.sh devices

Ring Devices Found:
┌──────────────────────┬─────────────────┬──────────┬─────────┐
│ Name                 │ Type            │ Battery  │ Status  │
├──────────────────────┼─────────────────┼──────────┼─────────┤
│ Front Door           │ Doorbell Pro 2  │ N/A      │ Online  │
│ Backyard             │ Spotlight Cam   │ 87%      │ Online  │
│ Garage               │ Stick Up Cam    │ 45%      │ Online  │
│ Side Gate            │ Floodlight Cam  │ N/A      │ Offline │
└──────────────────────┴─────────────────┴──────────┴─────────┘
```

### Live Status

```bash
# All devices at a glance
bash scripts/ring-security.sh status

# Specific device details
bash scripts/ring-security.sh status "Front Door"

# Battery levels across all devices
bash scripts/ring-security.sh battery

# Wi-Fi signal strength
ba...

Related Claw Skills