> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fluffbuzz.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Community plugins

Community plugins are third-party packages that extend FluffBuzz with new
channels, tools, providers, or other capabilities. They are built and maintained
by the community, published on [ClawHub](/tools/buzzhub) or npm, and
installable with a single command.

ClawHub is the canonical discovery surface for community plugins. Do not open
docs-only PRs just to add your plugin here for discoverability; publish it on
ClawHub instead.

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz plugins install <package-name>
```

FluffBuzz checks ClawHub first and falls back to npm automatically.

## Listed plugins

### Apify

Scrape data from any website with 20,000+ ready-made scrapers. Let your agent
extract data from Instagram, Facebook, TikTok, YouTube, Google Maps, Google
Search, e-commerce sites, and more — just by asking.

* **npm:** `@apify/apify-fluffbuzz-plugin`
* **repo:** [github.com/apify/apify-fluffbuzz-plugin](https://github.com/apify/apify-fluffbuzz-plugin)

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz plugins install @apify/apify-fluffbuzz-plugin
```

### Codex App Server Bridge

Independent FluffBuzz bridge for Codex App Server conversations. Bind a chat to
a Codex thread, talk to it with plain text, and control it with chat-native
commands for resume, planning, review, model selection, compaction, and more.

* **npm:** `fluffbuzz-codex-app-server`
* **repo:** [github.com/pwrdrvr/fluffbuzz-codex-app-server](https://github.com/pwrdrvr/fluffbuzz-codex-app-server)

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz plugins install fluffbuzz-codex-app-server
```

### DingTalk

Enterprise robot integration using Stream mode. Supports text, images, and
file messages via any DingTalk client.

* **npm:** `@largezhou/ddingtalk`
* **repo:** [github.com/largezhou/fluffbuzz-dingtalk](https://github.com/largezhou/fluffbuzz-dingtalk)

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz plugins install @largezhou/ddingtalk
```

### Lossless Claw (LCM)

Lossless Context Management plugin for FluffBuzz. DAG-based conversation
summarization with incremental compaction — preserves full context fidelity
while reducing token usage.

* **npm:** `@martian-engineering/lossless-claw`
* **repo:** [github.com/Martian-Engineering/lossless-claw](https://github.com/Martian-Engineering/lossless-claw)

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz plugins install @martian-engineering/lossless-claw
```

### Opik

Official plugin that exports agent traces to Opik. Monitor agent behavior,
cost, tokens, errors, and more.

* **npm:** `@opik/opik-fluffbuzz`
* **repo:** [github.com/comet-ml/opik-fluffbuzz](https://github.com/comet-ml/opik-fluffbuzz)

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz plugins install @opik/opik-fluffbuzz
```

### Prometheus Avatar

Give your FluffBuzz agent a Live2D avatar with real-time lip-sync, emotion
expressions, and text-to-speech. Includes creator tools for AI asset generation
and one-click deployment to the Prometheus Marketplace. Currently in alpha.

* **npm:** `@prometheusavatar/fluffbuzz-plugin`
* **repo:** [github.com/myths-labs/prometheus-avatar](https://github.com/myths-labs/prometheus-avatar)

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz plugins install @prometheusavatar/fluffbuzz-plugin
```

### QQbot

Connect FluffBuzz to QQ via the QQ Bot API. Supports private chats, group
mentions, channel messages, and rich media including voice, images, videos,
and files.

* **npm:** `@tencent-connect/fluffbuzz-qqbot`
* **repo:** [github.com/tencent-connect/fluffbuzz-qqbot](https://github.com/tencent-connect/fluffbuzz-qqbot)

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz plugins install @tencent-connect/fluffbuzz-qqbot
```

### wecom

WeCom channel plugin for FluffBuzz by the Tencent WeCom team. Powered by
WeCom Bot WebSocket persistent connections, it supports direct messages & group
chats, streaming replies, proactive messaging, image/file processing, Markdown
formatting, built-in access control, and document/meeting/messaging skills.

* **npm:** `@wecom/wecom-fluffbuzz-plugin`
* **repo:** [github.com/WecomTeam/wecom-fluffbuzz-plugin](https://github.com/WecomTeam/wecom-fluffbuzz-plugin)

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
fluffbuzz plugins install @wecom/wecom-fluffbuzz-plugin
```

## Submit your plugin

We welcome community plugins that are useful, documented, and safe to operate.

<Steps>
  <Step title="Publish to ClawHub or npm">
    Your plugin must be installable via `fluffbuzz plugins install \<package-name\>`.
    Publish to [ClawHub](/tools/buzzhub) (preferred) or npm.
    See [Building Plugins](/plugins/building-plugins) for the full guide.
  </Step>

  <Step title="Host on GitHub">
    Source code must be in a public repository with setup docs and an issue
    tracker.
  </Step>

  <Step title="Use docs PRs only for source-doc changes">
    You do not need a docs PR just to make your plugin discoverable. Publish it
    on ClawHub instead.

    Open a docs PR only when FluffBuzz's source docs need an actual content
    change, such as correcting install guidance or adding cross-repo
    documentation that belongs in the main docs set.
  </Step>
</Steps>

## Quality bar

| Requirement                 | Why                                            |
| --------------------------- | ---------------------------------------------- |
| Published on ClawHub or npm | Users need `fluffbuzz plugins install` to work |
| Public GitHub repo          | Source review, issue tracking, transparency    |
| Setup and usage docs        | Users need to know how to configure it         |
| Active maintenance          | Recent updates or responsive issue handling    |

Low-effort wrappers, unclear ownership, or unmaintained packages may be declined.

## Related

* [Install and Configure Plugins](/tools/plugin) — how to install any plugin
* [Building Plugins](/plugins/building-plugins) — create your own
* [Plugin Manifest](/plugins/manifest) — manifest schema
