monoswarm status command (monomind)
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill monomind-monoswarm-status --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Monomind Monoswarm Status?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-monomind-monoswarm-status)More formats (shields.io, HTML) on the badges page.
---
description: monoswarm status command (monomind)
type: flow
name: monomind-monoswarm-status
---
# monoswarm status
Show monoswarm status: agent roster, task metrics, and (if voting is in
use) pending/history proposals.
```bash
npx monomind@latest swarm status
```
Or, for the fuller vote/consensus view, as an MCP tool call:
```javascript
mcp__monomind__monoswarm_status({ verbose: true })
```
## Parameters
| Param | Type | Default | Description |
|---|---|---|---|
| `verbose` | boolean | `false` | Include worker id list, recent vote history, and full shared-memory contents |
## Examples
```javascript
// Basic status
mcp__monomind__monoswarm_status({})
// Verbose: adds workerDetails, voteHistory, sharedMemory
mcp__monomind__monoswarm_status({ verbose: true })
```
## Output
Basic status includes:
- `runId`, `status` (`active` / `offline`), `topology`, `voteStrategy`
- `lead`: id, status, load, queued task count, elected-at, term
- `workers`: array of `{ id, type, status, tasksCompleted }` (`currentTask` is always `null` — the agent store has no such field)
- `metrics`: total/completed/active/pending task counts (real, sourced from the task store), `voteRounds`, `memoryUsage`
- `health`: overall/lead/workers/votes/memory status labels
`verbose: true` adds:
- `workerDetails` — raw worker id list
- `voteHistory` — last 10 vote decisions
- `sharedMemory` — full shared-memory object
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!