team-tasks

Coordinate multi-agent development pipelines using shared JSON task files.

Updated Feb 16, 2026
One-click install
npx skills add https://github.com/MMXC/openclaw-back --skill team-tasks
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: team-tasks
Source: https://github.com/MMXC/openclaw-back/tree/main/skills/team-tasks
Command: npx skills add https://github.com/MMXC/openclaw-back --skill team-tasks

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automates the coordination of multi-agent development workflows, ensuring tasks are executed sequentially or in parallel based on defined dependencies, and tracks progress through a centralized system.

Core Features & Use Cases

  • Pipeline Coordination: Manages linear (sequential) and DAG (dependency graph) workflows for development teams.
  • Task Management: Initializes projects, assigns tasks, updates statuses, and collects results.
  • Agent Dispatch: Facilitates agent communication and task assignment via sessions_send.
  • Debate Mode: Enables multi-agent deliberation for complex decision-making.
  • Use Case: Coordinate a bug fix by assigning sequential tasks to a code-agent, test-agent, and docs-agent, ensuring each step completes before the next begins.

Quick Start

Initialize a new linear project named 'my-api' with a goal to 'Build REST API with tests and docs'.

Frequently Asked Questions about team-tasks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I coordinate multi-agent development pipelines for sequential tasks?

Multi-agent development pipelines are coordinated using shared JSON task files that define dependencies, allowing sequential or parallel execution while tracking task status and collecting results centrally.

What is DAG workflow management for dev team agent orchestration?

DAG workflow management for agent orchestration structures tasks as a dependency graph, enabling parallel execution of independent tasks while ensuring dependent tasks wait for prerequisite completion via shared JSON files.

Can I use a debate mode for multi-agent decision-making in workflow automation?

Yes, debate mode enables multi-agent deliberation for complex decision-making within development pipelines, allowing assigned agents to collaboratively evaluate and resolve challenging problems through structured communication.

How do I initialize a linear project and assign tasks to specific dev agents?

Initialize a linear project by defining a goal and generating shared JSON task files, then dispatch assignments to specific dev agents like code-agent, test-agent, and docs-agent using sessions_send for sequential execution.

Does this task coordination approach require external dependencies to manage agent dispatch?

No external dependencies are required; task coordination and agent dispatch are managed entirely through internal sessions_send communication and shared JSON task files for pipeline status tracking and result collection.

When should I choose linear pipelines over DAG workflows for task coordination?

Choose linear pipelines for strictly sequential task execution where each step depends on the previous, and use DAG workflows when independent tasks can run in parallel to optimize multi-agent pipeline execution time.