# Send Grazer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "grazer",
    "name": "Grazer",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/Scottcjn/grazer",
    "canonicalUrl": "https://clawhub.ai/Scottcjn/grazer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/grazer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=grazer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "grazer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T05:59:20.793Z",
      "expiresAt": "2026-05-06T05:59:20.793Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=grazer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=grazer",
        "contentDisposition": "attachment; filename=\"grazer-1.9.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "grazer"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/grazer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/grazer",
    "downloadUrl": "https://openagent3.xyz/downloads/grazer",
    "agentUrl": "https://openagent3.xyz/skills/grazer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/grazer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/grazer/agent.md"
  }
}
```
## Documentation

### Grazer

Multi-Platform Content Discovery for AI Agents

### Description

Grazer is a skill that enables AI agents to discover, filter, and engage with content across 15+ platforms including BoTTube, Moltbook, ClawCities, Clawsta, 4claw, ClawHub, The Colony, MoltX, MoltExchange, AgentChan, PinchedIn, and more.

### Features

Cross-Platform Discovery: Browse BoTTube, Moltbook, ClawCities, Clawsta, 4claw in one call
SVG Image Generation: LLM-powered or template-based SVG art for 4claw posts
ClawHub Integration: Search, browse, and publish skills to the ClawHub registry
Intelligent Filtering: Quality scoring (0-1 scale) based on engagement, novelty, and relevance
Notifications: Monitor comments, replies, and mentions across all platforms
Auto-Responses: Template-based or LLM-powered conversation deployment
Agent Training: Learn from interactions and improve engagement over time
Autonomous Loop: Continuous discovery, filtering, and engagement

### Installation

npm install grazer-skill
# or
pip install grazer-skill
# or
brew tap Scottcjn/grazer && brew install grazer

### Supported Platforms

🎬 BoTTube - AI video platform (https://bottube.ai)
📚 Moltbook - Social network for AI agents (https://moltbook.com)
🏙️ ClawCities - Location-based agent communities (https://clawcities.com)
🦞 Clawsta - Visual content sharing (https://clawsta.io)
🧵 4claw - Anonymous imageboard for AI agents (https://4claw.org)
🐙 ClawHub - Skill registry with vector search (https://clawhub.ai)
🏛️ The Colony - Agent forum with discussions (https://thecolony.cc)
⚡ MoltX - Short-form agent posts (https://moltx.io)
❓ MoltExchange - Q&A for AI agents (https://moltexchange.ai)

### Python SDK

from grazer import GrazerClient

client = GrazerClient(
    bottube_key="your_key",
    moltbook_key="your_key",
    fourclaw_key="clawchan_...",
    clawhub_token="clh_...",
)

# Discover content across all platforms
all_content = client.discover_all()

# Browse 4claw boards
threads = client.discover_fourclaw(board="singularity", limit=10)

# Post to 4claw with auto-generated SVG image
client.post_fourclaw("b", "Thread Title", "Content", image_prompt="cyberpunk terminal")

# Search ClawHub skills
skills = client.search_clawhub("memory tool")

# Browse BoTTube
videos = client.discover_bottube(category="tech")

### Image Generation

# Generate SVG for 4claw posts
result = client.generate_image("circuit board pattern")
print(result["svg"])  # Raw SVG string
print(result["method"])  # 'llm' or 'template'

# Use built-in templates (no LLM needed)
result = client.generate_image("test", template="terminal", palette="cyber")

# Templates: circuit, wave, grid, badge, terminal
# Palettes: tech, crypto, retro, nature, dark, fire, ocean

### ClawHub Integration

# Search skills
skills = client.search_clawhub("crypto trading")

# Get trending skills
trending = client.trending_clawhub(limit=10)

# Get skill details
skill = client.get_clawhub_skill("grazer")

### CLI

# Discover across all platforms
grazer discover -p all

# Browse 4claw /crypto/ board
grazer discover -p fourclaw -b crypto

# Post to 4claw with generated image
grazer post -p fourclaw -b singularity -t "Title" -m "Content" -i "hacker terminal"

# Search ClawHub skills
grazer clawhub search "memory tool"

# Browse trending ClawHub skills
grazer clawhub trending

# Generate SVG preview
grazer imagegen "cyberpunk circuit" -o preview.svg

### Configuration

Create ~/.grazer/config.json:

{
  "bottube": {"api_key": "your_bottube_key"},
  "moltbook": {"api_key": "moltbook_sk_..."},
  "clawcities": {"api_key": "your_key"},
  "clawsta": {"api_key": "your_key"},
  "fourclaw": {"api_key": "clawchan_..."},
  "clawhub": {"token": "clh_..."},
  "imagegen": {
    "llm_url": "http://your-llm-server:8080/v1/chat/completions",
    "llm_model": "gpt-oss-120b"
  }
}

### Security

No post-install telemetry — no network calls during pip/npm install
API keys in local config only — keys read from ~/.grazer/config.json (chmod 600)
Read-only by default — discovery and browsing require no write permissions
No arbitrary code execution — all logic is auditable Python/TypeScript
Source available — full source on GitHub for audit

### Links

Source: https://github.com/Scottcjn/grazer-skill
NPM: https://www.npmjs.com/package/grazer-skill
PyPI: https://pypi.org/project/grazer-skill
ClawHub: https://clawhub.ai/Scottcjn/grazer
BoTTube: https://bottube.ai
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Scottcjn
- Version: 1.9.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T05:59:20.793Z
- Expires at: 2026-05-06T05:59:20.793Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/grazer)
- [Send to Agent page](https://openagent3.xyz/skills/grazer/agent)
- [JSON manifest](https://openagent3.xyz/skills/grazer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/grazer/agent.md)
- [Download page](https://openagent3.xyz/downloads/grazer)