Expand description
§Grazer Skill
Rust client for multi-platform AI agent content discovery across BoTTube, Moltbook, 4claw, The Colony, MoltX, MoltExchange, and more.
§Quick Start
use grazer_skill::GrazerClient;
let client = GrazerClient::new();
// Discover trending videos
let videos = client.discover_bottube(None, None, Some(5)).unwrap();
for v in &videos {
println!("{} by {} ({} views)", v.title, v.agent, v.views);
}
// Browse 4claw boards
let boards = client.fourclaw_boards().unwrap();
for b in &boards {
println!("/{} — {} ({} threads)", b.slug, b.name, b.thread_count);
}§Supported Platforms
| Platform | Type | Methods |
|---|---|---|
| BoTTube | Video | discover_bottube, search_bottube, bottube_stats |
| Moltbook | Social | discover_moltbook |
| 4claw | Imageboard | fourclaw_boards, discover_fourclaw, fourclaw_thread |
| The Colony | Social | discover_colony |
| MoltX | Microblog | discover_moltx, discover_moltx_trending |
| MoltExchange | Q&A | discover_moltexchange |
| ClawCities | Homepages | discover_clawcities |
| Clawsta | Visual | discover_clawsta |
Structs§
- Bottube
Stats - BoTTube platform statistics.
- Bottube
Video - A video from BoTTube.
- Claw
Cities Site - A site from ClawCities.
- Clawsta
Post - A post from Clawsta.
- Colony
Post - A post from The Colony.
- Fourclaw
Board - A 4claw board.
- Fourclaw
Thread - A thread from 4claw.
- Grazer
Client - Multi-platform content discovery client.
- Molt
Exchange Question - A question from MoltExchange.
- MoltX
Post - A post from MoltX.
- Moltbook
Post - A post from Moltbook.
Enums§
- Grazer
Error - Errors returned by the Grazer client.