← Back to Skills Marketplace
nuradil

Agent Team Orchestration 1

by nuradil · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
486
Downloads
0
Stars
2
Active Installs
1
Versions
Install in OpenClaw
/install agent-team-orchestration-1
Description
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...
README (SKILL.md)

Agent Team Orchestration

Production playbook for running multi-agent teams with clear roles, structured task flow, and quality gates.

Quick Start: Minimal 2-Agent Team

A builder and a reviewer. The simplest useful team.

1. Define Roles

Orchestrator (you) — Route tasks, track state, report results
Builder agent     — Execute work, produce artifacts

2. Spawn a Task

1. Create task record (file, DB, or task board)
2. Spawn builder with:
   - Task ID and description
   - Output path for artifacts
   - Handoff instructions (what to produce, where to put it)
3. On completion: review artifacts, mark done, report

3. Add a Reviewer

Builder produces artifact → Reviewer checks it → Orchestrator ships or returns

That's the core loop. Everything below scales this pattern.

Core Concepts

Roles

Every agent has one primary role. Overlap causes confusion.

Role Purpose Model guidance
Orchestrator Route work, track state, make priority calls High-reasoning model (handles judgment)
Builder Produce artifacts — code, docs, configs Can use cost-effective models for mechanical work
Reviewer Verify quality, push back on gaps High-reasoning model (catches what builders miss)
Ops Cron jobs, standups, health checks, dispatching Cheapest model that's reliable

Read references/team-setup.md when defining a new team or adding agents.

Task States

Every task moves through a defined lifecycle:

Inbox → Assigned → In Progress → Review → Done | Failed

Rules:

  • Orchestrator owns state transitions — don't rely on agents to update their own status
  • Every transition gets a comment (who, what, why)
  • Failed is a valid end state — capture why and move on

Read references/task-lifecycle.md when designing task flows or debugging stuck tasks.

Handoffs

When work passes between agents, the handoff message includes:

  1. What was done — summary of changes/output
  2. Where artifacts are — exact file paths
  3. How to verify — test commands or acceptance criteria
  4. Known issues — anything incomplete or risky
  5. What's next — clear next action for the receiving agent

Bad handoff: "Done, check the files." Good handoff: "Built auth module at /shared/artifacts/auth/. Run npm test auth to verify. Known issue: rate limiting not implemented yet. Next: reviewer checks error handling edge cases."

Reviews

Cross-role reviews prevent quality drift:

  • Builders review specs — "Is this feasible? What's missing?"
  • Reviewers check builds — "Does this match the spec? Edge cases?"
  • Orchestrator reviews priorities — "Is this the right work right now?"

Skip the review step and quality degrades within 3-5 tasks. Every time.

Read references/communication.md when setting up agent communication channels.Read references/patterns.md for proven multi-step workflows.

Reference Files

File Read when...
team-setup.md Defining agents, roles, models, workspaces
task-lifecycle.md Designing task states, transitions, comments
communication.md Setting up async/sync communication, artifact paths
patterns.md Implementing specific workflows (spec→build→test, parallel research, escalation)

Common Pitfalls

Spawning without clear artifact output paths

Agent produces great work, but you can't find it. Always specify the exact output path in the spawn prompt. Use a shared artifacts directory with predictable structure.

No review step = quality drift

"It's a small change, skip review." Do this three times and you have compounding errors. Every artifact gets at least one set of eyes that didn't produce it.

Agents not commenting on task progress

Silent agents create coordination blind spots. Require comments at: start, blocker, handoff, completion. If an agent goes silent, assume it's stuck.

Not verifying agent capabilities before assigning

Assigning browser-based testing to an agent without browser access. Assigning image work to a text-only model. Check capabilities before routing.

Orchestrator doing execution work

The orchestrator routes and tracks — it doesn't build. The moment you start "just quickly doing this one thing," you've lost oversight of the rest of the team.

When NOT to Use This Skill

  • Single-agent setups — Just follow standard AGENTS.md conventions. Team orchestration adds overhead that solo agents don't need.
  • One-off task delegation — Use sessions_spawn directly. This skill is for sustained workflows with multiple handoffs.
  • Simple question routing — If you're just forwarding a question to a specialist, that's a message, not a workflow.

This skill is for sustained team workflows — recurring collaboration patterns where agents depend on each other's output over multiple tasks.

Usage Guidance
This playbook appears internally consistent and contains only procedural instructions. Before installing: (1) confirm your platform supports the spawn/send semantics referenced and that those actions are scoped to the intended agent sessions, (2) ensure the shared/workspace directories (/shared/, /workspace/) are isolated from sensitive production data and writable only by intended agents, (3) run the skill in a test environment with non-sensitive tasks to validate behavior, and (4) do not grant credentials or external network access just because the playbook mentions checking for missing access — the skill itself does not request secrets. Monitor agent activity and logs initially to ensure handoffs and artifact writes behave as expected.
Capability Analysis
Type: OpenClaw Skill Name: agent-team-orchestration-1 Version: 1.0.0 The skill bundle provides a well-structured framework for multi-agent orchestration, focusing on roles (Orchestrator, Builder, Reviewer), task lifecycles, and communication protocols. It implements standard software engineering practices such as spec-build-review cycles and workspace isolation. No indicators of malicious intent, data exfiltration, or harmful prompt injections were found across the documentation or instructions (SKILL.md, references/*.md).
Capability Assessment
Purpose & Capability
Name and description match the SKILL.md and reference docs. The guidance is about spawning agents, task lifecycles, handoffs, and shared artifact paths — all coherent with an orchestration playbook. No unrelated binaries, environment variables, or credentials are requested.
Instruction Scope
Instructions expect the orchestrator to use spawn/send primitives and read/write shared filesystem paths (e.g., /shared/, /workspace/). That is appropriate for orchestration, but it requires the hosting platform to grant file and session spawn/send access. The skill does not instruct the agent to read secrets or external endpoints.
Install Mechanism
No install spec and no code files — this is instruction-only, so nothing is downloaded or written to disk by the skill itself.
Credentials
The skill declares no required environment variables, credentials, or config paths. All referenced artifacts are local/shared-path conventions used for coordination; no disproportionate secrets access is requested.
Persistence & Privilege
always:false (not force-included). disable-model-invocation is false (normal — allows autonomous invocation). This is expected for an orchestration skill; there is no request to modify other skills or system-wide configs.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agent-team-orchestration-1
  3. After installation, invoke the skill by name or use /agent-team-orchestration-1
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of agent-team-orchestration skill. - Provides a playbook for running multi-agent teams with clear roles and structured task flows. - Defines core roles (Orchestrator, Builder, Reviewer, Ops) and responsibilities. - Establishes task lifecycle stages and state transition rules. - Details protocols for agent handoffs and review steps. - Includes references and guidelines to avoid common multi-agent orchestration pitfalls.
Metadata
Slug agent-team-orchestration-1
Version 1.0.0
License
All-time Installs 2
Active Installs 2
Total Versions 1
Frequently Asked Questions

What is Agent Team Orchestration 1?

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... It is an AI Agent Skill for Claude Code / OpenClaw, with 486 downloads so far.

How do I install Agent Team Orchestration 1?

Run "/install agent-team-orchestration-1" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Agent Team Orchestration 1 free?

Yes, Agent Team Orchestration 1 is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Agent Team Orchestration 1 support?

Agent Team Orchestration 1 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Agent Team Orchestration 1?

It is built and maintained by nuradil (@nuradil); the current version is v1.0.0.

💬 Comments