经 AI Skill Hub 精选评估,kweaver-core Agent工作流 获评「强烈推荐」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
企业级AI决策代理框架,采用执行优先设计理念。支持业务知识网络集成,赋能决策智能应用。适合需要构建企业工作流自动化和决策支持系统的开发团队。
kweaver-core Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
企业级AI决策代理框架,采用执行优先设计理念。支持业务知识网络集成,赋能决策智能应用。适合需要构建企业工作流自动化和决策支持系统的开发团队。
kweaver-core Agent工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:go install(推荐) go install github.com/kweaver-ai/kweaver-core@latest # 方式二:从源码编译 git clone https://github.com/kweaver-ai/kweaver-core cd kweaver-core go build -o kweaver-core . # 方式三:下载预编译二进制 # 访问 Releases 页面下载对应平台二进制文件 # https://github.com/kweaver-ai/kweaver-core/releases
# 查看帮助 kweaver-core --help # 基本运行 kweaver-core [options] <input> # 详细使用说明请查阅文档 # https://github.com/kweaver-ai/kweaver-core
# kweaver-core 配置说明 # 查看配置选项 kweaver-core --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export KWEAVER_CORE_CONFIG="/path/to/config.yml"
<p align="center"> <img alt="KWeaver" src="./assets/logo/banner.png" width="800" /> </p>
中文 | English
KWeaver Core is a harness-first foundation for enterprise decision agents. It turns fragmented data, knowledge, tools, and policies into governed context, safe execution, and verifiable feedback loops. With semantic modeling, real-time access, runtime control, and TraceAI, it helps AI systems reason, adapt, and act reliably in complex enterprises.
On this page: 📚 Quick links · 🎬 Demo video · 🚀 Quick start · 🛠️ KWeaver SDK · 🛡️ KWeaver Admin CLI · 🏗️ KWeaver Core · 📐 BKN Lang · 📊 Benchmarks · 💬 Community
Note: KWeaver Core is a backend-only framework — it does not include a web UI. All interactions are through the CLI, SDK, or API. If you need a graphical interface, please install KWeaver DIP.
Want to have an intuitive experience of the core functions of KWeaver DIP? Click the link below to sign up and start your trial experience immediately to quickly unlock the product's value! 👉 Apply for a trial: https://kweaver-ai.feishu.cn/share/base/form/shrcni732cNDY4x3A5SYTncrguf
<a id="toc-quick-links"></a>
./deploy.sh kweaver-core install --minimum
./deploy.sh kweaver-core install
kweaver auth login https://<node-ip> -k
kweaver auth login https://<node-ip> -u test -p '<password>' -k
kweaver bkn list
After deploying KWeaver Core, we recommend installing kweaver-sdk as your next step. The SDK provides the kweaver CLI and AI Agent Skills — the primary way to interact with the platform.
kweaver-sdk gives AI agents (Claude Code, GPT, custom agents, etc.) access to KWeaver knowledge networks and Decision Agents via the kweaver CLI. It also provides Python and TypeScript SDKs for programmatic integration.
Install the CLI with:
npm install -g @kweaver-ai/kweaver-sdk
Or run it without a global install:
npx kweaver --help
Requires Node.js 22+ (same as @kweaver-ai/kweaver-sdk on npm). Credentials are stored under ~/.kweaver-admin/platforms/, isolated from ~/.kweaver/.
npm install -g @kweaver-ai/kweaver-admin
kweaver-admin --version
preflight.sh (recommended)On the target install host, run a system check before deploy.sh. It verifies kernel / sysctl / containerd / kubectl / helm / Node / kweaver CLIs and can fix what's missing (each fix is opt-in unless -y):
git clone https://github.com/kweaver-ai/kweaver-core.git
cd kweaver-core/deploy
chmod +x preflight.sh deploy.sh onboard.sh
sudo bash ./preflight.sh # check-only (default)
sudo bash ./preflight.sh --fix # check + interactive fixes
sudo bash ./preflight.sh --fix -y # auto-approve every fix
sudo bash ./preflight.sh --list-fixes # preview which fixes would run, no changes
sudo bash ./preflight.sh --help # all flags (--role, --skip, --report, --output=json, …)
Exit codes: 0 OK, 1 any FAIL, 2 only WARN. Use --report=/tmp/preflight.txt to keep a full log.
```bash
Watch the KWeaver demo on Bilibili.
<a id="toc-quick-start"></a>
No deployment needed — Apply for a trial first, then connect your AI agent to the demo environment (for the web UI, visit KWeaver DIP).
npx skills add https://github.com/kweaver-ai/kweaver-sdk \
--skill kweaver-core --skill create-bkn
npm install -g @kweaver-ai/kweaver-sdk
kweaver auth login https://dip-poc.aishu.cn -k
Then ask your AI agent (Cursor, Claude Code, etc.) using natural language:
List all knowledge networks
What object types are in the supply chain knowledge network?
Search the supply chain knowledge network for "supply chain risks"
Show 2 sample customer records
List all Decision Agents
Chat with Agent xxx, ask "What is the current inventory status?"
Or use /kweaver-core slash commands (the skill takes over automatically):
/kweaver-core List all knowledge networks
/kweaver-core What's in the supply chain knowledge network?
/kweaver-core Search knowledge network for "supply chain risks"
/kweaver-core Show 2 sample customer records from the knowledge network
/kweaver-core List all Decision Agents
/kweaver-core Chat with Agent <agent-id>, ask "What is the current inventory status?"
Demo access: Apply for a trial if needed.
export KWEAVER_BASE_URL=https://<access-address> export KWEAVER_ADMIN_TOKEN=<bearer-token> # falls back to KWEAVER_TOKEN ```
./deploy.sh kweaver-core install \ --access_address=<your-ip> \ --api_server_address=<your-ip>
./deploy.sh --help
4. **Verify the deployment**:
bash
<a id="toc-kweaver-core-and-sdk"></a>
Minimal example (after CLI login or equivalent credentials):
import kweaver from "@kweaver-ai/kweaver-sdk/kweaver";
kweaver.configure({ config: true, bknId: "your-bkn-id", agentId: "your-agent-id" });
const results = await kweaver.search("What risks exist in the supply chain?");
const reply = await kweaver.chat("Summarise the top 3 risks");
await kweaver.weaver({ wait: true }); // rebuild BKN index
import kweaver
kweaver.configure(config=True, bkn_id="your-bkn-id", agent_id="your-agent-id")
results = kweaver.search("What risks exist in the supply chain?")
reply = kweaver.chat("Summarise the top 3 risks")
For streaming, KWeaverClient, and the full API surface, see the kweaver-sdk repository docs and examples.
<a id="toc-kweaver-admin"></a>
Based on 145 HR scenario samples (resume corpus with 118 multi-format PDFs), covering simple information lookup, cross-section experience analysis, and multi-hop comprehensive reasoning. All platforms used DeepSeek V3.2 + BGE M3-Embedding with identical data sources, tested in Agentic mode.
| Metric | KWeaver Core (v0.3.0) | BiSheng | Dify (v0.15.3) | RAGFlow (v0.17.0) |
|---|---|---|---|---|
| **Accuracy** | **99.31%** (144/145) | 86.90% (126/145) | 96.55% (140/145) | 86.90% (126/145) |
| **Avg Latency** | 43.69s | **19.52s** | 63.82s | 71.56s |
| **P90 Latency** | 56.92s | 32.53s | 79.15s | 95.37s |
| **Avg Token** | 21.36K | **4.98K** | 36.25K | 16.28K |
KWeaver Core is the only platform that breaks the traditional RAG "performance impossible triangle" — achieving >99% accuracy while keeping inference cost and latency at production-ready levels. Dify trades high token consumption (1.7x) for decent accuracy; BiSheng sacrifices reasoning depth for speed; RAGFlow falls behind on both accuracy and latency.
企业决策工作流框架,设计理念先进,生态活跃。执行优先架构适合实际应用,知识网络能力突出,是构建决策智能系统的优选方案。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
AI Skill Hub 点评:kweaver-core Agent工作流 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | kweaver-core |
| 原始描述 | 开源AI工作流:KWeaver Core is a harness-first foundation for enterprise decision agents. It tu。⭐747 · Go |
| Topics | 工作流编排决策智能企业应用知识网络AI代理 |
| GitHub | https://github.com/kweaver-ai/kweaver-core |
| License | Apache-2.0 |
| 语言 | Go |
收录时间:2026-05-18 · 更新时间:2026-05-19 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端