AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Agent Task Coordinator

skill-omar-obando-qwen-orchestrator-agent-task-coordinator · by Omar-Obando

Use when coordinating multiple agents for complex tasks, managing agent teams, or delegating work across specialized agents. Includes patterns for agent communication, task delegation, and team coordination following Qwen Orchestrator conventions. Based on agent collaboration patterns and distributed systems best practices.

No reviews yet
0 installs
40 views
0.0% view→install

Install

$ agentstack add skill-omar-obando-qwen-orchestrator-agent-task-coordinator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-omar-obando-qwen-orchestrator-agent-task-coordinator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Agent Task Coordinator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Agent Task Coordinator

Overview

This skill provides guidance for coordinating multiple AI agents, managing agent teams, and delegating work across specialized agents. It covers communication patterns, task decomposition, and team coordination strategies. Based on agent collaboration patterns and distributed systems best practices.

When to Use

Use this skill when:

  • Coordinating multiple agents for complex tasks
  • Managing agent teams with different specializations
  • Delegating work across specialized agents
  • Designing agent communication patterns
  • Breaking down complex tasks for parallel execution
  • Managing agent team lifecycle
  • Implementing agent team composition strategies
  • Setting up task decomposition workflows
  • Creating agent communication protocols
  • Building agent swarm patterns
  • Implementing agent handoff mechanisms
  • Setting up MCP reporting for agent teams
  • Managing agent task state machines
  • Implementing agent team health monitoring
  • Creating agent team shutdown procedures
  • Building agent team documentation
  • Setting up agent team metrics and KPIs
  • Implementing agent team error handling
  • Creating agent team retry strategies
  • Building agent team monitoring dashboards
  • Setting up agent team alerting
  • Implementing agent team resource management
  • Creating agent team scaling strategies

Do NOT use this skill when:

  • Single-agent tasks (use specific skill for the task)
  • Simple, linear workflows (use standard workflow patterns)
  • Non-agentic workflows (use standard application development)
  • Basic task automation without agent coordination

Core Patterns

Agent Team Composition

┌─────────────────────────────────────────────────────────────┐
│              Team Lead (Orchestrator)                       │
│  └── Task decomposition, coordination, synthesis            │
├─────────────────────────────────────────────────────────────┤
│  ┌─────────────┐  ┌─────────────┐  ┌─────────────┐         │
│  │  Implementer│  │   Reviewer  │  │   Debugger  │         │
│  │   (Parallel)│  │   (Parallel)│  │   (Parallel)│         │
│  └─────────────┘  └─────────────┘  └─────────────┘         │
│         │              │              │                      │
│         └──────────────┴──────────────┘                      │
│                    │                                         │
│         ┌──────────▼──────────┐                              │
│         │   Integration Point │                              │
│         └─────────────────────┘                              │
└─────────────────────────────────────────────────────────────┘

Task Decomposition Pattern

digraph task_decomposition {
    rankdir=TB;

    "Complex Task" [shape=box, style=filled, color=lightblue];
    "Task A" [shape=box, style=filled, color=lightgreen];
    "Task B" [shape=box, style=filled, color=lightgreen];
    "Task C" [shape=box, style=filled, color=lightgreen];
    "Synthesis" [shape=box, style=filled, color=lightyellow];

    "Complex Task" -> "Task A";
    "Complex Task" -> "Task B";
    "Complex Task" -> "Task C";
    "Task A" -> "Synthesis";
    "Task B" -> "Synthesis";
    "Task C" -> "Synthesis";
}

Agent Communication Protocol

┌─────────────┐                    ┌─────────────┐
│   Sender    │                    │   Receiver  │
│   Agent     │                    │   Agent     │
└──────┬──────┘                    └──────┬──────┘
       │                                  │
       │  1. Request/Task                 │
       │─────────────────────────────────>│
       │                                  │
       │  2. Acknowledgment               │
       ││
       │                                  │

Task Delegation

When to Delegate

  • Parallel Execution: Tasks with no dependencies
  • Specialization: Tasks matching agent strengths
  • Complexity: Tasks requiring specific expertise
  • Scale: Tasks too large for single agent

When NOT to Delegate

  • Simple, linear workflows
  • Tasks requiring tight coupling
  • When context switching overhead is high
  • Small tasks ( Agent ──> Response

Use for: Task delegation, information gathering

### Publish-Subscribe Pattern

Publisher ──> Topic ──> Subscriber 1 └─> Subscriber 2 └─> Subscriber 3


Use for: Event notifications, status updates

## Common Mistakes

### ❌ Bad: Over-delegation

Complex Task ├── Subtask 1 (delegated) ├── Subtask 2 (delegated) ├── Subtask 3 (delegated) ├── Subtask 4 (delegated) ├── Subtask 5 (delegated) └── ... (10+ subtasks)


Problems:

- Coordination overhead
- Context switching
- Integration complexity

### ✅ Good: Strategic delegation

Complex Task ├── Subtask 1 (delegated to specialist) ├── Subtask 2 (delegated to specialist) └── Remaining work (handled by orchestrator)


Benefits:

- Focus on strengths
- Manageable complexity
- Clear integration points

### ❌ Bad: No communication protocol

Agent 1 ──> ? ──> Agent 2 ──> ? ──> Agent 3


Problems:

- Unclear expectations
- No progress tracking
- Integration issues

### ✅ Good: Clear protocol

Agent 1 ──[request]──> Agent 2 ──[response]──> Agent 3 ──[progress]──> ──[result]──>


Benefits:

- Clear expectations
- Progress tracking
- Smooth integration

## MCP Reporting Protocol

**Every agent MUST use MCP reporting tools for task progress. No silent work.**

### Task State Machine

| State         | Meaning         | Who Sets It       | When                   |
| ------------- | --------------- | ----------------- | ---------------------- |
| `pending`     | Not started     | Planner           | Initial plan creation  |
| `in_progress` | Working         | Agent             | report_progress call   |
| `blocked`     | Stuck           | Agent             | report_blockage call   |
| `completed`   | Done + verified | Agent + Commander | report_completion call |
| `failed`      | Cannot complete | Agent             | Terminal state         |

### MCP Reporting Tools

| Tool                 | When to Use            | Required Fields                       |
| -------------------- | ---------------------- | ------------------------------------- |
| `report_progress`    | Starting + milestones  | taskId, agent, summary                |
| `report_completion`  | Task done + verified   | taskId, agent, summary, files_changed |
| `report_blockage`    | Stuck or blocked       | taskId, agent, reason                 |
| `log_event`          | Major decisions        | agent, event_type, description        |
| `check_dependencies` | Before parallel launch | tasks array with id + dependsOn       |
| `get_task_state`     | Check task status      | taskId (optional — returns all)       |

### Workflow

reportprogress (start) ──→ inprogress │ ├─→ reportprogress (milestone) │ ├─→ reportblockage (stuck) │ └─→ unblock → reportprogress │ └─→ reportcompletion (done + verified)


## Real-World Impact

**Before this skill:**

- Agents working in isolation
- Duplicate effort
- Integration issues
- No coordination strategy

**After this skill:**

- Coordinated agent teams
- Efficient parallel execution
- Clear communication
- Successful complex tasks

## Cross-References

- **`team-lead`** - For team leadership patterns
- **`parallel-execution`** - For parallel task execution
- **`task-coordination-strategies`** - For detailed coordination patterns

## References

- [Team Topologies](https://teamtopologies.com/) - Matthew Skelton
- [Agent Collaboration Patterns](https://example.com/agent-patterns)
- [Distributed Systems Patterns](https://martinfowler.com/articles/distributed-systems-patterns.html)

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [Omar-Obando](https://github.com/Omar-Obando)
- **Source:** [Omar-Obando/qwen-orchestrator](https://github.com/Omar-Obando/qwen-orchestrator)
- **License:** MIT
- **Homepage:** https://qwen.ai/qwencode

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.