omnicog

TotalClaw 作者 totalclaw

OpenClaw 的通用服务集成 — 使用单个 API 连接 Reddit、Steam、Spotify、GitHub、Discord 等。

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~dexiaong-omnicogg
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~dexiaong-omnicogg/file -o dexiaong-omnicogg.md
## 概述(中文)

OpenClaw 的通用服务集成 — 使用单个 API 连接 Reddit、Steam、Spotify、GitHub、Discord 等。

## 原文

# OmniCog — Universal Service Integration for OpenClaw

**One Cog to Integrate Them All.**

Connect Reddit, Steam, Spotify, GitHub, Discord, YouTube, and more with a unified, simple API. No more juggling different authentication methods or rate limits — OmniCog handles it all.

## What is OmniCog?

OmniCog is a universal integration layer that provides a consistent interface across multiple services. Whether you need to:

- 📊 **Monitor Reddit** — Track posts, comments, and subreddit activity
- 🎮 **Integrate Steam** — Get owned games, achievements, and friend status
- 🎵 **Control Spotify** — Play music, manage playlists, and discover new tracks
- 🐙 **Manage GitHub** — Watch repositories, track issues, and automate workflows
- 💬 **Interact with Discord** — Send messages, manage channels, and monitor servers
- 📺 **Search YouTube** — Find videos, get channel stats, and track uploads

**OmniCog unifies them all into one simple API.**

## Quick Start

```python
# Install the package (required)
pip install omnicog

# Import and initialize
from omnicog import OmniClient

client = OmniClient(
    reddit={
        "client_id": "YOUR_REDDIT_CLIENT_ID",
        "client_secret": "YOUR_REDDIT_CLIENT_SECRET",
        "user_agent": "OmniCog/1.0"
    },
    steam={
        "api_key": "YOUR_STEAM_API_KEY"
    },
    spotify={
        "client_id": "YOUR_SPOTIFY_CLIENT_ID",
        "client_secret": "YOUR_SPOTIFY_CLIENT_SECRET"
    }
)

# Use any service with the same simple API
posts = client.reddit.get_hot("programming", limit=10)
games = client.steam.get_owned_games()
track = client.spotify.search_track("metallica")