Looking for a source code download of a multi-platform messaging automation tool? BiliGo V3 Ultra is an open-style auto-reply system that pulls six message channels — Bilibili private messages, Bilibili comments, Douyin, Xiaohongshu, Weibo, and Xianyu — into a single web dashboard. It combines keyword-rule replies with AI-powered responses, making it a useful reference project for anyone studying Communication System architecture or building customer-service bots. You can download the full source package on dajian168 for educational research and architecture review.
From an engineering standpoint, the interesting part is how it isolates each platform’s login state, config, statistics, and logs — six sandboxes under one roof, rather than one fragile shared session. That alone is worth reading the code for.
When I deployed this for testing, the reply pipeline split cleanly into 2 modes, selectable per platform:
Actionable takeaway: before trusting the AI mode, check the context-compression setting in the admin panel — if your knowledge base is large, compressed prompts can drop critical product details. Start with keyword rules on high-frequency questions and route only the long tail to AI.
In testing I found the browser-automation layer depends on a real Chromium instance, so the deployment method matters more than usual:
| Method | Best for | Note |
|---|---|---|
| Run from source | Code review, customization | Requires manual environment setup |
| Docker image (full version) | Server deployment | Includes built-in Chromium — no browser install |
| Windows single-file EXE | Local personal use | Fastest to start, least flexible |
Deployment checklist:
Judging criterion: if a similar tool lacks per-platform isolation and banned-word filtering, treat it as higher-risk regardless of feature count.
Suitable project types for studying this codebase: multi-account management dashboards, e-commerce customer-service bots, and social-media operations tools. All automation should run at controlled frequency, respect each platform’s rules, and stay within personal efficiency and learning-research use.
Q: Does BiliGo V3 Ultra reply to old messages after I start it?
A: No. It only processes messages received after startup, so historical conversations are never batch-replied — verify this behavior in the logs on first run.
Q: Can I use my own AI endpoint instead of OpenAI?
A: Yes. The admin panel accepts any OpenAI-compatible API base URL and key, so self-hosted or third-party compatible providers work as provider option 3.
Q: Is the rule export file safe to share?
A: The export excludes cookies and other sensitive credentials, but inspect the JSON before sharing anything across machines.
Original title: BiliGo V3 Ultra:全平台消息私信自动回复神器,AI智能 – 搭建168
Original excerpt:
简介:
BiliGoV3Ultra是一款开源的多平台
消息
自动回复
系统,将B站私信、B站评论、
抖音
、
小红书
、微博、闲鱼六类消息入口整合到同一个Web管理界面中统一管理,并支持为各平台接入AI
自动回复
。
回复方式有两种,可按平台自由选择:•关键词规则:默认回复+关键词触发,可区分已关注/未关注用户、限制单用户回复次数、自定义发送间隔以降低风控风险;B站私信支持图片回复。
AI客服
:支持
OpenAI
、Anthropic及自定义兼容接口,多知识库按平台分配,会话上下文自动压缩,内置违禁词拦截;AI无法可靠处理的会话会进入人工待回队列。一些实用设计:只处理启动后的新消息,不会批量回复历史会话;各平台的配置、登录状态、统计与日志相互隔离;内置仪表盘查看全平台回复量与成功率;支持登录失效、运行异常邮件告警;规则支持跨平台导入导出,导出内容不包含Cookie等敏感信息。
部署方面提供源码运行、Docker镜像(含内置Chromium的完整版)和
Windows
单文件EXE三种方式,仓库默认配置不含任何凭据,开箱即用。
适合自媒体运营者、店铺客服与多账号管理人员使用。仅供学习研究和个人效率用途,自动化操作请控制频率,注意账号安全,遵守各平台规则。
图片:
Original screenshots:
⚠️ This article is for educational research and technical exchange only. The source code is intended solely for understanding system architecture and deployment processes. Do not use it for illegal purposes. Any commercial operation is unrelated to the author.