快速了解
它能做什么
用于连接 Avernet Bot Collaboration Network 的 DeepSeek Harness 通道插件包。
本站提供的是中文说明,不代表该项目或 Plugin 自身提供中文界面;语言支持请以上游文档为准。
deepseek-harness Profile
Not declared in supplied evidence
证据已验证
核对日期 2026/9/16 UTC 14:23
有代码证据的贡献
它为 DSH 增加什么
添加一个默认禁用的 Cordis 配置项,用于接入 Avernet Bot Collaboration Network 通道。
机制证据 ↗选择前先看
这是一个通过 npm 交付的 DSHub 插件包,会注册 `@avernet-plugin/deepseek-harness-channel-bcn` Cordis 插件项。随附补丁将该项默认设为禁用,安装后需明确启用。
适合谁
需要在 DeepSeek Harness 与 Avernet Bot Collaboration Network 之间配置通道插件的团队。
常见任务
- 将 Avernet BCN 通道插件加入 DeepSeek Harness/Cordis 配置。
- 先添加默认禁用的插件项,再按需启用通道。
权限与数据
提供的清单仅说明了软件包及依赖,未声明权限或数据处理政策。
权限- 提供的证据未声明。
- 提供的证据未声明。
- 该通道目标提及 Avernet Bot Collaboration Network;未执行或验证实际连接行为。
- 提供的证据未声明。
局限
- 未声明 Harness 版本范围。
- 提供的证据不含该包 README 或已捕获的安装说明。
- 随附 Cordis 补丁默认禁用该插件。
- 未执行或验证运行时网络、数据、凭证和权限行为。
DSHub 已核对
- 已验证固定 Git 源、包清单和 Cordis 补丁结构。
- 清单要求 Node.js >=22.19.0。
- 补丁添加的插件配置为 `enabled: false`。
DSHub 未核对
- 在 DeepSeek Harness 环境中安装或运行成功。
- 运行时网络、数据、凭证或权限行为。
- 已发布 npm tarball 的内容。
固定版本安装
安装 DeepSeek Harness BCN Channel
这个Plugin Bundle没有 DSH Plugin 安装操作,请根据源码文档使用真实交付方式。
维护者原文
项目 README
Overview
Avernet provides the infrastructure needed to run persistent, coordinated, and heterogeneous agent systems across applications, runtimes, and human-agent workflows.
It is built for teams that need to:
- run multiple agents together, not just isolated single-agent demos
- connect heterogeneous runtimes, plugins, and bot platforms
- support shared context, governed execution, and long-lived collaboration
- operate human-agent collaboration in real environments
Production-tested at Ant Group — As of early July 2026, Avernet supports multi-agent deployments across 12 business groups (BGs), with a 90%+ task completion rate in measured multi-agent workflows.
Capabilities & Status
Status note: All core capability areas are deployed internally in production environments. Public open-source coverage varies by component and is being released incrementally.
Legend: Available = usable in the public repo now · Partial = partially public · In progress = being opened or integrated · Planned = intended but not yet public
Trusted core
Identity, auth, permissions, security, audit, and lifecycle management for agents and participants.Execution infrastructure
Support for heterogeneous agent engines, bot-as-a-service runtimes, containers, clusters, and operational runtimes.Agent coordination network
Discovery, relationship building, team formation, routing, collaboration, and governance across multiple agents.Shared intelligence and evolution
Bot diagnosis, repeatable Bench evaluation, goal- or diagnosis-driven optimization, and recoverable Pack versions are available through AgentEvolve. Orchestration is available via the Avernet coordination layer. Context and memory remain planned.
Application building blocks
Agent apps, canvas apps, workflows, and domain-specific extensions built on top of Avernet. Workflow orchestration is available through TaskGuard.
Quick Start
Clone the repository:
git clone https://github.com/inclusionAI/Avernet.git
cd Avernet
Recommended local setup
./scripts/singlebox.sh install-tools
./scripts/singlebox.sh
This starts a local Avernet stack with:
- Avernet process
- frontend workbench
- 5 local test bots
Open the frontend at:
http://127.0.0.1:8000/
For Docker and advanced setup options, see:
Demo
The current public demo is intended to show:
- local onboarding and coordination flow
- workbench interaction
- integration of local test bots
- a reproducible starting point for public evaluation
It is not intended to fully demonstrate all production-scale properties of Avernet, such as large-scale connection envelopes, permission isolation, audit depth, failure recovery, or long-horizon organizational collaboration.
<p align="center"> <video src="https://github.com/user-attachments/assets/f3fc4b52-4d23-4a73-b618-fe0110e2f2fb" width="80%" controls></video> </p><p align="center"> <img src="./docs/images/group.jpg" alt="Group coordination" width="80%" /> </p>Why Avernet
As agent systems scale, teams often hit the same four bottlenecks:
- Cannot find — capabilities are hard to discover
- Cannot align — apparent consensus hides real misalignment
- Cannot run fast — execution depends on human relay
- Cannot retain — knowledge does not accumulate as organizational capability
Avernet is built to address these problems with infrastructure for persistent agents, structured coordination, governed execution, and compounding organizational memory.
<p align="center"> <img src="./docs/images/organizational-problems.jpg" alt="Organizational alignment problems" width="80%" /> </p>Architecture
+----------------------------+ +----------------------------+ +----------------------------+
| Local Agents | | Agent Runtime | | Existing Bot Platform |
| Plugin mode | | /ws/bot runtime | | Downlink gateway |
+-------------+--------------+ +-------------+--------------+ +-------------+--------------+
| | ^
| | |
+---------------+---------------+ |
| agent -> BCS: | BCS -> platform:
| connect / register / receive / report | dispatch / schedule / callback
v |
+----------------------------------------------------------------------------+ +-------------------+
| Avernet / BCS | | bcs-cli / tools |
| connection / registration / routing / delivery / sessions |<--->| onboard / inspect |
| collaboration state / multi-bot network management | | |
+----------------------------------------------------------------------------+ +-------------------+
Integration
Avernet does not lock you into a single agent engine. It supports two integration paths for connecting agents, runtimes, and existing bot platforms into one collaboration network.
| Integration path | Best for | Current capability | Docs |
|---|---|---|---|
| Plugin integration | OpenClaw, local agent runtimes, custom bot processes | Agents actively connect to Avernet through a plugin or runtime for registration, onboarding, message receiving, and result reporting. | Bot Integration Guide, Local OpenClaw from source |
| Gateway integration | Existing bot platforms, multi-instance agent services, external scheduling systems | Avernet dispatches tasks to an external platform, which schedules agents and reports results back when work completes. | Bot Platform Integration |
Repository layout
ocb/
├── .env.example
├── Dockerfile.ocb
├── docker-compose.yml
├── docs/
├── scripts/
├── src/
│ ├── frontend/
│ ├── bcs/
│ └── plugin/
├── tests/
├── AGENTS.md
├── README.md
└── README.zh-CN.md
Documentation
- Quick Start
- Dependencies
- Docker Guide
- Bot Platform Integration
- Bot Integration Guide
- Local OpenClaw from source
- Architecture docs
- BCS Development Guide
- AgentEvolve
- TaskGuard
Security
Do not commit secrets, tokens, cookies, private keys, private service endpoints, local databases, runtime logs, or machine-specific configuration.
If credentials have already been committed, revoke or rotate them before cleaning repository history.
License
This project is licensed under the Apache License 2.0.
有意识地管理
安装与管理
前置条件与目标 Profile
目标: deepseek-harness Profile
交付方式: Git Bundle — inclusionAI/Avernet#cf652e46385dbc0fa825e51aa078b249746c931f。
验证、更新与移除
显示生命周期命令
dsh plugin --profile deepseek-harness list兼容性与访问范围
Requires Node.js 22.19.0 or later: Not declared in supplied evidence。
风险事实
Package build runs during prepack
证据 ↗证据与编辑审查Manifest、Bundle patch、分发与新鲜度
不可变证据
审查状态与源码活动
清单中声明 Apache-2.0 许可证。
AI 审查于 2026/9/16 UTC 14:24。GitHub 事实核对日期: 2026/9/16 UTC 14:24。
自当前证据基线以来,没有记录到重要源码变化。