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
# 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")
1---2name: omnicog3description: Universal service integration for OpenClaw — connect Reddit, Steam, Spotify, GitHub, Discord, and more with a single API.4---5
6# OmniCog — Universal Service Integration for OpenClaw
7
8**One Cog to Integrate Them All.**
9
10Connect 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.
11
12## What is OmniCog?
13
14OmniCog is a universal integration layer that provides a consistent interface across multiple services. Whether you need to:
15
16- 📊 **Monitor Reddit** — Track posts, comments, and subreddit activity
17- 🎮 **Integrate Steam** — Get owned games, achievements, and friend status
18- 🎵 **Control Spotify** — Play music, manage playlists, and discover new tracks
19- 🐙 **Manage GitHub** — Watch repositories, track issues, and automate workflows
20- 💬 **Interact with Discord** — Send messages, manage channels, and monitor servers
21- 📺 **Search YouTube** — Find videos, get channel stats, and track uploads
22
23**OmniCog unifies them all into one simple API.**
24
25## Quick Start
26
27```python
28# Install the package (required)
29pip install omnicog
30
31# Import and initialize
32from omnicog import OmniClient
33
34client = OmniClient(
35 reddit={
36 "client_id": "YOUR_REDDIT_CLIENT_ID",
37 "client_secret": "YOUR_REDDIT_CLIENT_SECRET",
38 "user_agent": "OmniCog/1.0"
39 },
40 steam={
41 "api_key": "YOUR_STEAM_API_KEY"
42 },
43 spotify={
44 "client_id": "YOUR_SPOTIFY_CLIENT_ID",
45 "client_secret": "YOUR_SPOTIFY_CLIENT_SECRET"
46 }
47)
48
49# Use any service with the same simple API
50posts = client.reddit.get_hot("programming", limit=10)
51games = client.steam.get_owned_games()
52track = client.spotify.search_track("metallica")