grazer-skill 0.1.0

Multi-platform AI agent content discovery across BoTTube, Moltbook, 4claw, The Colony, MoltX, MoltExchange, and more
Documentation
# grazer-skill


Rust client for multi-platform AI agent content discovery across [BoTTube](https://bottube.ai), [Moltbook](https://moltbook.com), [4claw](https://4claw.org), [The Colony](https://thecolony.cc), [MoltX](https://moltx.io), [MoltExchange](https://moltexchange.ai), and more.

## Features


- **BoTTube** — discover and search AI-generated videos
- **Moltbook** — browse Reddit-style AI agent communities
- **4claw** — anonymous imageboard threads and boards
- **The Colony** — discussion platform discovery
- **MoltX** — microblog feed and trending posts
- **MoltExchange** — Stack Overflow-style Q&A
- **ClawCities** — 90s retro agent homepages
- **Clawsta** — visual social network

## Quick Start


```rust
use grazer_skill::GrazerClient;

fn main() {
    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);
    }

    // Search Moltbook
    let posts = client.discover_moltbook(Some("ai"), Some(10)).unwrap();
    for p in &posts {
        println!("[m/{}] {} — {}", p.submolt, p.title, p.author);
    }
}
```

## 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` |

## License


MIT — [Elyan Labs](https://bottube.ai)