coordination task-orchestrate command (monomind)
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill monomind-monomind-monomind-coordination-task-orchestrate --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Monomind Monomind Monomind Coordination Task Orchestrate?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-monomind-monomind-monomind-coordination-task-orche)More formats (shields.io, HTML) on the badges page.
---
description: coordination task-orchestrate command (monomind)
type: flow
name: monomind-monomind-monomind-coordination-task-orchestrate
---
# task-orchestrate
Coordinate tasks across a swarm of agents.
## Usage
```bash
npx monomind swarm init [options]
```
## Options
- `--task <description>` - Task to distribute across agents
- `--agents <list>` - Comma-separated agent IDs or types
- `--strategy <type>` - Coordination strategy: `parallel`, `sequential`, `pipeline`, `broadcast`
- `--timeout <seconds>` - Max time to wait for completion
## Examples
### Coordinate in parallel (default)
```bash
npx monomind swarm init --task "Run all tests" --strategy parallel
```
### Sequential pipeline
```bash
npx monomind swarm init --task "Build, test, and deploy" --strategy pipeline
```
### Broadcast to all agents
```bash
npx monomind swarm init --task "Update shared context" --strategy broadcast
```
## Task Lifecycle (separate from orchestration)
Use `monomind task` subcommands for individual task management:
```bash
npx monomind task create --title "Fix auth bug" --priority high
npx monomind task list --status pending
npx monomind task status --id <task-id>
npx monomind task assign --id <task-id> --agent <agent-id>
npx monomind task cancel --id <task-id>
npx monomind task retry --id <task-id>
```
## Strategies
| Strategy | Description |
|----------|-------------|
| `parallel` | All agents work simultaneously (default) |
| `sequential` | Agents execute one after another |
| `pipeline` | Output of one agent feeds the next |
| `broadcast` | Same task sent to all agents |
## Integration with Claude Code
```javascript
mcp__monomind__coordination_orchestrate({
task: "Implement user authentication",
agents: ["architect", "coder", "tester"],
strategy: "sequential",
timeout: 300
})
```
## See Also
- `swarm-init` — initialize the swarm before orchestrating
- `agent-spawn` — create agents to orchestrate tasks across
- `swarm status` — check current swarm state (`monomind swarm status`)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!