# Send BNBOT 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bnbot",
    "name": "BNBOT",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/jackleeio/bnbot",
    "canonicalUrl": "https://clawhub.ai/jackleeio/bnbot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bnbot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bnbot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "bnbot",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T05:56:01.649Z",
      "expiresAt": "2026-05-06T05:56:01.649Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bnbot",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bnbot",
        "contentDisposition": "attachment; filename=\"bnbot-1.5.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "bnbot"
      },
      "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/bnbot"
    },
    "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/bnbot",
    "downloadUrl": "https://openagent3.xyz/downloads/bnbot",
    "agentUrl": "https://openagent3.xyz/skills/bnbot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bnbot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bnbot/agent.md"
  }
}
```
## Documentation

### BNBot - Control Twitter/X via AI

BNBot operates through a real browser session via Chrome Extension. 29 CLI tools for posting, engagement, scraping, content fetching, and articles.

Chrome Extension: Install
npm: bnbot-cli

### First-time setup (run once after install)

After bnbot-cli is installed, start the WebSocket daemon:

nohup bnbot serve > /tmp/bnbot.log 2>&1 &
sleep 1
lsof -i :18900 -P 2>/dev/null | grep LISTEN

Confirm port 18900 is LISTEN before proceeding.

### Before using any bnbot tool

Check if the daemon is still running:

lsof -i :18900 -P 2>/dev/null | grep LISTEN

If empty, restart it:

nohup bnbot serve > /tmp/bnbot.log 2>&1 &

### How to use tools

All tools are executed via the bnbot CLI:

bnbot get-extension-status
bnbot post-tweet --text "Hello world!"
bnbot scrape-timeline --limit 10

Output is JSON.

Auto-thread for multiple images: When post-tweet receives more than 4 images (Twitter's limit), it automatically splits into a thread — first tweet gets the text + first 4 images, subsequent tweets get remaining images in batches of 4. You don't need to manually use post-thread for this.

When scraping content from Xiaohongshu or other platforms with many images (e.g. 10), just pass all images to post-tweet and it handles the splitting automatically.

### If extension is not connected

If bnbot get-extension-status shows connected: false, tell the user:

Chrome Extension is not connected. Please:

Install extension: https://chromewebstore.google.com/detail/bnbot-your-ai-growth-agen/haammgigdkckogcgnbkigfleejpaiiln
Open https://x.com in Chrome
Open BNBot sidebar → Settings → turn on MCP

### Status

bnbot get-extension-status — Check if extension is connected
bnbot get-current-page-info — Get current Twitter/X page info

### Navigation

bnbot navigate-to-tweet --tweetUrl <url>
bnbot navigate-to-search --query "..." [--sort ...]
bnbot navigate-to-bookmarks
bnbot navigate-to-notifications
bnbot navigate-to-following
bnbot return-to-timeline

### Posting

bnbot post-tweet --text "..."
bnbot post-thread --tweets '[{"text":"..."},{"text":"..."}]'
bnbot submit-reply --text "..." [--tweetUrl <url>]
bnbot quote-tweet --tweetUrl <url> --text "..."

### Engagement

bnbot like-tweet [--tweetUrl <url>]
bnbot retweet [--tweetUrl <url>]
bnbot follow-user --username <handle>

### Scraping

bnbot scrape-timeline --limit <n> --scrollAttempts <n>
bnbot scrape-bookmarks --limit <n>
bnbot scrape-search-results --query "..." --limit <n>
bnbot scrape-current-view
bnbot scrape-thread --tweetUrl <url>
bnbot account-analytics --startDate YYYY-MM-DD --endDate YYYY-MM-DD

### Content Fetching

bnbot fetch-wechat-article --url <url>
bnbot fetch-tiktok-video --url <url>
bnbot fetch-xiaohongshu-note --url <url>

### Articles

bnbot open-article-editor
bnbot fill-article-title --title "..."
bnbot fill-article-body --content "..." [--format markdown]
bnbot upload-article-header-image --headerImage <path>
bnbot publish-article [--publish true]
bnbot create-article --title "..." --content "..." [--format markdown]

### Jobs

bnbot search-jobs [--type boost] [--limit 10]
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jackleeio
- Version: 1.4.0
## 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:56:01.649Z
- Expires at: 2026-05-06T05:56:01.649Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bnbot)
- [Send to Agent page](https://openagent3.xyz/skills/bnbot/agent)
- [JSON manifest](https://openagent3.xyz/skills/bnbot/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bnbot/agent.md)
- [Download page](https://openagent3.xyz/downloads/bnbot)