Research swarm strategy — parallel information gathering with mesh topology for deep research, literature review, and knowledge synthesis
Scanned 9/10/2026
Install to Claude Code
npx -y skills add monoes/monomind --skill monomind-monomind-monoswarm-research --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Monomind Monomind Monoswarm Research?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/monoes-monomind-monomind-monoswarm-research)More formats (shields.io, HTML) on the badges page.
---
name: monomind-monomind-monoswarm-research
description: Research swarm strategy — parallel information gathering with mesh topology for deep research, literature review, and knowledge synthesis
type: flow
---
# Research Swarm Strategy
Deep research through parallel information gathering.
## How to Invoke
```
Skill("swarm:research")
```
Then describe the research topic:
> "Start a research swarm on AI agent coordination patterns."
> "Research best practices for distributed consensus algorithms."
---
## Swarm Setup
```javascript
// Initialize research swarm
mcp__monomind__swarm_init({
topology: "mesh",
maxAgents: 6,
strategy: "adaptive"
})
// Coordinate research
mcp__monomind__coordination_orchestrate({
task: "research topic X",
strategy: "parallel"
})
```
```bash
# CLI equivalent
npx monomind swarm init --topology mesh --max-agents 6
npx monomind swarm start "research topic X" --strategy research --parallel
```
## Agent Roles
```javascript
mcp__monomind__agent_spawn({ type: "researcher", capabilities: ["web-search", "content-extraction", "source-validation"] })
mcp__monomind__agent_spawn({ type: "researcher", capabilities: ["paper-analysis", "citation-tracking", "literature-review"] })
mcp__monomind__agent_spawn({ type: "analyst", capabilities: ["data-processing", "statistical-analysis"] })
mcp__monomind__agent_spawn({ type: "documenter", capabilities: ["synthesis", "technical-writing", "formatting"] })
```
## Knowledge Management
```javascript
// Store research findings for future sessions
mcp__monomind__memory_pattern-store({
key: "research-findings",
value: "summary of findings",
namespace: "research"
})
// Search existing research
mcp__monomind__memory_pattern-search({
query: "topic X",
namespace: "research",
limit: 20
})
```
## Monitoring
```javascript
mcp__monomind__swarm_status({ swarmId: "current" })
```
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!