TopRank Skills

Home / Claw Skills / 机器人 / cricket-live-score
Official OpenClaw rules 38%

cricket-live-score

Send live cricket score updates (text + voice memo) to Telegram for any ongoing T20 or ODI match. Completely free.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
arkulkarni/cricket-live-score
Author
Amit Kulkarni
Source Repo
openclaw/skills
Version
-
Source Path
skills/arkulkarni/cricket-live-score
Latest Commit SHA
068654f5bf2a39c37b98579dceb4366c49ef3e65

Extracted Content

SKILL.md excerpt

# 🏏 Cricket Live Score Updates

Real-time cricket score updates delivered to Telegram — with optional voice memos so you can follow along without reading. Scrapes data from cricbuzz and does not need any API key setup to get the scores. 

Supports T20 and ODI formats, both innings, auto-detection of teams, target, and required run rate.

The script runs in the background, sends updates at your chosen interval, and auto-stops when the match ends.

The voice memos are perfect for when you're driving or otherwise can't focus on a screen.

## Example prompts

**Starting updates:**
- "Send me live score updates for the India vs Australia match"
- "Follow the IPL match — RCB vs CSK — and send me updates every 3 minutes"
- "What's the score in the England vs Pakistan T20? Keep me posted"

**With voice memos:**
- "Send me live cricket scores with voice memos for the World Cup final"
- "Follow India vs South Africa and include voice updates — I'm driving"

**Changing interval:**
- "Make the updates every 2 minutes instead"
- "Slow it down to every 10 minutes"

**Stopping:**
- "Stop sending score updates"
- "Kill the cricket updates"

## When to use

User asks for live score updates, cricket score alerts, or to follow a match.

## How it works

1. **Find the Cricbuzz URL** for the match. Search for `cricbuzz <team1> vs <team2> live score` and grab the `cricbuzz.com/live-cricket-scores/...` URL.
2. **Run the script** in background:

```bash
python3 <skill_dir>/scripts/cricket-live.py \
  --url "<cricbuzz_url>" \
  --chat-id "<telegram_chat_id>" \
  --bot-token "<telegram_bot_token>" \
  --interval 300 \
  --voice
```

3. Script auto-detects teams, innings, format (T20/ODI), and target.
4. Sends text + voice memo every interval. Auto-stops when match ends.

## Parameters

| Param | Default | Description |
|-------|---------|-------------|
| `--url` | required | Cricbuzz live score page URL |
| `--chat-id` | required | Telegram chat ID to send updates to |
| `--bot-token` | aut...

Related Claw Skills