TopRank Skills

Home / Claw Skills / Analyse des données / Youtube Outlier Skill
Official OpenClaw rules 36%

Youtube Outlier Skill

youtube outlier skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
dalime/youtube-outlier-skill
Author
dalime
Source Repo
openclaw/skills
Version
-
Source Path
skills/dalime/youtube-outlier-skill
Latest Commit SHA
0bbb2149d497fb824e22e0514b7a9cd9c7d96bf1

Extracted Content

SKILL.md excerpt

# youtube-outlier-skill

Finds outlier/trending YouTube videos by niche keyword, analyzes main concepts, and stores to Google Sheet. Posts summary to Discord.

## Parameters Supported
- `niche` (single or comma-separated list)

## Usage
Via Discord or API call:

```
/ytoutlier AI news
```

## Discord Command Registration
Add to your Discord/OpenClaw config, or copy below to your skill manifest:

```yaml
commands:
  - name: ytoutlier
    description: Find trending YouTube outlier videos in a niche.
    usage: /ytoutlier <niche>
    handler: youtube-outlier-skill
```

## Requirements
- Google Sheets API credentials (edit access to your target sheet)
- Discord bot token and channel ID
- YouTube Data API key (if not handled by youtube-api-skill)

## Environment variables
See `.env.example` for all required variables.

---

Skill created for Danny by Soma 🧘‍♂️ (OpenClaw)

README excerpt

# YouTube Outlier Skill

Finds trending or outlier videos by niche on YouTube, analyzes their metadata and main points, and writes results to a Google Sheet. Optionally, posts a summary to Discord when complete.

## Features
- Scan for YouTube channels/videos by niche (e.g., "AI news").
- Identify outlier videos: much higher views than a channel's average.
- Filter: only videos in the last month or with recent comments.
- Extract title, description, thumbnail URL, tags, hashtags, transcript/main points, keywords.
- Write results as rows to a Google Sheet (customizable columns).
- Post a summary table to a Discord channel automatically.
- Run via OpenClaw trigger (Discord slash command or CLI).

## Setup
1. Place this skill folder in your OpenClaw workspace under `skills/`.
2. Copy `.env.example` to `.env` and fill in your API keys/config values.
3. Ensure your Google Sheet is shared with your service account email (see GOOGLE_SHEETS_CREDENTIALS_JSON).
4. (If using Discord): Add the Discord bot and obtain its token + channel ID.
5. Install dependencies: `npm install` (in this folder), if required for direct lib usage.

## Usage
Trigger from Discord or CLI with a "niche":

```
/ytoutlier niche:"AI news"
```

or

```
openclaw invoke youtube-outlier-skill --niche="AI news, bitcoin, productivity"
```

## Development
- Written in TypeScript for full type safety and OpenClaw integration.
- Extend to save screenshots, process thumbnails, or invoke other agent skills as needed.

## Author
Skill scaffold for Danny by Soma 🧘‍♂️ with OpenClaw.

Related Claw Skills