multi-agent-room

Solid

Orchestrate a team of named subagents in shared threads. One orchestrator drives multiple peers with distinct identities; each subagent sees its own inbox and can cross-check findings by posting to a thread the peer is a member of.

AI & Automation 69 stars 13 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 85/100

Stars 20%
61
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

<!-- AI-RULEZ :: GENERATED FILE — DO NOT EDIT Content-Hash: blake3:525b3f8031902107da61ff0f2a5e71f24e1e3bc25f8b5a39bcef00c712bc8894 Source-Hash: blake3:7ed98849883ef704c52a25d433f24690fad7148853779dbc1aae4adc63c04a24 Schema-Version: v1 --> # Multi-agent thread orchestration Run a team of NAMED subagents that coordinate in shared THREADS, all driven by one orchestrator. Each subagent has its own identity and inbox, and posts to threads the relevant peers are members of. ## When to use it Orchestrate subagents when: - Multiple reviewers need to see each other's work (code review, audit, cross-validation). - A subagent should hand off findings to a peer for verification. - The team needs a shared narrative (all readable in one thread history). - You want to parallelize independent work (each agent runs concurrently) and then synthesize. ## Setup 1. **Start a thread and name its members.** A thread is addressed by at least two of three coordinates — `{subject, path-glob, members}`. For a private team, list the members explicitly so only they see it; discovery is scoped, never global, so unrelated agents never surface it. ```text thread_start {subject: "review-pr-42", members: ["security", "perf"], title: "Code review panel"} ``` 2. **Assign each subagent a short name.** Pass `as_agent` to every tool call the subagent makes. Names like `"security"`, `"perf"`, `"correctness"` are clearer than defaults. A named member must `thread_join` (or be added via...

Details

Author
Goldziher
Repository
Goldziher/basemind
Created
2 years ago
Last Updated
yesterday
Language
Rust
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

multi-agent-orchestration

Run an orchestrator-worker system for breadth-first research: a lead agent plans, spawns three to five subagents with their own context windows, and synthesizes their findings. Covers when multi-agent actually beats a single agent and when it just burns tokens, how to delegate so subagents do not overlap, broad-to-narrow search, writing findings to a filesystem, and how to evaluate the system. Use this whenever someone wants to parallelize research or exploration across agents, asks how to coordinate a lead and subagents, considers a multi-agent setup, or asks whether multi-agent is worth it for their task. Trigger on "orchestrator and workers," "parallel research agents," "lead agent spawns subagents," "should this be multi-agent," and similar.

1 Updated 5 days ago
Hoja-Solutions
AI & Automation Solid

agent-team-orchestration

Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Use when: (1) Setting up a team of 2+ agents with different specializations, (2) Defining task routing and lifecycle (inbox → spec → build → review → done), (3) Creating handoff protocols between agents, (4) Establishing review and quality gates, (5) Managing async communication and artifact sharing between agents.

81 Updated today
aAAaqwq
AI & Automation Solid

multi-agent-orchestration

Coordinate multiple AI agents for complex tasks — decomposition, delegation, and synthesis

3 Updated today
fabioc-aloha