Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Venom is a high-performance system developed with JavaScript to create a bot for WhatsApp, support for creating any interaction, such as customer service, media sending, sentence recognition based on artificial intelligence and all types of design architecture for WhatsApp.
| Date | Stars |
|---|---|
| 2026-07-24 | 6565 |
| 2026-07-25 | 6565 |
| 2026-07-28 | 6565 |
| 2026-07-30 | 6565 |
| 2026-08-06 | 6565 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
<p align="center">
<img src="https://github.com/orkestral/venom/raw/main/img/venom.png" alt="Venom" width="220" />
</p>
<h1 align="center">Venom v6</h1>
<p align="center">
<em>The next generation of WhatsApp automation. Completely rebuilt.</em>
</p>
<p align="center">
<img src="https://img.shields.io/npm/v/venom-bot?style=flat-square&color=0d1117&labelColor=0d1117" alt="npm" />
<img src="https://img.shields.io/node/v/venom-bot?style=flat-square&color=0d1117&labelColor=0d1117" alt="node" />
<img src="https://img.shields.io/npm/dt/venom-bot?style=flat-square&color=0d1117&labelColor=0d1117" alt="downloads" />
<img src="https://img.shields.io/github/actions/workflow/status/orkestral/venom/build.yml?branch=master&style=flat-square&color=0d1117&labelColor=0d1117" alt="build" />
<img src="https://img.shields.io/github/license/orkestral/venom?style=flat-square&color=0d1117&labelColor=0d1117" alt="license" />
</p>
<p align="center">
<a href="https://orkestral.github.io/venom"><img src="https://img.shields.io/badge/Documentation-Read%20Now-2ea44f?style=for-the-badge&logo=gitbook&logoColor=white" /></a>
<a href="https://www.npmjs.com/package/venom-bot"><img src="https://img.shields.io/badge/npm-Install-0d1117?style=for-the-badge&logo=npm&logoColor=white" /></a>
</p>
---
<p align="center">
<img src="https://capsule-render.vercel.app/api?type=rect&color=0:1a1a2e,50:16213e,100:0f3460&height=2§ion=header" width="100%" />
</p>
## Why Venom?
Venom is not just another library. It's a **complete automation platform** designed from the ground up for performance, reliability, and developer experience.
Built on top of proven technologies, Venom gives you full control over WhatsApp Web through a clean, intuitive API — whether you're building a simple chatbot or a large-scale enterprise solution.
```
Blazing fast message processing
Session persistence out of the box
Modular architecture — extend with ease
Multi-session support for scaling
Battle-tested in production by thousands of developers
```
### What's new in v6
```
Rewritten from scratch — cleaner, simpler codebase
Pure Puppeteer — no puppeteer-extra, no stealth plugins
Updated WhatsApp Web modules (WAWebSocketModel, WAWebConnModel, etc.)
Chromium auto-download on npm install
Node.js 18+ required
TypeScript 5.7+ with strict types
Pino logger — fast, structured logging
Only 6 source files — down from 83+
```
---
## Install
> Requires **Node.js 18+**. Chromium is downloaded automatically on install.
```bash
npm install venom-bot
```
<details>
<summary>🧪 Nightly builds</summary>
```bash
npm install https://github.com/orkestral/venom/releases/download/nightly/venom-bot-nightly.tgz
```
</details>
<details>
<summary>📦 Install from source</summary>
```bash
npm install github:orkestral/venom
```
</details>
---
## Quick Start
Get a fully functional bot running in under 30 seconds.
```javascript
import { create } from 'venom-bot';
create({ session: 'venom-bot' }).then((client) => {
client.onMessage(async (message) => {
if (message.body === 'hello') {
await client.sendText(message.from, 'Hey there! 👋 I\'m running on Venom.');
}
});
});
```
Scan the QR code that appears in your terminal. Done — you're live.
> [!TIP]
> Sessions are saved automatically. No need to re-scan on every restart.
---
## Capabilities
### Messaging
Send anything. Text, images, videos, documents, audio, stickers, locations, polls — you name it.
```javascript
// Text
await client.sendText(chatId, 'Hello from Venom 🕷️');
// Image with caption
await client.sendImage(chatId, './photo.jpg', 'photo', 'Check this out!');
// Image from base64
await client.sendImageFromBase64(chatId, base64Image, 'image');
// Document
await client.sendFile(chatId, './report.pdf', 'report.pdf', 'Monthly report');
// Document from base64
await client.sendFileFromBase64(chatId, base64File, 'file.pdf', 'Description');
// Audio
await client.sendVoice(chatId, 'Excerpt of 12,023 characters
Read on GitHubJónalan de Lima · Brazil
768
576
505
João Victor Souza · Brazil
127
Edgard Lorraine Messias · Brazil
94
24
13
12
9
8
7
6
Jonatan · @LOOP3
5
4
4
Eriec Tanijaya
4
3
3
3
3
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:6716feb6190c8067, topic:chatbot, readme:chatbot
matched fp:6716feb6190c8067, topic:puppeteer