by runify-dev
轻量白盒多智能体平台 —— 可视化编排工作流,多 Agent 协作,高精度知识召回,企业级权限管理,统一对话管理。支持低成本嵌入第三方系统,200MB 低资源即可运行。
# Add to your Claude Code skills
git clone https://github.com/runify-dev/runifyLast scanned: 6/4/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-06-04T08:21:13.482Z",
"npmAuditRan": true,
"pipAuditRan": true
}runify is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by runify-dev. 轻量白盒多智能体平台 —— 可视化编排工作流,多 Agent 协作,高精度知识召回,企业级权限管理,统一对话管理。支持低成本嵌入第三方系统,200MB 低资源即可运行。. It has 161 GitHub stars.
Yes. runify passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/runify-dev/runify" and add it to your Claude Code skills directory (see the Installation section above).
runify is primarily written in Java. It is open-source under runify-dev on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh runify against similar tools.
No comments yet. Be the first to share your thoughts!
不需要你装 Docker,不需要你会写 YAML,不需要你碰命令行。Runify 提供 macOS / Windows 桌面安装包,双击安装、打开即用,像装一个普通桌面软件一样简单。
同时内置两套预制工作流模板,安装完成即可直接使用:
💡 从安装到第一个 Agent 跑通,最快 5 分钟。
通过拖拽式画布,像搭积木一样自由组合核心节点。基于 DAG(有向无环图)执行引擎,摒弃复杂的 BPMN 规范,更符合开发者直觉。
支持的节点类型:
| 节点类型 | 说明 |
|---|---|
| AI 对话 | 多模型接入,支持思维链、工具调用 |
| 条件判断 | 根据变量 / AI 输出走不同分支 |
| 循环 | 批量处理、迭代优化 |
| 数据库查询 | 直连数据源,Agent 自主检索 |
| 笔记检索 | Agent 可检索笔记内容,精准召回 |
| 代码执行 | JavaScript / 终端,Agent 可编程 |
| 文件操作 | 读写文件、上传下载 |
| 变量赋值 | 流程状态管理 |
| 缓存读写 | 避免重复计算 |
| HTTP 请求 | 调用外部 API / Webhook |
| 审批节点 | 人机协作,关键步骤人工确认 |
集成现代化富文本编辑器,构建你的私有知识库。Agent 不再"瞎猜",而是基于你的真实数据给出精准回答。
不止是一个开发者工具,Runify 为团队和企业场景做好了准备:
Runify 天然为集成而生。通过 API 与 Webhook 即可快速嵌入现有业务系统,无需大规模改造,降低企业 AI 落地门槛。
| 层 | 技术 |
|---|---|
| 后端 | Java 25 · Vert.x · Dagger · Flyway |
| 前端 | Vue 3 · TypeScript · Vite · PrimeVue · Tailwind CSS |
| 工作流 | 自研 DAG 引擎 · LogicFlow 画布 |
| 搜索 | Lucene(内置) / Elasticsearch(可选) |
| 桌面 | Electron(macOS / Windows) |
很多轻量框架在并发面前不堪一击,Runify 不是。底层基于 Vert.x 异步非阻塞(NIO)架构,仅 200MB 内存即可运行,同时用 Event Loop 驱动 I/O,而非传统的一请求一线程模型:
| 平台 | 下载 | 大小 |
|---|---|---|
| macOS (Apple Silicon) | 📦 Runify-1.0.0-arm64.dmg | 412 MB |
| Windows | 📦 Runify Setup 1.0.0.exe | 371 MB |
| 跨平台 JAR | ☕ runify.jar | 119 MB |
安装完成后打开 Runify,内置的工作流模板即刻可用,无需任何额外配置。不依赖 Docker。
# 启动后端
mvn clean package -DskipTests
java -jar backend/target/backend.jar
# 启动前端(另一个终端)
cd frontend
npm install
npm run dev
# JAR 包
./installer/build-jar.sh
java -jar release/runify.jar
# 桌面应用
./installer/installer.sh [mac|win]
首次打开 macOS 安装包时,系统可能提示"无法验证开发者",执行以下命令即可:
xattr -cr /Applications/Runify.app
默认账号:
用户名: admin
密码: Runify@1
runify/
├── backend/
│ └── src/main/java/com/run/
│ ├── workflow/ # 工作流引擎(Agent 核心)
│ │ ├── nodes/ # 节点实现
│ │ └── entity/ # 流程定义
│ ├── ai/ # AI 模型接入
│ ├── route/ # API 路由
│ ├── handler/ # 业务处理
│ ├── dao/ # 数据访问
│ └── datasources/ # 多数据源适配
├── frontend/
│ └── src/
│ ├── workflow/ # 工作流可视化编辑器
│ ├── views/ # 页面
│ ├── editor/ # 富文本编辑器
│ └── locales/ # 国际化
├── installer/
│ ├── electron/ # 桌面端
│ ├── build-jar.sh
│ └── installer.sh
└── pom.xml
我们欢迎所有形式的参与,不只是代码贡献:
无论你是开发者、设计师、产品经理还是普通用户,你的意见都对我们很重要。
所有贡献者需签署 CLA。