经 AI Skill Hub 精选评估,智能代理工作流 获评「强烈推荐」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
智能代理工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
智能代理工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install roboco
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install roboco
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/rennf93/roboco
cd roboco
pip install -e .
# 验证安装
python -c "import roboco; print('安装成功')"
# 命令行使用
roboco --help
# 基本用法
roboco input_file -o output_file
# Python 代码中调用
import roboco
# 示例
result = roboco.process("input")
print(result)
# roboco 配置文件示例(config.yml) app: name: "roboco" debug: false log_level: "INFO" # 运行时指定配置文件 roboco --config config.yml # 或通过环境变量配置 export ROBOCO_API_KEY="your-key" export ROBOCO_OUTPUT_DIR="./output"
AI Agents Company - A virtual organization of 25 AI agents + 1 human CEO, designed to operate as a complete software development workforce.
▶ Watch the 26-min intro what it is, a walkthrough, and how to use it |
▶ Watch the 2.5-hour build session a conversation → a shipped feature |
<p align="center"> <img src="docs/videos/panel-teaser.gif" alt="Twelve-second looping preview of the RoboCo control panel — the org tree, a task in progress, and an approval queue." width="80%"> <br> <sub><a href="docs/videos/panel-full-walkthrough.mp4">Watch the full 2:33 walkthrough (.mp4) →</a></sub> </p>
[!WARNING] RoboCo is early-stage, work-in-progress software (v0). It's under active development, runs in a homelab, and will have rough edges, breaking changes, and bugs. It is not production-ready and the API/database schema are not stable yet. Treat it as a working prototype to explore and build on — please don't expose it to the public internet as-is. Issues and PRs very welcome.
RoboCo implements a structured organizational hierarchy with formal communication protocols, task management, and quality controls. The system enables a single human (CEO) to orchestrate complex multi-project development at scale.
CEO (You, the human)
│
├── Intake (on-demand interviewer: chats only with you to draft a task)
├── Secretary (on-demand chief-of-staff: reads company state, runs gated directives)
├── PR Reviewer (read-only main reviewer: inbound external/fork + internal PRs, and the root→master in-path gate)
│
└── Board (3 agents)
├── Product Owner
├── Head of Marketing
└── Auditor (silent observer, reports to you)
│
└── Main PM (coordinates all cells)
│
├── Backend Cell (6 agents: 2 Devs, 1 QA, 1 PM, 1 Documenter, 1 PR Reviewer)
├── Frontend Cell (6 agents: 2 Devs, 1 QA, 1 PM, 1 Documenter, 1 PR Reviewer)
└── UX/UI Cell (6 agents: 2 Devs, 1 QA, 1 PM, 1 Documenter, 1 PR Reviewer)
The 25 agents = Intake + Secretary + PR Reviewer + the Board (3) + Main PM + the three 6-agent cells (18). Agents run on Anthropic Claude by default, or on xAI Grok (the official grok CLI on a SuperGrok subscription) — see the provider note under Configuration.
uv sync --all-extras
The same full stack, built locally from the Dockerfiles instead of pulled:
git clone https://github.com/rennf93/roboco.git && cd roboco
cp .env.example .env # then edit in your secrets
docker compose up -d # builds images on first run, then starts everything
Every release publishes all RoboCo images to both the GitHub Container Registry and Docker Hub, so you can run the full stack without building anything. Use the registry compose:
git clone https://github.com/rennf93/roboco.git && cd roboco
cp .env.example .env # then edit in your secrets
docker compose -f docker-compose.registry.yml pull
docker compose -f docker-compose.registry.yml up -d
Choose the registry and version with two env vars (defaults shown):
ROBOCO_REGISTRY=ghcr.io/rennf93 # or docker.io/renzof93
ROBOCO_VERSION=latest # or a pinned release, e.g. 0.8.0
The orchestrator spawns the matching pre-built agent images on demand — no build toolchain or source compile on your host.
For hacking on the code itself, run only the backing services in Docker and the API on your host:
```bash uv sync docker compose up -d postgres redis ollama # backing services only uv run alembic upgrade head # migrate the database uv run python -m roboco.cli # API + orchestrator
Key environment variables (see roboco/config.py for all options):
```bash
uv run uvicorn roboco.api.app:app --reload --host 0.0.0.0 --port 8000 ```
ROBOCO_HOST=0.0.0.0 ROBOCO_PORT=8000
Domain routes are mounted under /api:
| Route Group | Description |
|---|---|
/api/tasks | Task CRUD, lifecycle, claiming |
/api/agents | Agent management |
/api/git | Git operations (status, commit, push, PR) |
/api/sessions | Communication sessions |
/api/messages | Agent messages |
/api/projects | Project (repo) management |
/api/work-sessions | Git work session tracking |
/api/optimal | RAG/Knowledge base queries |
/api/journals | Agent journals/reflections |
/api/orchestrator/status | Orchestrator / dispatcher status |
The agent gateway verbs are served separately under /api/v1/flow/{role}/{verb} (intent verbs) and /api/v1/do (content tools) — see the Agent Gateway.
高质量的智能代理工作流开源项目
该工具使用 AGPL-3.0 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ AGPL 3.0 — 最严格的 Copyleft,网络服务端使用也需开源,SaaS 使用受限。
AI Skill Hub 点评:智能代理工作流 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | roboco |
| 原始描述 | 开源AI工作流:Not a loop. Not a harness. Not a worflow. Not a framework. An AI Agents Organiza。⭐41 · Python |
| Topics | agentic-aistate-machinepython |
| GitHub | https://github.com/rennf93/roboco |
| License | AGPL-3.0 |
| 语言 | Python |
收录时间:2026-06-20 · 更新时间:2026-06-20 · License:AGPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端