open-agent-teams

仓库创建 2026年6月14日最近提交 1 天前SkillHot 收录 3 小时前
▸ 精选理由

为多代理并行协作提供简单稳健的通信与竞态防护协议,便于自动化任务分发。

▸ 风险提示

会在宿主上执行外部代理,存在执行不受信任代码的安全风险,请限制权限与来源。

这个 Skill 做什么

在脱离终端的 tmux 会话中运行任意 CLI 代理,并用文件哨兵实现安全的完成信号与结果回传。

把任意 CLI 代理放到一个脱离终端的 tmux 会话里跑,让它在后台可观察地完成任务,并通过文件哨兵做安全的完成信号和结果回传。适合要把工作委派给 codex、aider 等非交互式 CLI 代理,或者希望代理在可查看的终端里异步执行时使用。关键点是用文件而不是 tmux 信号避免竞态,支持多轮交互和可靠的超时/结果写回机制。

▸ 展开 SKILL.md 英文原文

Delegate tasks to ANY CLI agent (claude, codex, aider, ...) running in a detached tmux session, with a race-safe done-signal protocol and multi-turn iteration. Use when delegating work to a non-Claude CLI agent, when the user says "tmux delegate", "run agent in tmux", "delegate to codex/aider", or when executor work should run in an observable background terminal instead of the Agent tool.

自动化集成代理委派tmux并行执行通用
1.1k
Stars
141
Forks
10
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/AI-Builder-Club/skills/main/skills/open-agent-teams/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/AI-Builder-Club/skills/main/skills/open-agent-teams/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# open-agent-teams

Run any CLI agent as an executor inside a detached tmux session. Communication is: prompt in via CLI arg / `send-keys`, completion out via a **file sentinel** the agent touches, summary out via a **result file** the agent writes. File sentinels are used instead of `tmux wait-for` because a `wait-for -S` with no waiter is silently lost; files never race and allow timeouts.

All commands via the helper (make sure it runs from the skill dir):

```
SKILL_DIR/scripts/tdel
```

## Initial setup (once per repo)

If the repo's `CLAUDE.md` (or `AGENT.md`) has no delegation rules yet, add the contents of `references/CLAUDE.delegation-template.md` to it — it defines the coordinator/
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有